-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathTerrariaServerAPI.Tests.csproj
More file actions
34 lines (28 loc) · 1.25 KB
/
TerrariaServerAPI.Tests.csproj
File metadata and controls
34 lines (28 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
28
29
30
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.13.2" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.1" />
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.2.1" />
<PackageReference Include="NUnit.Analyzers" Version="3.3.0" />
<PackageReference Include="coverlet.collector" Version="3.1.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\TerrariaServerAPI\TerrariaServerAPI.csproj" />
<!--<ProjectReference Include="..\external\Tiled-master\Tiled\Tiled.csproj" Name="Tiled" /> retained here since the name prop is important -->
</ItemGroup>
<ItemGroup Condition="@(ProjectReference->AnyHaveMetadataValue('Name', 'Tiled'))">
<_DefineConstants Include="TILED_PLUGIN" />
</ItemGroup>
<PropertyGroup>
<DefineConstants>$(DefineConstants);@(_DefineConstants)</DefineConstants>
</PropertyGroup>
</Project>