-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathWsjtxUtils.WsjtxUdpServer.Example.WriteJsonToConsole.csproj
38 lines (32 loc) · 1.44 KB
/
WsjtxUtils.WsjtxUdpServer.Example.WriteJsonToConsole.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
26
27
28
29
30
31
32
33
34
35
36
37
38
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net8.0;net7.0;net6.0;net48</TargetFrameworks>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<VersionPrefix>1.0.0</VersionPrefix>
<Authors>KC3PIB</Authors>
<Copyright>KC3PIB</Copyright>
<Title>WsjtxUtils.WsjtxUdpServer.Example.WriteJsonToConsole</Title>
<Description>An example console application that writes received WSJT-X messages to the console as JSON.</Description>
<PackageProjectUrl>https://github.com/KC3PIB/WsjtxUtils</PackageProjectUrl>
<RepositoryUrl>https://github.com/KC3PIB/WsjtxUtils</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\LICENSE" Link="LICENSE">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net48' ">
<PackageReference Include="System.Net.Http" Version="4.3.4" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Text.Json" Version="9.0.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\WsjtxUtils.WsjtxUdpServer.Example.UpdateGridFromGPS\WsjtxUtils.WsjtxUdpServer.Example.UpdateGridFromGPS.csproj" />
<ProjectReference Include="..\WsjtxUtils.WsjtxUdpServer\WsjtxUtils.WsjtxUdpServer.csproj" />
</ItemGroup>
</Project>