2018-08-01 09:09:07 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-06-19 09:06:54 +00:00
|
|
|
<PropertyGroup>
|
2025-10-19 16:41:14 +00:00
|
|
|
<TargetFramework>net10.0-windows</TargetFramework>
|
2020-03-28 16:59:58 +00:00
|
|
|
<ApplicationIcon>Resources\GameIcon.ico</ApplicationIcon>
|
2018-06-19 09:06:54 +00:00
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
|
<RootNamespace>ParticlesSample</RootNamespace>
|
2018-08-01 09:09:07 +00:00
|
|
|
<OutputPath>..\Bin\Windows\$(Configuration)\</OutputPath>
|
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
2024-08-28 20:24:29 +00:00
|
|
|
<DefineConstants>STRIDE_PLATFORM_DESKTOP</DefineConstants>
|
2018-06-19 09:06:54 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup>
|
2020-04-14 14:37:41 +00:00
|
|
|
<StrideCurrentPackagePath>$(MSBuildThisFileDirectory)..\ParticlesSample.sdpkg</StrideCurrentPackagePath>
|
|
|
|
|
<StrideProjectType>Executable</StrideProjectType>
|
|
|
|
|
<StridePlatform>Windows</StridePlatform>
|
2018-06-19 09:06:54 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
2018-08-01 09:09:07 +00:00
|
|
|
<ProjectReference Include="..\ParticlesSample.Game\ParticlesSample.Game.csproj" />
|
2018-06-19 09:06:54 +00:00
|
|
|
</ItemGroup>
|
2025-11-12 06:36:03 +00:00
|
|
|
</Project>
|