Files
ntfysh-windows/ntfysh_client/ntfysh_client.csproj
2022-12-08 20:12:29 +00:00

18 lines
560 B
XML

<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ApplicationIcon>NotificationHub.ico</ApplicationIcon>
<StartupObject>ntfysh_client.Program</StartupObject>
<AssemblyName>ntfy.sh</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
</ItemGroup>
</Project>