forked from Damnae/brewlib
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbrewlib.csproj
More file actions
44 lines (41 loc) · 1.31 KB
/
brewlib.csproj
File metadata and controls
44 lines (41 loc) · 1.31 KB
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
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>Library</OutputType>
<RootNamespace>BrewLib</RootNamespace>
<AssemblyName>BrewLib</AssemblyName>
<TargetFramework>net48</TargetFramework>
<PackageId>brewlib</PackageId>
<Copyright>Copyright © Damnae 2016</Copyright>
<UseWindowsForms>true</UseWindowsForms>
<Product>brewlib</Product>
<Company>brewlib</Company>
<Authors>brewlib</Authors>
<Platforms>AnyCPU;x86</Platforms>
</PropertyGroup>
<ItemGroup>
<Content Include="bass.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="bass_fx.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Damnae.Tiny">
<Version>1.1.0</Version>
</PackageReference>
<PackageReference Include="ManagedBass">
<Version>3.1.1</Version>
</PackageReference>
<PackageReference Include="ManagedBass.Fx">
<Version>3.1.1</Version>
</PackageReference>
<PackageReference Include="OpenTK">
<Version>3.3.3</Version>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Reference Include="System.IO.Compression" />
<Reference Include="System.Management" />
</ItemGroup>
</Project>