-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDirectory.Build.props
34 lines (27 loc) · 1.01 KB
/
Directory.Build.props
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
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<VersionPrefix>0.14.0</VersionPrefix>
<DebugType>embedded</DebugType>
<AnalysisLevel>preview</AnalysisLevel>
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
<!-- Include git2-8a0dc67.dll into the GbUtil.exe -->
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<ImplicitUsings>true</ImplicitUsings>
<TrimMode>link</TrimMode>
<!-- https://github.com/OmniSharp/omnisharp-vscode/issues/3207
https://github.com/OmniSharp/omnisharp-roslyn/issues/1589 -->
<NoWarn>CS0579</NoWarn>
</PropertyGroup>
<PropertyGroup>
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)GbUtil.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="StyleCop.Analyzers" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\.editorconfig" Link=".editorconfig" />
</ItemGroup>
</Project>