Split common props into file

This commit is contained in:
Yoshi Askharoun
2022-12-20 01:54:59 -06:00
parent 2667456b41
commit 472361c839
4 changed files with 53 additions and 37 deletions
+1 -14
View File
@@ -1,25 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net35;net40;net6.0;netstandard2.0</TargetFrameworks>
<RootNamespace>Microsoft.Iris.Debug</RootNamespace>
<LangVersion>latest</LangVersion>
<UseOpenZune>false</UseOpenZune>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' or '$(TargetFramework)' == 'net6.0' ">
<UseOpenZune>true</UseOpenZune>
</PropertyGroup>
<ItemGroup Condition=" '$(UseOpenZune)' == 'true' ">
<ItemGroup Condition="$(UseOpenZune)">
<PackageReference Include="OwlCore" Version="0.0.71" />
<PackageReference Include="Cauldron.BasicInterceptors" Version="3.2.3" />
</ItemGroup>
<PropertyGroup Condition=" '$(UseOpenZune)' == 'true' ">
<ApplicationVersion>5.0.0.0</ApplicationVersion>
<DefineConstants>$(DefineConstants);OPENZUNE</DefineConstants>
</PropertyGroup>
</Project>