mirror of
https://github.com/ZuneDev/MicrosoftIris.git
synced 2026-07-27 13:13:29 -07:00
33 lines
1.5 KiB
XML
33 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project>
|
|
<PropertyGroup>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
<Platform Condition=" '$(Platform)' == '' ">x64</Platform>
|
|
<ApplicationVersion>5.0.0.0</ApplicationVersion>
|
|
<AssemblyVersion>$(ApplicationVersion)</AssemblyVersion>
|
|
<FileVersion>$(ApplicationVersion)</FileVersion>
|
|
<LangVersion>latest</LangVersion>
|
|
|
|
<DefineConstants>$(DefineConstants);OPENZUNE</DefineConstants>
|
|
|
|
<TargetFrameworks>net8.0</TargetFrameworks>
|
|
<Platforms>AnyCPU;x64;x86</Platforms>
|
|
|
|
<!--<SignAssembly>True</SignAssembly>
|
|
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)\36MSApp1024.snk</AssemblyOriginatorKeyFile>
|
|
<DelaySign>True</DelaySign>-->
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" $([MSBuild]::IsOsPlatform('Windows')) ">
|
|
<TargetFrameworks>$(TargetFrameworks);net461;net8.0-windows10.0.22000</TargetFrameworks>
|
|
</PropertyGroup>
|
|
|
|
<Choose>
|
|
<When Condition=" $(TargetFramework.StartsWith('net6.0-windows')) ">
|
|
<PropertyGroup>
|
|
<DefineConstants Condition="$(TargetFramework.StartsWith('net6.0-windows10'))">$(DefineConstants);WINDOWS10</DefineConstants>
|
|
<DefineConstants Condition="$(TargetFramework.StartsWith('net6.0-windows8'))">$(DefineConstants);WINDOWS8</DefineConstants>
|
|
</PropertyGroup>
|
|
</When>
|
|
</Choose>
|
|
</Project> |