33 lines
1.2 KiB
XML
33 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<UseWPF>true</UseWPF>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ApplicationIcon>app.ico</ApplicationIcon>
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
<AssemblyName>OmniNotify</AssemblyName>
|
|
<RootNamespace>OmniNotify</RootNamespace>
|
|
<Version>0.2.0</Version>
|
|
<FileVersion>0.2.0.0</FileVersion>
|
|
<AssemblyVersion>0.2.0.0</AssemblyVersion>
|
|
<Authors>OmniNotify</Authors>
|
|
<Company>OmniNotify</Company>
|
|
<Product>Omni-Notify</Product>
|
|
<Description>Local desktop notification popup receiver.</Description>
|
|
<Copyright>Copyright (c) OmniNotify</Copyright>
|
|
<RepositoryType>git</RepositoryType>
|
|
<NeutralLanguage>zh-CN</NeutralLanguage>
|
|
<Deterministic>true</Deterministic>
|
|
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
|
|
<SelfContained>false</SelfContained>
|
|
<PublishSingleFile>false</PublishSingleFile>
|
|
<PublishTrimmed>false</PublishTrimmed>
|
|
<PublishReadyToRun>false</PublishReadyToRun>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|