forked from RevenantX/LiteNetLib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLiteNetLibNetCore.Tests.csproj
More file actions
29 lines (23 loc) · 1 KB
/
Copy pathLiteNetLibNetCore.Tests.csproj
File metadata and controls
29 lines (23 loc) · 1 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\LiteNetLib.Tests\ConnectionTest.cs" Link="ConnectionTest.cs" />
<Compile Include="..\LiteNetLib.Tests\NetSerializerTest.cs" Link="NetSerializerTest.cs" />
<Compile Include="..\LiteNetLib.Tests\ReaderWriterSimpleDataTest.cs" Link="ReaderWriterSimpleDataTest.cs" />
<Compile Include="..\LiteNetLib.Tests\TestUtility\NetManagerStack.cs" Link="TestUtility\NetManagerStack.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.6.1" />
<PackageReference Include="NUnit" Version="3.10.1" />
<PackageReference Include="NUnit3TestAdapter" Version="3.10.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\LiteNetLibNetCore\LiteNetLibNetCore.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="TestUtility\" />
</ItemGroup>
</Project>