-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
70 lines (61 loc) Β· 3.21 KB
/
Directory.Build.props
File metadata and controls
70 lines (61 loc) Β· 3.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<Project>
<!--
Directory.Build.props β inherited by ALL projects under this directory.
Override any property in individual .csproj files as needed.
-->
<PropertyGroup Label="Product Identity">
<Product>DotnetClaw</Product>
<Authors>DotnetClaw Contributors</Authors>
<Company>DotnetClaw</Company>
<Copyright>Copyright Β© $([System.DateTime]::UtcNow.Year) DotnetClaw Contributors</Copyright>
<Description>OpenClaw-inspired AI assistant built on .NET 10 and Microsoft Semantic Kernel.</Description>
<PackageTags>ai;assistant;semantic-kernel;openai;dotnet;cli;telegram;cursor</PackageTags>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/your-org/DotnetClaw</RepositoryUrl>
<PackageProjectUrl>https://github.com/your-org/DotnetClaw</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<PropertyGroup Label="Versioning">
<VersionPrefix>0.1.0</VersionPrefix>
<VersionSuffix Condition="'$(VersionSuffix)' == ''">alpha</VersionSuffix>
<!-- Full version: 0.1.0-alpha (override VersionSuffix='' for a release build) -->
<AssemblyVersion>0.1.0.0</AssemblyVersion>
<FileVersion>0.1.0.0</FileVersion>
<InformationalVersion>$(VersionPrefix)-$(VersionSuffix)+$(SourceRevisionId)</InformationalVersion>
</PropertyGroup>
<PropertyGroup Label="Target Framework">
<TargetFramework>net10.0</TargetFramework>
<LangVersion>preview</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Label="Build Quality">
<!-- Treat all warnings as errors in Release; warn-only in Debug so dev loop stays fast -->
<TreatWarningsAsErrors Condition="'$(Configuration)' == 'Release'">true</TreatWarningsAsErrors>
<WarningsAsErrors />
<!-- Suppress selected noisy warnings that are acceptable in this project -->
<NoWarn>$(NoWarn);CS1591</NoWarn> <!-- missing XML doc comment β docs are opt-in -->
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisMode>Recommended</AnalysisMode>
<AnalysisLevel>latest</AnalysisLevel>
</PropertyGroup>
<PropertyGroup Label="Reproducible Builds">
<Deterministic>true</Deterministic>
<ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<!-- Full PDBs in Debug, portable (embedded) in Release for symbol server compatibility -->
<DebugType Condition="'$(Configuration)' == 'Debug'">full</DebugType>
<DebugType Condition="'$(Configuration)' == 'Release'">embedded</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<PropertyGroup Label="XML Documentation">
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<DocumentationFile>$(OutDir)$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Label="Central Package Management">
<!-- Opt in to Central Package Management β versions live in Directory.Packages.props -->
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
</Project>