1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <Project Sdk="Microsoft.NET.Sdk">
- <Import Project="$(MSBuildExtensionsPath)\MonoGame\v3.0\MonoGame.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\MonoGame\v3.0\MonoGame.Common.props')" />
- <PropertyGroup>
- <EnableDefaultItems>false</EnableDefaultItems>
- <TargetFramework>net6.0-windows</TargetFramework>
- <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
- <OutputType>WinExe</OutputType>
- <RootNamespace>Samples.Animation</RootNamespace>
- <AssemblyName>Samples.Animation</AssemblyName>
- <MonoGamePlatform>Windows</MonoGamePlatform>
- <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
- </PropertyGroup>
- <PropertyGroup>
- <ApplicationIcon>Icon.ico</ApplicationIcon>
- </PropertyGroup>
- <PropertyGroup>
- <ApplicationManifest>app.manifest</ApplicationManifest>
- <UseWindowsForms>True</UseWindowsForms>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
- <OutputPath>bin\Debug\Windows\MG\</OutputPath>
- <DefineConstants>TRACE;DEBUG;WINDOWS MG</DefineConstants>
- <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
- <UseVSHostingProcess>false</UseVSHostingProcess>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
- <OutputPath>bin\Release\Windows\MG\</OutputPath>
- <DefineConstants>TRACE;WINDOWS MG</DefineConstants>
- <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
- </PropertyGroup>
- <ItemGroup>
- <Compile Include="Game1.cs" />
- <Compile Include="Program.cs" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="Properties\AssemblyInfo.cs" />
- </ItemGroup>
- <ItemGroup>
- <Reference Include="MonoGame.Framework">
- <HintPath>$(MonoGameInstallDirectory)\MonoGame\v3.0\Assemblies\Windows\net6.0-windows\MonoGame.Framework.dll</HintPath>
- </Reference>
- </ItemGroup>
- <ItemGroup>
- <Content Include="Icon.ico" />
- </ItemGroup>
- <ItemGroup>
- <MonoGameContentReference Include="..\AnimationContent\Content.mgcb">
- <Link>Content\Content.mgcb</Link>
- </MonoGameContentReference>
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Animation\Aether.Animation.NETSTANDARD.DX.csproj" />
- <ProjectReference Include="..\..\Shaders\InfiniteGrid\Aether.Shaders.InfiniteGrid.NETSTANDARD.csproj" />
- </ItemGroup>
- <Import Project="C:\Program Files (x86)\MSBuild\MonoGame\v3.0\MonoGame.Content.Builder17.targets" />
- </Project>
|