Samples.SLMC.WINDOWS.NET6.csproj 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <EnableDefaultItems>false</EnableDefaultItems>
  4. <TargetFramework>net6.0-windows</TargetFramework>
  5. <OutputType>WinExe</OutputType>
  6. <RootNamespace>Samples.SLMC</RootNamespace>
  7. <AssemblyName>Samples.SLMC</AssemblyName>
  8. <KniPlatform>Windows</KniPlatform>
  9. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  10. <OutputPath>bin\$(Configuration)\DesktopGL\net6\</OutputPath>
  11. </PropertyGroup>
  12. <PropertyGroup>
  13. <ApplicationIcon>Icon.ico</ApplicationIcon>
  14. </PropertyGroup>
  15. <PropertyGroup>
  16. <ApplicationManifest>app.manifest</ApplicationManifest>
  17. <UseWindowsForms>True</UseWindowsForms>
  18. </PropertyGroup>
  19. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
  20. <DefineConstants>TRACE;DEBUG;WINDOWS MG</DefineConstants>
  21. </PropertyGroup>
  22. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
  23. <DefineConstants>TRACE;WINDOWS MG</DefineConstants>
  24. </PropertyGroup>
  25. <ItemGroup>
  26. <Compile Include="SLMCSampleComponent.cs" />
  27. <Compile Include="SampleGame.cs" />
  28. <Compile Include="Program.cs" />
  29. </ItemGroup>
  30. <ItemGroup>
  31. <Compile Include="Properties\AssemblyInfo.cs" />
  32. </ItemGroup>
  33. <ItemGroup>
  34. <PackageReference Include="nkast.Xna.Framework" Version="3.10.9001" />
  35. <PackageReference Include="MonoGame.Framework.WindowsDX.9000" Version="3.10.9001" />
  36. </ItemGroup>
  37. <ItemGroup>
  38. <Content Include="Icon.ico" />
  39. </ItemGroup>
  40. <ItemGroup>
  41. <KniContentReference Include="..\SLMCContent\Samples.SLMCContent.mgcb">
  42. <Link>Content\Content.mgcb</Link>
  43. </KniContentReference>
  44. </ItemGroup>
  45. <Import Project="C:\Program Files (x86)\MSBuild\MonoGame\v3.0\Kni.Content.Builder.targets" />
  46. </Project>