21 lines
625 B
XML
21 lines
625 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
||
|
|
||
|
<IsPackable>false</IsPackable>
|
||
|
<ReleaseVersion>0.1.0</ReleaseVersion>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="nunit" Version="3.12.0" />
|
||
|
<PackageReference Include="NUnit3TestAdapter" Version="3.15.1" />
|
||
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.4.0" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<ProjectReference Include="..\..\Realtime\Realtime\Realtime.csproj" />
|
||
|
<ProjectReference Include="..\..\Storage\Storage\Storage.csproj" />
|
||
|
</ItemGroup>
|
||
|
</Project>
|