-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
48 lines (40 loc) · 1.7 KB
/
Directory.Build.props
File metadata and controls
48 lines (40 loc) · 1.7 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
<Project>
<PropertyGroup>
<!-- Common Build Properties -->
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<WarningsAsErrors />
<WarningsNotAsErrors />
<!-- Code Analysis -->
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisLevel>latest</AnalysisLevel>
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)code-analysis.ruleset</CodeAnalysisRuleSet>
<!-- Package Properties -->
<Authors>KustoGraphAssistant Contributors</Authors>
<Company>KustoGraphAssistant</Company>
<Product>Kusto Graph Assistant MCP Server</Product>
<Copyright>© 2025 KustoGraphAssistant Contributors</Copyright>
<PackageProjectUrl>https://github.com/cosh/KustoGraphAssistant</PackageProjectUrl>
<RepositoryUrl>https://github.com/cosh/KustoGraphAssistant.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<!-- Build Properties -->
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<DebugType>portable</DebugType>
<DebugSymbols>true</DebugSymbols>
<!-- Version Properties -->
<Version>1.0.0</Version>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
<!-- Performance -->
<UseSharedCompilation>true</UseSharedCompilation>
<OptimizeImplicitlyTriggeredBuild>true</OptimizeImplicitlyTriggeredBuild>
</PropertyGroup>
<!-- Common Package References -->
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
</ItemGroup>
</Project>