2021-11-18 12:01:22 -06:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2021-11-11 11:18:46 -06:00
|
|
|
<PropertyGroup>
|
|
|
|
|
<AssemblyName>ZuneDBApi</AssemblyName>
|
2021-11-22 00:09:47 -06:00
|
|
|
<AssemblyVersion>4.8.2345.0</AssemblyVersion>
|
|
|
|
|
|
2021-11-11 11:18:46 -06:00
|
|
|
<GenerateAssemblyInfo>False</GenerateAssemblyInfo>
|
2021-11-18 12:01:22 -06:00
|
|
|
<TargetFramework>net5.0</TargetFramework>
|
2021-11-22 00:09:47 -06:00
|
|
|
<Platforms>x64;x86</Platforms>
|
2021-11-18 12:01:22 -06:00
|
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
|
|
|
<LangVersion>latest</LangVersion>
|
2021-11-11 11:18:46 -06:00
|
|
|
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
2021-11-22 00:09:47 -06:00
|
|
|
<Platform Condition=" '$(Platform)' == '' ">x64</Platform>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition=" $(AssemblyVersion.StartsWith('5.')) ">
|
|
|
|
|
<DefineConstants>$(DefineConstants);ZUNE_5</DefineConstants>
|
2021-11-11 11:18:46 -06:00
|
|
|
</PropertyGroup>
|
2021-11-18 12:01:22 -06:00
|
|
|
|
2021-11-11 11:18:46 -06:00
|
|
|
<ItemGroup>
|
|
|
|
|
<Reference Include="UIX">
|
|
|
|
|
<HintPath>C:\Program Files\Zune\UIX.dll</HintPath>
|
|
|
|
|
</Reference>
|
2021-11-18 12:01:22 -06:00
|
|
|
|
2021-11-22 00:09:47 -06:00
|
|
|
<None Remove="ZuneNativeLib.dll" />
|
|
|
|
|
<Content Include="ZuneNativeLib.dll">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
<Link Condition=" '$(Platform)' == 'x64' ">C:\Program Files\Zune\ZuneNativeLib.dll</Link>
|
|
|
|
|
<Link Condition=" '$(Platform)' == 'x86' ">C:\Program Files (x86)\Zune\ZuneNativeLib.dll</Link>
|
|
|
|
|
</Content>
|
|
|
|
|
|
|
|
|
|
<None Remove="ZuneService.dll" />
|
|
|
|
|
<Content Include="ZuneService.dll">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
<Link Condition=" '$(Platform)' == 'x64' ">C:\Program Files\Zune\ZuneService.dll</Link>
|
|
|
|
|
<Link Condition=" '$(Platform)' == 'x86' ">C:\Program Files (x86)\Zune\ZuneService.dll</Link>
|
|
|
|
|
</Content>
|
2021-11-23 00:32:39 -06:00
|
|
|
<PackageReference Include="Microsoft.Diagnostics.Tracing.TraceEvent" Version="2.0.74" />
|
2021-11-22 00:09:47 -06:00
|
|
|
|
2021-11-18 12:01:22 -06:00
|
|
|
<PackageReference Include="Vanara.PInvoke.User32" Version="3.3.14" />
|
|
|
|
|
<PackageReference Include="Vanara.PInvoke.Kernel32" Version="3.3.14" />
|
|
|
|
|
<PackageReference Include="Vanara.PInvoke.Ole" Version="3.3.14" />
|
|
|
|
|
<PackageReference Include="Vanara.PInvoke.Gdi32" Version="3.3.14" />
|
|
|
|
|
<PackageReference Include="Vanara.PInvoke.Shell32" Version="3.3.14" />
|
2021-11-20 15:46:09 -06:00
|
|
|
<PackageReference Include="Vanara.PInvoke.Security" Version="3.3.14" />
|
2021-11-11 11:18:46 -06:00
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|