-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathFoxTunes.Output.Bass.Cd.csproj
76 lines (64 loc) · 2.69 KB
/
FoxTunes.Output.Bass.Cd.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net40;net48</TargetFrameworks>
<AssemblyName>FoxTunes.Output.Bass.Cd</AssemblyName>
<OutputPath>..\distribution\</OutputPath>
<SkipEnsureBindingRedirects>true</SkipEnsureBindingRedirects>
<SkipValidatePackageReferences>true</SkipValidatePackageReferences>
<AssemblyVersion>3.6.0.0</AssemblyVersion>
<Platforms>AnyCPU</Platforms>
</PropertyGroup>
<ItemGroup>
<Reference Include="ManagedBass" Condition="'$(TargetFramework)' == 'net40'">
<HintPath>..\lib\net40\ManagedBass.dll</HintPath>
</Reference>
<Reference Include="ManagedBass.Cd" Condition="'$(TargetFramework)' == 'net40'">
<HintPath>..\lib\net40\ManagedBass.Cd.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Reference Include="ManagedBass" Condition="'$(TargetFramework)' == 'net462' or '$(TargetFramework)' == 'net48'">
<HintPath>..\lib\net462\ManagedBass.dll</HintPath>
</Reference>
<Reference Include="ManagedBass.Cd" Condition="'$(TargetFramework)' == 'net462' or '$(TargetFramework)' == 'net48'">
<HintPath>..\lib\net462\ManagedBass.Cd.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<None Include="..\lib\x86\basscd.dll" Link="x86\Addon\basscd.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<None Include="..\lib\x64\basscd.dll" Link="x64\Addon\basscd.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\FoxTunes.Core\FoxTunes.Core.csproj" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\FoxTunes.Output\FoxTunes.Output.csproj" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\FoxTunes.Output.Bass\FoxTunes.Output.Bass.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ManagedBass.Gapless" Version="0.2.0" />
<PackageReference Include="Microsoft.Bcl.Async" Version="1.0.168" Condition="'$(TargetFramework)' == 'net40'" />
<PackageReference Include="Microsoft.Bcl.Build" Version="1.0.21" Condition="'$(TargetFramework)' == 'net40'" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Strings.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Strings.resx</DependentUpon>
</Compile>
<EmbeddedResource Update="Properties\Strings.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Strings.Designer.cs</LastGenOutput>
<CustomToolNamespace>FoxTunes</CustomToolNamespace>
</EmbeddedResource>
</ItemGroup>
<Import Project="$(UserProfile)\.nuget\packages\Microsoft.Bcl.Build\1.0.21\build\Microsoft.Bcl.Build.targets" Condition="'$(TargetFramework)' == 'net40'" />
</Project>