| 123456789101112131415161718192021222324252627282930 |
- <!-- .xnb copy ItemGroup moved inside <Project> below -->
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net9.0-windows</TargetFramework>
- <OutputType>WinExe</OutputType>
- <RootNamespace>Sound</RootNamespace>
- <AssemblyName>Sound.Windows</AssemblyName>
- <UseWindowsForms>true</UseWindowsForms>
- <Nullable>enable</Nullable>
- <Description></Description>
- <Company></Company>
- <Product>Sound</Product>
- <Copyright>Copyright © 2011</Copyright>
- <Version>1.0.0.0</Version>
- <FileVersion>1.0.0.0</FileVersion>
- <MonoGamePlatform>Windows</MonoGamePlatform>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Core\Sound.Core.csproj" />
- <PackageReference Include="MonoGame.Framework.WindowsDX" Version="3.8.*" />
- <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
- </ItemGroup>
- <ItemGroup>
- <MonoGameContentReference Include="..\..\Core\Content\Content.mgcb">
- <Link>Content\Content.mgcb</Link>
- </MonoGameContentReference>
- </ItemGroup>
- </Project>
|