stride/samples/Graphics/CustomEffect/CustomEffect.Windows/CustomEffect.Windows.csproj

20 lines
841 B
XML
Raw Permalink Normal View History

2018-08-01 09:09:07 +00:00
<Project Sdk="Microsoft.NET.Sdk">
2018-06-19 09:06:54 +00:00
<PropertyGroup>
<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>CustomEffect</RootNamespace>
2018-08-01 09:09:07 +00:00
<OutputPath>..\Bin\Windows\$(Configuration)\</OutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<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)..\CustomEffect.sdpkg</StrideCurrentPackagePath>
<StrideProjectType>Executable</StrideProjectType>
<StridePlatform>Windows</StridePlatform>
</PropertyGroup>
2018-06-19 09:06:54 +00:00
<ItemGroup>
2018-08-01 09:09:07 +00:00
<ProjectReference Include="..\CustomEffect.Game\CustomEffect.Game.csproj" />
2018-06-19 09:06:54 +00:00
</ItemGroup>
</Project>