2024-10-28 00:44:38 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
2024-11-05 02:09:54 +08:00
|
|
|
|
<TargetFramework>net7.0-windows</TargetFramework>
|
2024-10-28 00:44:38 +08:00
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
2024-10-28 01:05:30 +08:00
|
|
|
|
<EnableWindowsTargeting>true</EnableWindowsTargeting>
|
2024-11-05 02:09:54 +08:00
|
|
|
|
<Company>Monocul.us</Company>
|
|
|
|
|
<Authors>Andrea Santaniello</Authors>
|
|
|
|
|
<Description>Radio GUI for KV4P radio</Description>
|
|
|
|
|
<PackageIcon>icon-lg-dark.png</PackageIcon>
|
|
|
|
|
<ApplicationIcon>icon-lg-dark.ico</ApplicationIcon>
|
2024-10-28 00:44:38 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2024-11-05 02:09:54 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="icon-lg-dark.ico" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Include="E:\malattie\malattie_json\icon-lg-dark.png">
|
|
|
|
|
<Pack>True</Pack>
|
|
|
|
|
<PackagePath>\</PackagePath>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-10-28 00:44:38 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="NAudio" Version="2.2.1" />
|
2024-11-05 21:56:30 +08:00
|
|
|
|
<PackageReference Include="System.Management" Version="8.0.0" />
|
2024-10-28 00:44:38 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\kv4p-sharp\kv4p-sharp-lib.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|