forked from AscensionGameDev/Intersect-Engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCommon.props
More file actions
32 lines (28 loc) · 1.54 KB
/
Common.props
File metadata and controls
32 lines (28 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<Project>
<PropertyGroup>
<Configurations>Debug;Release;DebugTests;DebugFull;DebugPlugins</Configurations>
<Platforms>AnyCPU</Platforms>
<IntersectConfiguration>$(Configuration)</IntersectConfiguration>
<IntersectConfiguration Condition="$(IntersectConfiguration.StartsWith('Debug'))">Debug</IntersectConfiguration>
<IntersectConfiguration Condition="'$(IntersectConfiguration)' == ''">Release</IntersectConfiguration>
</PropertyGroup>
<PropertyGroup Condition="'$(IntersectConfiguration)' == 'Debug'">
<ImplicitConfigurationDefine>DEBUG</ImplicitConfigurationDefine>
<ConfigurationName>Debug</ConfigurationName>
<Configuration>Debug</Configuration>
<DefineConstants Condition="'$(DefineConstants)' != ''">$(DefineConstants);</DefineConstants>
<DefineConstants>$(DefineConstants)DEBUG</DefineConstants>
<DebugSymbols Condition=" '$(DebugSymbols)' == '' ">true</DebugSymbols>
<Optimize Condition=" '$(Optimize)' == '' ">false</Optimize>
<OutputPath>bin/Debug/</OutputPath>
<IntermediateOutputPath>obj/Debug/</IntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Label="Language Properties">
<Deterministic>true</Deterministic>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<RuntimeIdentifiers>linux-arm64;linux-x64;osx-arm64;osx-x64;win-x64</RuntimeIdentifiers>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
</Project>