mirror of
https://github.com/Karaka-Management/oms-OnlineResourceWatcher.git
synced 2026-01-11 07:58:42 +00:00
17 lines
485 B
XML
Executable File
17 lines
485 B
XML
Executable File
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<UseWPF>true</UseWPF>
|
|
<Configurations>Debug;Release;Demo</Configurations>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Demo|AnyCPU'">
|
|
<Optimize>True</Optimize>
|
|
<DefineConstants>$(DefineConstants)TRACE;Demo</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|