mirror of
https://github.com/openeggbert/mobile-eggbert-fna-desktop.git
synced 2025-03-25 07:37:47 +01:00
28 lines
778 B
XML
28 lines
778 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net4.0</TargetFramework>
|
|
<RootNamespace>mobile_eggbert_fna</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<DefineConstants>FNA</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<DefineConstants>KFNA</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="FNADllMap.config">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="../FNA/FNA.Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
|
|
</Project>
|