forked from BlueFinBima/Helios14
-
Notifications
You must be signed in to change notification settings - Fork 35
/
Platforms.properties
59 lines (59 loc) · 2.89 KB
/
Platforms.properties
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" InitialTargets="HeliosCheckConfiguration">
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>$(MSBuildThisFileDirectory)\bin\x64\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE;HELIOS_64BIT</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x64</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>ManagedMinimumRules.ruleset</CodeAnalysisRuleSet>
<LangVersion>7.1</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
<OutputPath>$(MSBuildThisFileDirectory)\bin\x64\Release\</OutputPath>
<DefineConstants>HELIOS_64BIT</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x64</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>ManagedMinimumRules.ruleset</CodeAnalysisRuleSet>
<LangVersion>7.1</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
<DebugSymbols>true</DebugSymbols>
<PlatformTarget>AnyCPU</PlatformTarget>
<Prefer32Bit>false</Prefer32Bit>
<OutputPath>$(MSBuildThisFileDirectory)\bin\AnyCPU\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE;HELIOS_64BIT</DefineConstants>
<DebugType>full</DebugType>
<LangVersion>7.1</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU32'">
<OutputPath>$(MSBuildThisFileDirectory)\bin\AnyCPU32\Release\</OutputPath>
<DefineConstants>HELIOS_32BIT</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>AnyCPU</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>ManagedMinimumRules.ruleset</CodeAnalysisRuleSet>
<LangVersion>7.1</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU32'">
<DebugSymbols>true</DebugSymbols>
<PlatformTarget>AnyCPU</PlatformTarget>
<OutputPath>$(MSBuildThisFileDirectory)\bin\AnyCPU32\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE;HELIOS_32BIT</DefineConstants>
<DebugType>full</DebugType>
<LangVersion>7.1</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(HeliosExe)|$(Platform)' == 'true|AnyCPU32'">
<!-- this setting is only valid for exe types -->
<Prefer32Bit>true</Prefer32Bit>
</PropertyGroup>
<Target Name="HeliosCheckConfiguration">
<Error
Text="Unsupported build configuration for a Helios project: Release AnyCPU. AnyCPU is supported only for use in XAML Designer in Debug mode. Releases can be built for x64 or AnyCPU32."
Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'"/>
</Target>
</Project>