-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathopensky2cot.csproj
More file actions
32 lines (27 loc) · 1.04 KB
/
opensky2cot.csproj
File metadata and controls
32 lines (27 loc) · 1.04 KB
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
26
27
28
29
30
31
32
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<Version>1.0.0</Version>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<!-- <PublishSingleFile>true</PublishSingleFile> -->
<RuntimeIdentifiers>win-x64;linux-x64;linux-arm64</RuntimeIdentifiers>
<AssemblyName>opensky2cot</AssemblyName>
</PropertyGroup>
<ItemGroup>
<None Remove="opensky2cot.json" />
</ItemGroup>
<ItemGroup>
<Content Include="opensky2cot.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="dpp.cot" Version="1.0.4" />
<PackageReference Include="dpp.takclient" Version="1.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="6.0.1" />
<PackageReference Include="OpenSkyNet" Version="0.0.0.1" />
<PackageReference Include="Serilog" Version="2.10.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="4.0.1" />
</ItemGroup>
</Project>