-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathUnitTests.csproj
48 lines (45 loc) · 1.65 KB
/
UnitTests.csproj
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 Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="nunit" Version="4.2.2" />
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DuetAPI\DuetAPI.csproj" />
<ProjectReference Include="..\DuetControlServer\DuetControlServer.csproj" />
<ProjectReference Include="..\DuetHttpClient\DuetHttpClient.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="File\GCodes\Circle.gcode">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="File\GCodes\config.g">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="File\GCodes\Cura.gcode">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="File\GCodes\Simplify3D.gcode">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="File\GCodes\Slic3r.gcode">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="Machine\JSON\patch.json">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
<None Update="Machine\testModel.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Utility\heightmap.csv">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>