20 lines
546 B
XML
20 lines
546 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Platforms>AnyCPU;x64</Platforms>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="ManagedBass" Version="3.1.1" />
|
|
<PackageReference Include="OpenTK" Version="4.7.5" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\LibAudioVisualizer\LibAudioVisualizer.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project> |