2022-12-20 01:55:48 -06:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<Project>
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
|
|
|
<Platform Condition=" '$(Platform)' == '' ">x64</Platform>
|
2023-05-04 00:18:30 -05:00
|
|
|
<ApplicationVersion>5.0.0.0</ApplicationVersion>
|
|
|
|
|
<AssemblyVersion>$(ApplicationVersion)</AssemblyVersion>
|
|
|
|
|
<FileVersion>$(ApplicationVersion)</FileVersion>
|
2022-12-20 01:55:48 -06:00
|
|
|
<LangVersion>latest</LangVersion>
|
|
|
|
|
|
2023-05-04 00:18:30 -05:00
|
|
|
<DefineConstants>$(DefineConstants);OPENZUNE</DefineConstants>
|
|
|
|
|
|
|
|
|
|
<TargetFrameworks>netstandard2.0;net461;net6.0;net6.0-windows</TargetFrameworks>
|
2022-12-20 01:55:48 -06:00
|
|
|
<Platforms>x64;x86</Platforms>
|
|
|
|
|
|
2022-12-20 01:59:44 -06:00
|
|
|
<SignAssembly>False</SignAssembly>
|
2022-12-20 01:55:48 -06:00
|
|
|
<AssemblyOriginatorKeyFile>$(SolutionDir)\libs\MicrosoftIris\36MSApp1024.snk</AssemblyOriginatorKeyFile>
|
|
|
|
|
<DelaySign>True</DelaySign>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2023-05-04 00:18:30 -05:00
|
|
|
<Choose>
|
|
|
|
|
<When Condition=" $(TargetFramework.StartsWith('net6.0-windows')) ">
|
|
|
|
|
<PropertyGroup>
|
2024-01-15 01:07:40 -06:00
|
|
|
<DefineConstants Condition="$(TargetFramework.StartsWith('net6.0-windows10'))">$(DefineConstants);WINDOWS8;WINDOWS10</DefineConstants>
|
2023-05-04 00:18:30 -05:00
|
|
|
<DefineConstants Condition="$(TargetFramework.StartsWith('net6.0-windows8'))">$(DefineConstants);WINDOWS8</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
</When>
|
2023-05-04 00:40:30 -05:00
|
|
|
|
|
|
|
|
<When Condition=" $(TargetFramework.StartsWith('net4')) ">
|
|
|
|
|
<PropertyGroup>
|
2024-01-15 01:07:40 -06:00
|
|
|
<DefineConstants>$(DefineConstants);WINDOWS;NETSTANDARD1_0_OR_GREATER;NETSTANDARD2_0_OR_GREATER</DefineConstants>
|
2023-05-04 00:40:30 -05:00
|
|
|
</PropertyGroup>
|
|
|
|
|
</When>
|
2023-05-04 00:18:30 -05:00
|
|
|
</Choose>
|
2022-12-20 01:55:48 -06:00
|
|
|
</Project>
|