blob: 98fa689f8f38e3b3cec9e035e503edf82d2e4cc5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Impostor.Server\Impostor.Server.csproj"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Serilog.Sinks.Console" Version="3.1.1"/>
</ItemGroup>
</Project>
|