-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPoESkillTree.Engine.GameModel.Tests.csproj
More file actions
34 lines (34 loc) · 1.48 KB
/
PoESkillTree.Engine.GameModel.Tests.csproj
File metadata and controls
34 lines (34 loc) · 1.48 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>
<RootNamespace>PoESkillTree.Engine.GameModel</RootNamespace>
<TargetFramework>netcoreapp3.1</TargetFramework>
<LangVersion>8</LangVersion>
<AssemblyTitle>PoESkillTree.Engine.GameModel.Tests</AssemblyTitle>
<Product>PoESkillTree.Engine.GameModel.Tests</Product>
<Copyright>Copyright © 2018</Copyright>
<IsPackable>False</IsPackable>
<Nullable>enable</Nullable>
<WarningsAsErrors>8600;8601;8602;8603;8604;8619;8620</WarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Appveyor.TestLogger" Version="2.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.4.0" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FluentAssertions" Version="5.9.0" />
<PackageReference Include="Moq" Version="4.13.1" />
<PackageReference Include="morelinq" Version="3.2.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="NUnit" Version="3.12.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.15.1" />
</ItemGroup>
<ItemGroup>
<None Include="Data\*.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\PoESkillTree.Engine.GameModel\PoESkillTree.Engine.GameModel.csproj" />
<ProjectReference Include="..\PoESkillTree.Engine.Utils\PoESkillTree.Engine.Utils.csproj" />
</ItemGroup>
</Project>