Storage.Windows.csproj 1.4 KB

12345678910111213141516171819202122232425262728293031
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0-windows</TargetFramework>
  4. <OutputType>WinExe</OutputType>
  5. <RootNamespace>Storage.Platforms.Windows</RootNamespace>
  6. <UseWindowsForms>false</UseWindowsForms>
  7. <UseWPF>false</UseWPF>
  8. <Nullable>enable</Nullable>
  9. <AssemblyTitle>Storage.Windows</AssemblyTitle>
  10. <AssemblyVersion>1.0.0.0</AssemblyVersion>
  11. <FileVersion>1.0.0.0</FileVersion>
  12. <Authors>YourName</Authors>
  13. <Company>YourCompany</Company>
  14. <Product>Storage</Product>
  15. <MonoGamePlatform>Windows</MonoGamePlatform>
  16. </PropertyGroup>
  17. <ItemGroup>
  18. <ProjectReference Include="..\..\Core\Storage.Core.csproj" />
  19. <PackageReference Include="MonoGame.Framework.WindowsDX" Version="3.8.4.2491-develop" />
  20. <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
  21. </ItemGroup>
  22. <ItemGroup>
  23. <MonoGameContentReference Include="..\..\Core\Content\Content.mgcb">
  24. <Link>Content\Content.mgcb</Link>
  25. </MonoGameContentReference>
  26. </ItemGroup>
  27. <Target Name="RestoreDotnetTools" BeforeTargets="CollectPackageReferences">
  28. <Message Text="Restoring dotnet tools (this might take a while depending on your internet speed and should only happen upon building your project for the first time, or after upgrading MonoGame, or clearing your nuget cache)" Importance="High" />
  29. <Exec Command="dotnet tool restore" />
  30. </Target>
  31. </Project>