2022-06-07 01:00:15 -05:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFrameworks>net35;net40;net6.0;netstandard2.0</TargetFrameworks>
|
|
|
|
|
<RootNamespace>Microsoft.Iris.Debug</RootNamespace>
|
2022-06-07 01:16:41 -05:00
|
|
|
<LangVersion>latest</LangVersion>
|
2022-06-07 01:00:15 -05:00
|
|
|
|
|
|
|
|
<UseZune5>false</UseZune5>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' or '$(TargetFramework)' == 'net6.0' ">
|
|
|
|
|
<UseZune5>true</UseZune5>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup Condition=" '$(UseZune5)' == 'true' ">
|
|
|
|
|
<PackageReference Include="OwlCore" Version="0.0.67" />
|
2022-06-07 14:30:29 -05:00
|
|
|
<PackageReference Include="Cauldron.BasicInterceptors" Version="3.2.3" />
|
2022-06-07 01:00:15 -05:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(UseZune5)' == 'true' ">
|
|
|
|
|
<ApplicationVersion>5.0.0.0</ApplicationVersion>
|
|
|
|
|
<DefineConstants>$(DefineConstants);ZUNE5</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|