24 lines
1.0 KiB
XML
24 lines
1.0 KiB
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
<PropertyGroup>
|
||
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
||
|
<IsPackable>false</IsPackable>
|
||
|
</PropertyGroup>
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="nunit" Version="3.12.0" />
|
||
|
<PackageReference Include="NUnit3TestAdapter" Version="3.13.0" />
|
||
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" />
|
||
|
<PackageReference Include="Grpc.Core" Version="2.26.0" />
|
||
|
<PackageReference Include="Grpc.Tools" Version="2.26.0">
|
||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||
|
<PrivateAssets>all</PrivateAssets>
|
||
|
</PackageReference>
|
||
|
<PackageReference Include="Grpc" Version="2.26.0" />
|
||
|
</ItemGroup>
|
||
|
<ItemGroup>
|
||
|
<Protobuf Remove="..\Aurora\Proto\general.proto" />
|
||
|
<Protobuf Remove="..\Aurora\Proto\party.v2.proto" />
|
||
|
</ItemGroup>
|
||
|
<ItemGroup>
|
||
|
<ProjectReference Include="..\Aurora\Aurora.csproj" />
|
||
|
</ItemGroup>
|
||
|
</Project>
|