mirror of
https://github.com/Hamlib/Hamlib
synced 2026-08-13 17:32:05 -04:00
Should compile on Windows, Linux, and MacOS with appropriate dotnet package installed See README.TXT in directory https://github.com/Hamlib/Hamlib/issues/1223
19 lines
448 B
XML
Executable file
19 lines
448 B
XML
Executable file
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="**\*.glade" />
|
|
<EmbeddedResource Include="**\*.glade">
|
|
<LogicalName>%(Filename)%(Extension)</LogicalName>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="GtkSharp" Version="3.24.24.*" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|