mirror of
https://github.com/2dust/v2rayN.git
synced 2026-09-22 22:38:10 +03:00
24 lines
608 B
XML
24 lines
608 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<IsPackable>false</IsPackable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="TUnit" />
|
|
<PackageReference Include="TUnit.Assertions.Should" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\ServiceLib\ServiceLib.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Using Include="TUnit.Assertions.Should" />
|
|
<Using Include="TUnit.Assertions.Should.Extensions" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|