forked from EchoTools/EchoRelay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEchoRelay.Cli.csproj
25 lines (21 loc) · 909 Bytes
/
EchoRelay.Cli.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RepositoryUrl>https://github.com/Xenomega/EchoRelay</RepositoryUrl>
<Authors>Xenomega (David Pokora)</Authors>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="Serilog" Version="3.1.1" />
<PackageReference Include="Serilog.Sinks.Async" Version="1.5.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="5.0.0" />
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\EchoRelay.API\EchoRelay.API.csproj" />
<ProjectReference Include="..\EchoRelay.Core\EchoRelay.Core.csproj" />
</ItemGroup>
</Project>