Added x86 build.

servicizing
Sean McArdle 2016-03-24 19:03:55 -07:00
parent 5081503906
commit 01957be40b
2 changed files with 24 additions and 0 deletions

View File

@ -8,13 +8,19 @@ EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{B3A5D84A-C7A0-409D-881D-1D5FF36773D4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B3A5D84A-C7A0-409D-881D-1D5FF36773D4}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B3A5D84A-C7A0-409D-881D-1D5FF36773D4}.Debug|x86.ActiveCfg = Debug|x86
{B3A5D84A-C7A0-409D-881D-1D5FF36773D4}.Debug|x86.Build.0 = Debug|x86
{B3A5D84A-C7A0-409D-881D-1D5FF36773D4}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B3A5D84A-C7A0-409D-881D-1D5FF36773D4}.Release|Any CPU.Build.0 = Release|Any CPU
{B3A5D84A-C7A0-409D-881D-1D5FF36773D4}.Release|x86.ActiveCfg = Release|x86
{B3A5D84A-C7A0-409D-881D-1D5FF36773D4}.Release|x86.Build.0 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE

View File

@ -33,6 +33,24 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x86\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x86</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
<OutputPath>bin\x86\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x86</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />