forked from ddrilling/AsbCloudServer
21 lines
668 B
XML
21 lines
668 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="AutoMapper" Version="10.1.1" />
|
|
<PackageReference Include="BenchmarkDotNet" Version="0.12.1" />
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="5.0.5" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\AsbCloudApp\AsbCloudApp.csproj" />
|
|
<ProjectReference Include="..\AsbCloudDb\AsbCloudDb.csproj" />
|
|
<ProjectReference Include="..\AsbCloudInfrastructure\AsbCloudInfrastructure.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|