Files
MicrosoftIris/UIX/UIX.csproj
T

53 lines
2.0 KiB
XML
Raw Normal View History

2022-03-03 08:14:05 -06:00
<?xml version="1.0" encoding="utf-8"?>
2022-06-03 00:37:31 -05:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2022-06-05 14:17:21 -05:00
<TargetFrameworks>net35;net40;net6.0</TargetFrameworks>
2022-06-03 00:37:31 -05:00
<ProjectGuid>{78A8B08C-C0E9-4BAC-9AF6-58D3A55C05C9}</ProjectGuid>
<ApplicationVersion>4.8.0.0</ApplicationVersion>
<OutputType>Library</OutputType>
<AssemblyName>UIX</AssemblyName>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<LangVersion>9</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>..\36MSApp1024.snk</AssemblyOriginatorKeyFile>
<Platforms>AnyCPU;x64;x86</Platforms>
2022-06-07 01:00:15 -05:00
2022-06-09 19:03:40 -05:00
<UseOpenZune>false</UseOpenZune>
2022-06-03 00:37:31 -05:00
</PropertyGroup>
<ItemGroup>
2022-06-07 01:00:15 -05:00
<ProjectReference Include="..\UIX.Debug\UIX.Debug.csproj" />
2022-06-03 00:37:31 -05:00
<ProjectReference Include="..\UIX.RenderApi\UIX.RenderApi.csproj" />
</ItemGroup>
2022-06-07 01:00:15 -05:00
<PropertyGroup Condition=" '$(TargetFramework)' == 'net6.0' ">
2022-06-09 19:03:40 -05:00
<UseOpenZune>true</UseOpenZune>
2022-06-07 01:00:15 -05:00
</PropertyGroup>
2022-06-03 00:37:31 -05:00
<ItemGroup Condition=" '$(TargetFramework)' == 'net35' ">
<Reference Include="Accessibility" />
<Reference Include="System" />
<Reference Include="System.XML" />
<None Include="app.config" />
<None Include="packages.config" />
</ItemGroup>
2022-06-05 14:31:21 -05:00
<ItemGroup Condition=" '$(TargetFramework)' == 'net40' ">
<Reference Include="Accessibility" />
<None Include="app.config" />
<None Include="packages.config" />
</ItemGroup>
2022-06-03 00:37:31 -05:00
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
<PackageReference Include="System.Security.Permissions" Version="6.0.0" />
<PackageReference Include="Vanara.PInvoke.Accessibility" Version="3.4.2" />
</ItemGroup>
2022-06-09 19:03:40 -05:00
<PropertyGroup Condition=" '$(UseOpenZune)' == 'true' ">
2022-06-07 01:00:15 -05:00
<ApplicationVersion>5.0.0.0</ApplicationVersion>
2022-06-09 19:03:40 -05:00
<DefineConstants>$(DefineConstants);OPENZUNE</DefineConstants>
2022-06-07 01:00:15 -05:00
</PropertyGroup>
2022-03-03 08:14:05 -06:00
</Project>