-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
27 lines (24 loc) · 1.25 KB
/
Directory.Build.props
File metadata and controls
27 lines (24 loc) · 1.25 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
<Project>
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<AssemblyName>Backbone.$(MSBuildProjectName)</AssemblyName>
<RootNamespace>$(AssemblyName.Replace(" ", "_"))</RootNamespace>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
<OptimizeImplicitlyTriggeredBuild>True</OptimizeImplicitlyTriggeredBuild>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<RuntimeIdentifiers>win-x64;osx-arm64;linux-x64;linux-arm64</RuntimeIdentifiers>
</PropertyGroup>
<ItemGroup Condition="$(MSBuildProjectName.EndsWith('Tests')) Or $(MSBuildProjectName.EndsWith('Tests.Integration'))">
<PackageReference Include="GitHubActionsTestLogger" />
<Using Include="Shouldly" />
<Using Include="Backbone.UnitTestTools.BaseClasses" />
<Using Include="Backbone.UnitTestTools.Data.TestDataGenerator" Static="True" />
<Using Include="Xunit" />
</ItemGroup>
<ItemGroup>
<NuGetAuditSuppress Include="https://github.com/advisories/GHSA-7jgj-8wvc-jh57" />
<NuGetAuditSuppress Include="https://github.com/advisories/GHSA-cmhx-cq75-c4mj" />
</ItemGroup>
</Project>