mirror of
https://github.com/ZuneDev/ZuneShell.dll.git
synced 2026-07-27 13:11:51 -07:00
64 lines
2.4 KiB
XML
64 lines
2.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
<Platform Condition=" '$(Platform)' == '' ">x64</Platform>
|
|
<OutputType>Library</OutputType>
|
|
<AssemblyName>ZuneImpl</AssemblyName>
|
|
<ApplicationVersion>4.8.0.0</ApplicationVersion>
|
|
<LangVersion>latest</LangVersion>
|
|
|
|
<TargetFrameworks>net35;net40;netstandard2.0;net6.0</TargetFrameworks>
|
|
<Platforms>x64;x86</Platforms>
|
|
<RootNamespace>Microsoft.Zune</RootNamespace>
|
|
|
|
<SignAssembly>True</SignAssembly>
|
|
<AssemblyOriginatorKeyFile>..\libs\MicrosoftIris\36MSApp1024.snk</AssemblyOriginatorKeyFile>
|
|
<DelaySign>True</DelaySign>
|
|
|
|
<UseOpenZune>False</UseOpenZune>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="ZuneDBApi">
|
|
<HintPath>C:\Program Files\Zune\ZuneDBApi.dll</HintPath>
|
|
</Reference>
|
|
|
|
<!-- This is the last version of NAudio to support net35 and net6.0 -->
|
|
<PackageReference Include="NAudio" Version="1.10.0" />
|
|
<PackageReference Include="Zune.Xml" Version="0.1.0" />
|
|
|
|
<ProjectReference Include="..\libs\MicrosoftIris\UIX\UIX.csproj" />
|
|
</ItemGroup>
|
|
|
|
<Choose>
|
|
<When Condition=" '$(TargetFramework)' == 'net6.0' ">
|
|
<PropertyGroup>
|
|
<UseOpenZune>True</UseOpenZune>
|
|
<DefineConstants>$(DefineConstants);NETSTANDARD2_1_OR_GREATER</DefineConstants>
|
|
</PropertyGroup>
|
|
</When>
|
|
<When Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
|
|
<PropertyGroup>
|
|
<UseOpenZune>True</UseOpenZune>
|
|
</PropertyGroup>
|
|
</When>
|
|
</Choose>
|
|
|
|
<ItemGroup Condition="$(UseOpenZune)">
|
|
<PackageReference Include="StrixMusic.Sdk" Version="0.0.3-alpha" />
|
|
<PackageReference Include="StrixMusic.Cores.LocalFiles" Version="1.0.0" />
|
|
<PackageReference Include="Meziantou.Framework.Win32.CredentialManager" Version="1.4.2" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup Condition="$(UseOpenZune)">
|
|
<ApplicationVersion>5.0.0.0</ApplicationVersion>
|
|
<DefineConstants>$(DefineConstants);OPENZUNE</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup Condition="!$(UseOpenZune)">
|
|
<ProjectReference Include="..\libs\Meziantou.Framework.Win32.CredentialManager\Meziantou.Framework.Win32.CredentialManager.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|