Build for AnyCPU

This commit is contained in:
2016-04-10 22:26:55 +02:00
parent ef381a6c06
commit 53c36a32a3
2 changed files with 24 additions and 6 deletions

View File

@@ -5,14 +5,14 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ImageCrusher", "ImageCrushe
EndProject EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x86 = Debug|x86 Debug|Any CPU = Debug|Any CPU
Release|x86 = Release|x86 Release|Any CPU = Release|Any CPU
EndGlobalSection EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution GlobalSection(ProjectConfigurationPlatforms) = postSolution
{BFFF979E-15D9-43A5-917D-69A8825C0819}.Debug|x86.ActiveCfg = Debug|x86 {BFFF979E-15D9-43A5-917D-69A8825C0819}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BFFF979E-15D9-43A5-917D-69A8825C0819}.Debug|x86.Build.0 = Debug|x86 {BFFF979E-15D9-43A5-917D-69A8825C0819}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BFFF979E-15D9-43A5-917D-69A8825C0819}.Release|x86.ActiveCfg = Release|x86 {BFFF979E-15D9-43A5-917D-69A8825C0819}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BFFF979E-15D9-43A5-917D-69A8825C0819}.Release|x86.Build.0 = Release|x86 {BFFF979E-15D9-43A5-917D-69A8825C0819}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection EndGlobalSection
GlobalSection(SolutionProperties) = preSolution GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE HideSolutionNode = FALSE

View File

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