Files
Mozart/Mozart.csproj
2025-08-11 13:51:04 +02:00

19 lines
548 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<None Update="Data\**">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="NetCoreAudio" Version="2.0.0" />
<PackageReference Include="System.Windows.Extensions" Version="9.0.8" />
</ItemGroup>
</Project>