Skip to content

Commit 98f570b

Browse files
author
Pavel Kovalenko
committed
Remove 'Mixed platforms' and 'Any CPU' platforms.
1 parent f1b95cf commit 98f570b

File tree

3 files changed

+45
-1012
lines changed

3 files changed

+45
-1012
lines changed

src/editors/xrPostprocessEditor/xrPostprocessEditor.csproj

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -15,29 +15,28 @@
1515
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1616
<FileAlignment>512</FileAlignment>
1717
</PropertyGroup>
18-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
19-
<PlatformTarget>AnyCPU</PlatformTarget>
18+
<PropertyGroup>
19+
<NoWin32Manifest>true</NoWin32Manifest>
20+
</PropertyGroup>
21+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
2022
<DebugSymbols>true</DebugSymbols>
21-
<DebugType>full</DebugType>
22-
<Optimize>false</Optimize>
2323
<OutputPath>$(xrBinDir)</OutputPath>
2424
<IntermediateOutputPath>$(xrIntDir)$(AssemblyName)\</IntermediateOutputPath>
2525
<DefineConstants>DEBUG;TRACE</DefineConstants>
26+
<DebugType>full</DebugType>
27+
<PlatformTarget>x86</PlatformTarget>
2628
<ErrorReport>prompt</ErrorReport>
27-
<WarningLevel>4</WarningLevel>
29+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
2830
</PropertyGroup>
29-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
30-
<PlatformTarget>AnyCPU</PlatformTarget>
31-
<DebugType>pdbonly</DebugType>
32-
<Optimize>true</Optimize>
31+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
3332
<OutputPath>$(xrBinDir)</OutputPath>
3433
<IntermediateOutputPath>$(xrIntDir)$(AssemblyName)\</IntermediateOutputPath>
3534
<DefineConstants>TRACE</DefineConstants>
35+
<Optimize>true</Optimize>
36+
<DebugType>pdbonly</DebugType>
37+
<PlatformTarget>x86</PlatformTarget>
3638
<ErrorReport>prompt</ErrorReport>
37-
<WarningLevel>4</WarningLevel>
38-
</PropertyGroup>
39-
<PropertyGroup>
40-
<NoWin32Manifest>true</NoWin32Manifest>
39+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
4140
</PropertyGroup>
4241
<ItemGroup>
4342
<Reference Include="Flobbster.Windows.Forms.PropertyGrid, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null" />
@@ -94,7 +93,6 @@
9493
<DesignTimeSharedInput>True</DesignTimeSharedInput>
9594
</Compile>
9695
</ItemGroup>
97-
<ItemGroup />
9896
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
9997
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
10098
Other similar extension points exist, see Microsoft.Common.targets.

src/editors/xrSdkControls/xrSdkControls.csproj

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,24 +15,25 @@
1515
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1616
<FileAlignment>512</FileAlignment>
1717
</PropertyGroup>
18-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
18+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
1919
<DebugSymbols>true</DebugSymbols>
20-
<DebugType>full</DebugType>
21-
<Optimize>false</Optimize>
2220
<OutputPath>$(xrBinDir)</OutputPath>
2321
<IntermediateOutputPath>$(xrIntDir)$(AssemblyName)\</IntermediateOutputPath>
2422
<DefineConstants>DEBUG;TRACE</DefineConstants>
23+
<DebugType>full</DebugType>
24+
<PlatformTarget>x86</PlatformTarget>
2525
<ErrorReport>prompt</ErrorReport>
26-
<WarningLevel>4</WarningLevel>
26+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
2727
</PropertyGroup>
28-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
29-
<DebugType>pdbonly</DebugType>
30-
<Optimize>true</Optimize>
28+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
3129
<OutputPath>$(xrBinDir)</OutputPath>
3230
<IntermediateOutputPath>$(xrIntDir)$(AssemblyName)\</IntermediateOutputPath>
3331
<DefineConstants>TRACE</DefineConstants>
32+
<Optimize>true</Optimize>
33+
<DebugType>pdbonly</DebugType>
34+
<PlatformTarget>x86</PlatformTarget>
3435
<ErrorReport>prompt</ErrorReport>
35-
<WarningLevel>4</WarningLevel>
36+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
3637
</PropertyGroup>
3738
<ItemGroup>
3839
<Reference Include="Flobbster.Windows.Forms.PropertyGrid">

0 commit comments

Comments
 (0)