-
Notifications
You must be signed in to change notification settings - Fork 2
/
WsjtxUtils.WsjtxMessages.csproj
37 lines (32 loc) · 1.52 KB
/
WsjtxUtils.WsjtxMessages.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net7.0;net6.0;net48</TargetFrameworks>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<VersionPrefix>1.0.0</VersionPrefix>
<Authors>KC3PIB</Authors>
<Copyright>KC3PIB</Copyright>
<Title>WsjtxUtils.WsjtxMessages</Title>
<Description>The WsjtxUtils.WsjtxMessages library contains the classes and methods needed to serialize and deserialize WSJT-X messages in the QT QDataStream format specified by WSJT-X.</Description>
<PackageProjectUrl>https://github.com/KC3PIB/WsjtxUtils</PackageProjectUrl>
<RepositoryUrl>https://github.com/KC3PIB/WsjtxUtils</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>ham;amateur;radio;WSJT-X;FT8;FT4;WSPR;JT65</PackageTags>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\LICENSE" Link="LICENSE" Pack="true" PackagePath="\">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net48' ">
<PackageReference Include="System.Memory" Version="4.5.5" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>