-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
50 lines (44 loc) · 2.13 KB
/
Directory.Build.props
File metadata and controls
50 lines (44 loc) · 2.13 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
<Project>
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<CommandsDirectory>$(MSBuildThisFileDirectory).submodules\commands\</CommandsDirectory>
<LibplanetDirectory>$(MSBuildThisFileDirectory).submodules\libplanet\</LibplanetDirectory>
<SharedDirectory>$(MSBuildThisFileDirectory)src\shared\</SharedDirectory>
<NoWarn>$(NoWarn);NU1902;NU1903</NoWarn>
<ProtoRootDirectory>$(SolutionDir)</ProtoRootDirectory>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.556">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>
runtime; build; native; contentfiles; analyzers
</IncludeAssets>
</PackageReference>
<PackageReference Include="Menees.Analyzers" Version="3.2.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="SonarAnalyzer.CSharp" Version="9.27.0.93347">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<AdditionalFiles Include="$(MSBuildThisFileDirectory)stylecop.json" />
<AdditionalFiles Include="$(MSBuildThisFileDirectory)Menees.Analyzers.Settings.xml">
<Link>Menees.Analyzers.Settings.xml</Link>
</AdditionalFiles>
</ItemGroup>
<PropertyGroup>
<RootPath Condition="'$(SolutionDir)' != ''">$(SolutionDir)</RootPath>
<RootPath Condition="'$(SolutionDir)' == ''">$(MSBuildThisFileDirectory)\</RootPath>
<LibplanetVersion>5.4.2</LibplanetVersion>
<JSSoftCommandsVersion>7.1.0-pr.51</JSSoftCommandsVersion>
<UseRidGraph>true</UseRidGraph>
</PropertyGroup>
<!-- <Target Name="DisplayInformation" BeforeTargets="Build">
<Message Text="TargetFramework: $(TargetFramework)" Importance="High" />
<Message Text="NETCoreSdkPortableRuntimeIdentifier: $(NETCoreSdkPortableRuntimeIdentifier)" Importance="High" />
<Message Text="OS: $(OS)" Importance="High" />
</Target> -->
</Project>