forked from DynamoDS/TuneUp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
21 lines (19 loc) · 991 Bytes
/
Directory.Build.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Project>
<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<FileAlignment>512</FileAlignment>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems> <!-- Disable default inclusion of all *.cs files to avoid duplicate compile item errors. -->
<GenerateAssemblyInfo>false</GenerateAssemblyInfo> <!-- Prevent generation of AssemblyInfo.cs to avoid duplicate attributes. -->
<EnableDefaultPageItems>false</EnableDefaultPageItems> <!-- Disable default inclusion of all *.xaml files to avoid duplicate page item errors. -->
</PropertyGroup>
<PropertyGroup>
<DynamoPackageVersion>3.2.1.5366</DynamoPackageVersion>
<MSTestVersion>1.3.2</MSTestVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.1" />
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
</ItemGroup>
</Project>