Files

53 lines
2.5 KiB
XML
Raw Permalink Normal View History

2022-12-20 01:54:59 -06:00
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x64</Platform>
2023-05-22 14:24:12 -05:00
<ApplicationVersion>5.0.0.0</ApplicationVersion>
<AssemblyVersion>$(ApplicationVersion)</AssemblyVersion>
<FileVersion>$(ApplicationVersion)</FileVersion>
2022-12-20 01:54:59 -06:00
<LangVersion>latest</LangVersion>
2023-05-22 14:24:12 -05:00
<DefineConstants>$(DefineConstants);OPENZUNE</DefineConstants>
2026-06-21 02:03:37 -05:00
<TargetFrameworks>net8.0</TargetFrameworks>
2022-12-20 01:54:59 -06:00
<Platforms>AnyCPU;x64;x86</Platforms>
2025-02-01 20:30:24 -06:00
<!--<SignAssembly>True</SignAssembly>
2023-05-22 14:24:12 -05:00
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)\36MSApp1024.snk</AssemblyOriginatorKeyFile>
2025-02-01 20:30:24 -06:00
<DelaySign>True</DelaySign>-->
2022-12-20 01:54:59 -06:00
</PropertyGroup>
2026-06-21 02:03:37 -05:00
<PropertyGroup Condition=" $([MSBuild]::IsOsPlatform('Windows')) ">
<TargetFrameworks>$(TargetFrameworks);net8.0-windows10.0.22000;net48</TargetFrameworks>
2026-06-21 02:03:37 -05:00
</PropertyGroup>
2023-05-22 14:24:12 -05:00
<Choose>
<When Condition=" $([MSBuild]::GetTargetPlatformIdentifier($(TargetFramework))) == 'windows' ">
2023-05-22 14:24:12 -05:00
<PropertyGroup>
<DefineConstants>$(DefineConstants);WINDOWS</DefineConstants>
<TargetWindowsVersion>$([MSBuild]::GetTargetPlatformVersion($(TargetFramework)))</TargetWindowsVersion>
<DefineConstants Condition="$([MSBuild]::VersionGreaterThanOrEquals($(TargetWindowsVersion), '7.0'))">
$(DefineConstants);WINDOWS7
</DefineConstants>
<DefineConstants Condition="$([MSBuild]::VersionGreaterThanOrEquals($(TargetWindowsVersion), '8.0'))">
$(DefineConstants);WINDOWS8
</DefineConstants>
<DefineConstants Condition="$([MSBuild]::VersionGreaterThanOrEquals($(TargetWindowsVersion), '10.0'))">
$(DefineConstants);WINDOWS10
</DefineConstants>
</PropertyGroup>
</When>
<When Condition=" $(TargetFramework.StartsWith('net4')) ">
<PropertyGroup>
<DefineConstants>$(DefineConstants);WINDOWS</DefineConstants>
<DefineConstants Condition=" !$(TargetFramework.StartsWith('net40')) ">
$(DefineConstants);NETSTANDARD1_0_OR_GREATER;NETSTANDARD2_0_OR_GREATER
</DefineConstants>
2023-05-22 14:24:12 -05:00
</PropertyGroup>
</When>
</Choose>
2022-12-20 01:54:59 -06:00
</Project>