-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathQuicNet.Tests.Unit.csproj
More file actions
21 lines (21 loc) · 948 Bytes
/
QuicNet.Tests.Unit.csproj
File metadata and controls
21 lines (21 loc) · 948 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<AssemblyTitle>QuicNet.Tests.Unit</AssemblyTitle>
<Product>QuicNet.Tests.Unit</Product>
<Copyright>Copyright © 2018</Copyright>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\QuickNet.Utilities\QuicNet.Utilities.csproj" />
<ProjectReference Include="..\QuicNet.Infrastructure\QuicNet.Infrastructure.csproj" />
<ProjectReference Include="..\QuicNet\QuicNet.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.*" />
<PackageReference Include="MSTest.TestAdapter" Version="3.1.1" />
<PackageReference Include="MSTest.TestFramework" Version="1.2.1" />
</ItemGroup>
</Project>