Added mozart and a project

This commit is contained in:
2025-08-11 13:51:04 +02:00
commit efd664fd2d
1131 changed files with 8175 additions and 0 deletions

18
Mozart.csproj Normal file
View File

@@ -0,0 +1,18 @@
<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>