Skip to content

Commit

Permalink
Correct Build Configs for Any CPU, x86, x64
Browse files Browse the repository at this point in the history
  • Loading branch information
Dirkster99 committed Dec 11, 2017
1 parent 5e3d81a commit 282fdf2
Show file tree
Hide file tree
Showing 8 changed files with 186 additions and 9 deletions.
18 changes: 18 additions & 0 deletions source/AvalonDock.MVVMTestApp/AvalonDock.MVVMTestApp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,24 @@
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x64\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x64</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</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>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
Expand Down
18 changes: 18 additions & 0 deletions source/AvalonDock.TestApp/AvalonDock.TestApp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,24 @@
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x64\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x64</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</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>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,24 @@
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x64\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x64</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</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>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
Expand Down
51 changes: 42 additions & 9 deletions source/AvalonDock.sln
Original file line number Diff line number Diff line change
Expand Up @@ -23,64 +23,97 @@ EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{339BC0D5-2A54-40ED-9850-7ED65182E6E1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{339BC0D5-2A54-40ED-9850-7ED65182E6E1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{339BC0D5-2A54-40ED-9850-7ED65182E6E1}.Debug|x64.ActiveCfg = Debug|x64
{339BC0D5-2A54-40ED-9850-7ED65182E6E1}.Debug|x64.Build.0 = Debug|x64
{339BC0D5-2A54-40ED-9850-7ED65182E6E1}.Debug|x86.ActiveCfg = Debug|x86
{339BC0D5-2A54-40ED-9850-7ED65182E6E1}.Debug|x86.Build.0 = Debug|x86
{339BC0D5-2A54-40ED-9850-7ED65182E6E1}.Release|Any CPU.ActiveCfg = Release|x86
{339BC0D5-2A54-40ED-9850-7ED65182E6E1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{339BC0D5-2A54-40ED-9850-7ED65182E6E1}.Release|Any CPU.Build.0 = Release|Any CPU
{339BC0D5-2A54-40ED-9850-7ED65182E6E1}.Release|x64.ActiveCfg = Release|x64
{339BC0D5-2A54-40ED-9850-7ED65182E6E1}.Release|x64.Build.0 = Release|x64
{339BC0D5-2A54-40ED-9850-7ED65182E6E1}.Release|x86.ActiveCfg = Release|x86
{339BC0D5-2A54-40ED-9850-7ED65182E6E1}.Release|x86.Build.0 = Release|x86
{AFD48591-D66C-47F3-86E7-ACE5AD3D4FE4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{AFD48591-D66C-47F3-86E7-ACE5AD3D4FE4}.Debug|Any CPU.Build.0 = Debug|Any CPU
{AFD48591-D66C-47F3-86E7-ACE5AD3D4FE4}.Debug|x64.ActiveCfg = Debug|x64
{AFD48591-D66C-47F3-86E7-ACE5AD3D4FE4}.Debug|x64.Build.0 = Debug|x64
{AFD48591-D66C-47F3-86E7-ACE5AD3D4FE4}.Debug|x86.ActiveCfg = Debug|x86
{AFD48591-D66C-47F3-86E7-ACE5AD3D4FE4}.Debug|x86.Build.0 = Debug|x86
{AFD48591-D66C-47F3-86E7-ACE5AD3D4FE4}.Release|Any CPU.ActiveCfg = Release|x86
{AFD48591-D66C-47F3-86E7-ACE5AD3D4FE4}.Release|Any CPU.ActiveCfg = Release|Any CPU
{AFD48591-D66C-47F3-86E7-ACE5AD3D4FE4}.Release|Any CPU.Build.0 = Release|Any CPU
{AFD48591-D66C-47F3-86E7-ACE5AD3D4FE4}.Release|x64.ActiveCfg = Release|x64
{AFD48591-D66C-47F3-86E7-ACE5AD3D4FE4}.Release|x64.Build.0 = Release|x64
{AFD48591-D66C-47F3-86E7-ACE5AD3D4FE4}.Release|x86.ActiveCfg = Release|x86
{AFD48591-D66C-47F3-86E7-ACE5AD3D4FE4}.Release|x86.Build.0 = Release|x86
{AB95D11D-7239-4F3D-88FB-278B7C8EB6DF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{AB95D11D-7239-4F3D-88FB-278B7C8EB6DF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{AB95D11D-7239-4F3D-88FB-278B7C8EB6DF}.Debug|x64.ActiveCfg = Debug|x64
{AB95D11D-7239-4F3D-88FB-278B7C8EB6DF}.Debug|x64.Build.0 = Debug|x64
{AB95D11D-7239-4F3D-88FB-278B7C8EB6DF}.Debug|x86.ActiveCfg = Debug|x86
{AB95D11D-7239-4F3D-88FB-278B7C8EB6DF}.Debug|x86.Build.0 = Debug|x86
{AB95D11D-7239-4F3D-88FB-278B7C8EB6DF}.Release|Any CPU.ActiveCfg = Release|x86
{AB95D11D-7239-4F3D-88FB-278B7C8EB6DF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{AB95D11D-7239-4F3D-88FB-278B7C8EB6DF}.Release|Any CPU.Build.0 = Release|Any CPU
{AB95D11D-7239-4F3D-88FB-278B7C8EB6DF}.Release|x64.ActiveCfg = Release|x64
{AB95D11D-7239-4F3D-88FB-278B7C8EB6DF}.Release|x64.Build.0 = Release|x64
{AB95D11D-7239-4F3D-88FB-278B7C8EB6DF}.Release|x86.ActiveCfg = Release|x86
{AB95D11D-7239-4F3D-88FB-278B7C8EB6DF}.Release|x86.Build.0 = Release|x86
{DB81988F-E0F2-45A0-A1FD-8C37F3D35244}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DB81988F-E0F2-45A0-A1FD-8C37F3D35244}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DB81988F-E0F2-45A0-A1FD-8C37F3D35244}.Debug|x64.ActiveCfg = Debug|x64
{DB81988F-E0F2-45A0-A1FD-8C37F3D35244}.Debug|x64.Build.0 = Debug|x64
{DB81988F-E0F2-45A0-A1FD-8C37F3D35244}.Debug|x86.ActiveCfg = Debug|Any CPU
{DB81988F-E0F2-45A0-A1FD-8C37F3D35244}.Debug|x86.Build.0 = Debug|Any CPU
{DB81988F-E0F2-45A0-A1FD-8C37F3D35244}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DB81988F-E0F2-45A0-A1FD-8C37F3D35244}.Release|Any CPU.Build.0 = Release|Any CPU
{DB81988F-E0F2-45A0-A1FD-8C37F3D35244}.Release|x86.ActiveCfg = Release|Any CPU
{DB81988F-E0F2-45A0-A1FD-8C37F3D35244}.Release|x86.Build.0 = Release|Any CPU
{DB81988F-E0F2-45A0-A1FD-8C37F3D35244}.Release|x64.ActiveCfg = Release|x64
{DB81988F-E0F2-45A0-A1FD-8C37F3D35244}.Release|x64.Build.0 = Release|x64
{DB81988F-E0F2-45A0-A1FD-8C37F3D35244}.Release|x86.ActiveCfg = Release|x86
{DB81988F-E0F2-45A0-A1FD-8C37F3D35244}.Release|x86.Build.0 = Release|x86
{488DD8F7-9D3C-4F53-BD1F-84A095D9BC10}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{488DD8F7-9D3C-4F53-BD1F-84A095D9BC10}.Debug|Any CPU.Build.0 = Debug|Any CPU
{488DD8F7-9D3C-4F53-BD1F-84A095D9BC10}.Debug|x64.ActiveCfg = Debug|x64
{488DD8F7-9D3C-4F53-BD1F-84A095D9BC10}.Debug|x64.Build.0 = Debug|x64
{488DD8F7-9D3C-4F53-BD1F-84A095D9BC10}.Debug|x86.ActiveCfg = Debug|x86
{488DD8F7-9D3C-4F53-BD1F-84A095D9BC10}.Debug|x86.Build.0 = Debug|x86
{488DD8F7-9D3C-4F53-BD1F-84A095D9BC10}.Release|Any CPU.ActiveCfg = Release|Any CPU
{488DD8F7-9D3C-4F53-BD1F-84A095D9BC10}.Release|Any CPU.Build.0 = Release|Any CPU
{488DD8F7-9D3C-4F53-BD1F-84A095D9BC10}.Release|x64.ActiveCfg = Release|x64
{488DD8F7-9D3C-4F53-BD1F-84A095D9BC10}.Release|x64.Build.0 = Release|x64
{488DD8F7-9D3C-4F53-BD1F-84A095D9BC10}.Release|x86.ActiveCfg = Release|x86
{488DD8F7-9D3C-4F53-BD1F-84A095D9BC10}.Release|x86.Build.0 = Release|x86
{89286EB4-B4A1-418C-839A-067B00F442D8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{89286EB4-B4A1-418C-839A-067B00F442D8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{89286EB4-B4A1-418C-839A-067B00F442D8}.Debug|x64.ActiveCfg = Debug|x64
{89286EB4-B4A1-418C-839A-067B00F442D8}.Debug|x64.Build.0 = Debug|x64
{89286EB4-B4A1-418C-839A-067B00F442D8}.Debug|x86.ActiveCfg = Debug|x64
{89286EB4-B4A1-418C-839A-067B00F442D8}.Debug|x86.Build.0 = Debug|x64
{89286EB4-B4A1-418C-839A-067B00F442D8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{89286EB4-B4A1-418C-839A-067B00F442D8}.Release|Any CPU.Build.0 = Release|Any CPU
{89286EB4-B4A1-418C-839A-067B00F442D8}.Release|x86.ActiveCfg = Release|Any CPU
{89286EB4-B4A1-418C-839A-067B00F442D8}.Release|x86.Build.0 = Release|Any CPU
{89286EB4-B4A1-418C-839A-067B00F442D8}.Release|x64.ActiveCfg = Release|x64
{89286EB4-B4A1-418C-839A-067B00F442D8}.Release|x64.Build.0 = Release|x64
{89286EB4-B4A1-418C-839A-067B00F442D8}.Release|x86.ActiveCfg = Release|x86
{89286EB4-B4A1-418C-839A-067B00F442D8}.Release|x86.Build.0 = Release|x86
{BD7EEE0E-9432-4E76-BD82-793358E56BDF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BD7EEE0E-9432-4E76-BD82-793358E56BDF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BD7EEE0E-9432-4E76-BD82-793358E56BDF}.Debug|x64.ActiveCfg = Debug|x64
{BD7EEE0E-9432-4E76-BD82-793358E56BDF}.Debug|x64.Build.0 = Debug|x64
{BD7EEE0E-9432-4E76-BD82-793358E56BDF}.Debug|x86.ActiveCfg = Debug|x64
{BD7EEE0E-9432-4E76-BD82-793358E56BDF}.Debug|x86.Build.0 = Debug|x64
{BD7EEE0E-9432-4E76-BD82-793358E56BDF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BD7EEE0E-9432-4E76-BD82-793358E56BDF}.Release|Any CPU.Build.0 = Release|Any CPU
{BD7EEE0E-9432-4E76-BD82-793358E56BDF}.Release|x86.ActiveCfg = Release|Any CPU
{BD7EEE0E-9432-4E76-BD82-793358E56BDF}.Release|x86.Build.0 = Release|Any CPU
{BD7EEE0E-9432-4E76-BD82-793358E56BDF}.Release|x64.ActiveCfg = Release|x64
{BD7EEE0E-9432-4E76-BD82-793358E56BDF}.Release|x64.Build.0 = Release|x64
{BD7EEE0E-9432-4E76-BD82-793358E56BDF}.Release|x86.ActiveCfg = Release|x86
{BD7EEE0E-9432-4E76-BD82-793358E56BDF}.Release|x86.Build.0 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,24 @@
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>ManagedMinimumRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x64\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x64</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</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>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,24 @@
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</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.Data" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,24 @@
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</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.Data" />
Expand Down
36 changes: 36 additions & 0 deletions source/Components/Xceed.Wpf.AvalonDock/Xceed.Wpf.AvalonDock.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,42 @@
<AssemblyOriginatorKeyFile>
</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x86\Debug\</OutputPath>
<DefineConstants>DEBUG</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>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x64\Debug\</OutputPath>
<DefineConstants>DEBUG</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x64</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</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>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
Expand Down

0 comments on commit 282fdf2

Please sign in to comment.