added testing option for compile to 64 bit
This commit is contained in:
parent
182e6146d5
commit
5e95e52a1c
2 changed files with 29 additions and 0 deletions
|
@ -69,6 +69,29 @@
|
|||
<PropertyGroup />
|
||||
<PropertyGroup />
|
||||
<PropertyGroup />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<OutputPath>bin\x64\Debug\</OutputPath>
|
||||
<DefineConstants>CODE_ANALYSIS;DEBUG;TRACE</DefineConstants>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<Optimize>true</Optimize>
|
||||
<DebugType>full</DebugType>
|
||||
<PlatformTarget>x64</PlatformTarget>
|
||||
<RunCodeAnalysis>true</RunCodeAnalysis>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<CodeAnalysisRuleSet>ManagedMinimumRules.ruleset</CodeAnalysisRuleSet>
|
||||
<Prefer32Bit>true</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
|
||||
<OutputPath>bin\x64\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<Optimize>true</Optimize>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<PlatformTarget>x64</PlatformTarget>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<CodeAnalysisRuleSet>ManagedMinimumRules.ruleset</CodeAnalysisRuleSet>
|
||||
<Prefer32Bit>true</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="CopyFiles">
|
||||
<HintPath>.\CopyFiles.dll</HintPath>
|
||||
|
|
|
@ -8,13 +8,19 @@ EndProject
|
|||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Debug|x64 = Debug|x64
|
||||
Release|Any CPU = Release|Any CPU
|
||||
Release|x64 = Release|x64
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{2E5567C0-50C8-4F1F-9352-E27529B777FC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{2E5567C0-50C8-4F1F-9352-E27529B777FC}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{2E5567C0-50C8-4F1F-9352-E27529B777FC}.Debug|x64.ActiveCfg = Debug|Any CPU
|
||||
{2E5567C0-50C8-4F1F-9352-E27529B777FC}.Debug|x64.Build.0 = Debug|Any CPU
|
||||
{2E5567C0-50C8-4F1F-9352-E27529B777FC}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{2E5567C0-50C8-4F1F-9352-E27529B777FC}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{2E5567C0-50C8-4F1F-9352-E27529B777FC}.Release|x64.ActiveCfg = Release|x64
|
||||
{2E5567C0-50C8-4F1F-9352-E27529B777FC}.Release|x64.Build.0 = Release|x64
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
|
|
Reference in a new issue