| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <EnableDefaultItems>false</EnableDefaultItems>
- <TargetFramework>net6.0-windows</TargetFramework>
- <OutputType>WinExe</OutputType>
- <RootNamespace>Samples.SLMC</RootNamespace>
- <AssemblyName>Samples.SLMC</AssemblyName>
- <KniPlatform>Windows</KniPlatform>
- <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
- <OutputPath>bin\$(Configuration)\DesktopGL\net6\</OutputPath>
- </PropertyGroup>
- <PropertyGroup>
- <ApplicationIcon>Icon.ico</ApplicationIcon>
- </PropertyGroup>
- <PropertyGroup>
- <ApplicationManifest>app.manifest</ApplicationManifest>
- <UseWindowsForms>True</UseWindowsForms>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
- <DefineConstants>TRACE;DEBUG;WINDOWS MG</DefineConstants>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
- <DefineConstants>TRACE;WINDOWS MG</DefineConstants>
- </PropertyGroup>
- <ItemGroup>
- <Compile Include="SLMCSampleComponent.cs" />
- <Compile Include="SampleGame.cs" />
- <Compile Include="Program.cs" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="Properties\AssemblyInfo.cs" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="nkast.Xna.Framework" Version="3.10.9001" />
- <PackageReference Include="MonoGame.Framework.WindowsDX.9000" Version="3.10.9001" />
- </ItemGroup>
- <ItemGroup>
- <Content Include="Icon.ico" />
- </ItemGroup>
- <ItemGroup>
- <KniContentReference Include="..\SLMCContent\Samples.SLMCContent.mgcb">
- <Link>Content\Content.mgcb</Link>
- </KniContentReference>
- </ItemGroup>
- <Import Project="C:\Program Files (x86)\MSBuild\MonoGame\v3.0\Kni.Content.Builder.targets" />
- </Project>
|