Skip to content

Commit a9eb728

Browse files
committed
Removing the x86 and AnyCPU platforms.
1 parent d8696a3 commit a9eb728

File tree

7 files changed

+138
-54
lines changed

7 files changed

+138
-54
lines changed

eFormAPI/AllowMultipleVersions/AllowMultipleVersions.csproj

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,26 @@
3232
<ErrorReport>prompt</ErrorReport>
3333
<WarningLevel>4</WarningLevel>
3434
</PropertyGroup>
35+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
36+
<DebugSymbols>true</DebugSymbols>
37+
<OutputPath>bin\x64\Debug\</OutputPath>
38+
<DefineConstants>DEBUG;TRACE</DefineConstants>
39+
<DebugType>full</DebugType>
40+
<PlatformTarget>x64</PlatformTarget>
41+
<ErrorReport>prompt</ErrorReport>
42+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
43+
<Prefer32Bit>true</Prefer32Bit>
44+
</PropertyGroup>
45+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
46+
<OutputPath>bin\x64\Release\</OutputPath>
47+
<DefineConstants>TRACE</DefineConstants>
48+
<Optimize>true</Optimize>
49+
<DebugType>pdbonly</DebugType>
50+
<PlatformTarget>x64</PlatformTarget>
51+
<ErrorReport>prompt</ErrorReport>
52+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
53+
<Prefer32Bit>true</Prefer32Bit>
54+
</PropertyGroup>
3555
<ItemGroup>
3656
<Reference Include="Microsoft.Deployment.WindowsInstaller, Version=3.0.0.0, Culture=neutral, PublicKeyToken=ce35f76fcda82bad, processorArchitecture=MSIL">
3757
<SpecificVersion>False</SpecificVersion>

eFormAPI/AllowMultipleVersionsBundle/AllowMultipleVersionsBundle.csproj

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,26 @@
3737
<PropertyGroup>
3838
<ApplicationManifest>app.manifest</ApplicationManifest>
3939
</PropertyGroup>
40+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
41+
<DebugSymbols>true</DebugSymbols>
42+
<OutputPath>bin\x64\Debug\</OutputPath>
43+
<DefineConstants>DEBUG;TRACE</DefineConstants>
44+
<DebugType>full</DebugType>
45+
<PlatformTarget>x64</PlatformTarget>
46+
<ErrorReport>prompt</ErrorReport>
47+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
48+
<Prefer32Bit>true</Prefer32Bit>
49+
</PropertyGroup>
50+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
51+
<OutputPath>bin\x64\Release\</OutputPath>
52+
<DefineConstants>TRACE</DefineConstants>
53+
<Optimize>true</Optimize>
54+
<DebugType>pdbonly</DebugType>
55+
<PlatformTarget>x64</PlatformTarget>
56+
<ErrorReport>prompt</ErrorReport>
57+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
58+
<Prefer32Bit>true</Prefer32Bit>
59+
</PropertyGroup>
4060
<ItemGroup>
4161
<Reference Include="System" />
4262
<Reference Include="System.Core" />

eFormAPI/CustomActions/CustomActions.csproj

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,24 @@
3131
<ErrorReport>prompt</ErrorReport>
3232
<WarningLevel>4</WarningLevel>
3333
</PropertyGroup>
34+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
35+
<DebugSymbols>true</DebugSymbols>
36+
<OutputPath>bin\x64\Debug\</OutputPath>
37+
<DefineConstants>DEBUG;TRACE</DefineConstants>
38+
<DebugType>full</DebugType>
39+
<PlatformTarget>x64</PlatformTarget>
40+
<ErrorReport>prompt</ErrorReport>
41+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
42+
</PropertyGroup>
43+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
44+
<OutputPath>bin\x64\Release\</OutputPath>
45+
<DefineConstants>TRACE</DefineConstants>
46+
<Optimize>true</Optimize>
47+
<DebugType>pdbonly</DebugType>
48+
<PlatformTarget>x64</PlatformTarget>
49+
<ErrorReport>prompt</ErrorReport>
50+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
51+
</PropertyGroup>
3452
<ItemGroup>
3553
<Reference Include="Microsoft.Web.Administration, Version=7.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" />
3654
<Reference Include="System" />

eFormAPI/MainInstaller/MainInstaller.wixproj

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,19 @@
6363
<PropertyGroup>
6464
<PostBuildEvent>"$(ProjectDir)BuildedCustomActions\AllowMultipleVersions.exe" "$(TargetPath)"</PostBuildEvent>
6565
</PropertyGroup>
66+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
67+
<DefineConstants>Debug</DefineConstants>
68+
<SuppressAllWarnings>False</SuppressAllWarnings>
69+
<SuppressValidation>True</SuppressValidation>
70+
<Pedantic>True</Pedantic>
71+
<OutputPath>bin\$(Platform)\$(Configuration)\</OutputPath>
72+
<IntermediateOutputPath>obj\$(Platform)\$(Configuration)\</IntermediateOutputPath>
73+
</PropertyGroup>
74+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
75+
<SuppressValidation>true</SuppressValidation>
76+
<OutputPath>bin\$(Platform)\$(Configuration)\</OutputPath>
77+
<IntermediateOutputPath>obj\$(Platform)\$(Configuration)\</IntermediateOutputPath>
78+
</PropertyGroup>
6679
<!--
6780
To modify your build process, add your task inside one of the targets below and uncomment it.
6881
Other similar extension points exist, see Wix.targets.

eFormAPI/eFormAPI.Common/eFormAPI.Common.csproj

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
<DefineConstants>DEBUG;TRACE</DefineConstants>
2121
<ErrorReport>prompt</ErrorReport>
2222
<WarningLevel>4</WarningLevel>
23+
<PlatformTarget>x64</PlatformTarget>
2324
</PropertyGroup>
2425
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2526
<DebugType>pdbonly</DebugType>
@@ -29,6 +30,24 @@
2930
<ErrorReport>prompt</ErrorReport>
3031
<WarningLevel>4</WarningLevel>
3132
</PropertyGroup>
33+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
34+
<DebugSymbols>true</DebugSymbols>
35+
<OutputPath>bin\x64\Debug\</OutputPath>
36+
<DefineConstants>DEBUG;TRACE</DefineConstants>
37+
<DebugType>full</DebugType>
38+
<PlatformTarget>x64</PlatformTarget>
39+
<ErrorReport>prompt</ErrorReport>
40+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
41+
</PropertyGroup>
42+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
43+
<OutputPath>bin\x64\Release\</OutputPath>
44+
<DefineConstants>TRACE</DefineConstants>
45+
<Optimize>true</Optimize>
46+
<DebugType>pdbonly</DebugType>
47+
<PlatformTarget>x64</PlatformTarget>
48+
<ErrorReport>prompt</ErrorReport>
49+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
50+
</PropertyGroup>
3251
<ItemGroup>
3352
<Reference Include="AWSSDK.Core, Version=3.3.0.0, Culture=neutral, PublicKeyToken=885c28607f98e604">
3453
<HintPath>..\packages\Microting.eForm.1.6.3.5\lib\AWSSDK.Core.dll</HintPath>

eFormAPI/eFormAPI.sln

Lines changed: 26 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -24,62 +24,34 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AllowMultipleVersionsBundle
2424
EndProject
2525
Global
2626
GlobalSection(SolutionConfigurationPlatforms) = preSolution
27-
Debug|Any CPU = Debug|Any CPU
28-
Debug|x86 = Debug|x86
29-
Release|Any CPU = Release|Any CPU
30-
Release|x86 = Release|x86
27+
Debug|x64 = Debug|x64
28+
Release|x64 = Release|x64
3129
EndGlobalSection
3230
GlobalSection(ProjectConfigurationPlatforms) = postSolution
33-
{54404CF9-A407-4F55-BC26-B243099E29A8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
34-
{54404CF9-A407-4F55-BC26-B243099E29A8}.Debug|x86.ActiveCfg = Debug|Any CPU
35-
{54404CF9-A407-4F55-BC26-B243099E29A8}.Debug|x86.Build.0 = Debug|Any CPU
36-
{54404CF9-A407-4F55-BC26-B243099E29A8}.Release|Any CPU.ActiveCfg = Release|Any CPU
37-
{54404CF9-A407-4F55-BC26-B243099E29A8}.Release|Any CPU.Build.0 = Release|Any CPU
38-
{54404CF9-A407-4F55-BC26-B243099E29A8}.Release|x86.ActiveCfg = Release|Any CPU
39-
{54404CF9-A407-4F55-BC26-B243099E29A8}.Release|x86.Build.0 = Release|Any CPU
40-
{515EE205-5349-449E-BE13-F83DA5B601B9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
41-
{515EE205-5349-449E-BE13-F83DA5B601B9}.Debug|x86.ActiveCfg = Debug|Any CPU
42-
{515EE205-5349-449E-BE13-F83DA5B601B9}.Debug|x86.Build.0 = Debug|Any CPU
43-
{515EE205-5349-449E-BE13-F83DA5B601B9}.Release|Any CPU.ActiveCfg = Release|Any CPU
44-
{515EE205-5349-449E-BE13-F83DA5B601B9}.Release|Any CPU.Build.0 = Release|Any CPU
45-
{515EE205-5349-449E-BE13-F83DA5B601B9}.Release|x86.ActiveCfg = Release|Any CPU
46-
{515EE205-5349-449E-BE13-F83DA5B601B9}.Release|x86.Build.0 = Release|Any CPU
47-
{768280FF-C359-4E58-8B5C-1F682B41CC24}.Debug|Any CPU.ActiveCfg = Debug|x86
48-
{768280FF-C359-4E58-8B5C-1F682B41CC24}.Debug|Any CPU.Build.0 = Debug|x86
49-
{768280FF-C359-4E58-8B5C-1F682B41CC24}.Debug|x86.ActiveCfg = Debug|x86
50-
{768280FF-C359-4E58-8B5C-1F682B41CC24}.Debug|x86.Build.0 = Debug|x86
51-
{768280FF-C359-4E58-8B5C-1F682B41CC24}.Release|Any CPU.ActiveCfg = Release|x86
52-
{768280FF-C359-4E58-8B5C-1F682B41CC24}.Release|x86.ActiveCfg = Release|x86
53-
{768280FF-C359-4E58-8B5C-1F682B41CC24}.Release|x86.Build.0 = Release|x86
54-
{B63F5F50-AA5B-4BC2-AC61-B2A94B62C042}.Debug|Any CPU.ActiveCfg = Debug|x86
55-
{B63F5F50-AA5B-4BC2-AC61-B2A94B62C042}.Debug|x86.ActiveCfg = Debug|x86
56-
{B63F5F50-AA5B-4BC2-AC61-B2A94B62C042}.Debug|x86.Build.0 = Debug|x86
57-
{B63F5F50-AA5B-4BC2-AC61-B2A94B62C042}.Release|Any CPU.ActiveCfg = Release|x86
58-
{B63F5F50-AA5B-4BC2-AC61-B2A94B62C042}.Release|x86.ActiveCfg = Release|x86
59-
{B63F5F50-AA5B-4BC2-AC61-B2A94B62C042}.Release|x86.Build.0 = Release|x86
60-
{2B339DEF-FB4F-4987-A361-8B95410C438B}.Debug|Any CPU.ActiveCfg = Debug|x86
61-
{2B339DEF-FB4F-4987-A361-8B95410C438B}.Debug|Any CPU.Build.0 = Debug|x86
62-
{2B339DEF-FB4F-4987-A361-8B95410C438B}.Debug|x86.ActiveCfg = Debug|x86
63-
{2B339DEF-FB4F-4987-A361-8B95410C438B}.Debug|x86.Build.0 = Debug|x86
64-
{2B339DEF-FB4F-4987-A361-8B95410C438B}.Release|Any CPU.ActiveCfg = Release|x86
65-
{2B339DEF-FB4F-4987-A361-8B95410C438B}.Release|x86.ActiveCfg = Release|x86
66-
{2B339DEF-FB4F-4987-A361-8B95410C438B}.Release|x86.Build.0 = Release|x86
67-
{2B167169-F122-4F1F-9881-0DC8C07585B8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
68-
{2B167169-F122-4F1F-9881-0DC8C07585B8}.Debug|Any CPU.Build.0 = Debug|Any CPU
69-
{2B167169-F122-4F1F-9881-0DC8C07585B8}.Debug|x86.ActiveCfg = Debug|Any CPU
70-
{2B167169-F122-4F1F-9881-0DC8C07585B8}.Debug|x86.Build.0 = Debug|Any CPU
71-
{2B167169-F122-4F1F-9881-0DC8C07585B8}.Release|Any CPU.ActiveCfg = Release|Any CPU
72-
{2B167169-F122-4F1F-9881-0DC8C07585B8}.Release|Any CPU.Build.0 = Release|Any CPU
73-
{2B167169-F122-4F1F-9881-0DC8C07585B8}.Release|x86.ActiveCfg = Release|Any CPU
74-
{2B167169-F122-4F1F-9881-0DC8C07585B8}.Release|x86.Build.0 = Release|Any CPU
75-
{FF3054DF-B9E9-49A9-9BCE-384C2E657262}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
76-
{FF3054DF-B9E9-49A9-9BCE-384C2E657262}.Debug|Any CPU.Build.0 = Debug|Any CPU
77-
{FF3054DF-B9E9-49A9-9BCE-384C2E657262}.Debug|x86.ActiveCfg = Debug|Any CPU
78-
{FF3054DF-B9E9-49A9-9BCE-384C2E657262}.Debug|x86.Build.0 = Debug|Any CPU
79-
{FF3054DF-B9E9-49A9-9BCE-384C2E657262}.Release|Any CPU.ActiveCfg = Release|Any CPU
80-
{FF3054DF-B9E9-49A9-9BCE-384C2E657262}.Release|Any CPU.Build.0 = Release|Any CPU
81-
{FF3054DF-B9E9-49A9-9BCE-384C2E657262}.Release|x86.ActiveCfg = Release|Any CPU
82-
{FF3054DF-B9E9-49A9-9BCE-384C2E657262}.Release|x86.Build.0 = Release|Any CPU
31+
{54404CF9-A407-4F55-BC26-B243099E29A8}.Debug|x64.ActiveCfg = Debug|x64
32+
{54404CF9-A407-4F55-BC26-B243099E29A8}.Debug|x64.Build.0 = Debug|x64
33+
{54404CF9-A407-4F55-BC26-B243099E29A8}.Release|x64.ActiveCfg = Release|x64
34+
{54404CF9-A407-4F55-BC26-B243099E29A8}.Release|x64.Build.0 = Release|x64
35+
{515EE205-5349-449E-BE13-F83DA5B601B9}.Debug|x64.ActiveCfg = Debug|x64
36+
{515EE205-5349-449E-BE13-F83DA5B601B9}.Debug|x64.Build.0 = Debug|x64
37+
{515EE205-5349-449E-BE13-F83DA5B601B9}.Release|x64.ActiveCfg = Release|x64
38+
{515EE205-5349-449E-BE13-F83DA5B601B9}.Release|x64.Build.0 = Release|x64
39+
{768280FF-C359-4E58-8B5C-1F682B41CC24}.Debug|x64.ActiveCfg = Debug|x64
40+
{768280FF-C359-4E58-8B5C-1F682B41CC24}.Debug|x64.Build.0 = Debug|x64
41+
{768280FF-C359-4E58-8B5C-1F682B41CC24}.Release|x64.ActiveCfg = Release|x64
42+
{768280FF-C359-4E58-8B5C-1F682B41CC24}.Release|x64.Build.0 = Release|x64
43+
{B63F5F50-AA5B-4BC2-AC61-B2A94B62C042}.Debug|x64.ActiveCfg = Debug|x86
44+
{B63F5F50-AA5B-4BC2-AC61-B2A94B62C042}.Release|x64.ActiveCfg = Release|x86
45+
{2B339DEF-FB4F-4987-A361-8B95410C438B}.Debug|x64.ActiveCfg = Debug|x86
46+
{2B339DEF-FB4F-4987-A361-8B95410C438B}.Release|x64.ActiveCfg = Release|x86
47+
{2B167169-F122-4F1F-9881-0DC8C07585B8}.Debug|x64.ActiveCfg = Debug|x64
48+
{2B167169-F122-4F1F-9881-0DC8C07585B8}.Debug|x64.Build.0 = Debug|x64
49+
{2B167169-F122-4F1F-9881-0DC8C07585B8}.Release|x64.ActiveCfg = Release|x64
50+
{2B167169-F122-4F1F-9881-0DC8C07585B8}.Release|x64.Build.0 = Release|x64
51+
{FF3054DF-B9E9-49A9-9BCE-384C2E657262}.Debug|x64.ActiveCfg = Debug|x64
52+
{FF3054DF-B9E9-49A9-9BCE-384C2E657262}.Debug|x64.Build.0 = Debug|x64
53+
{FF3054DF-B9E9-49A9-9BCE-384C2E657262}.Release|x64.ActiveCfg = Release|x64
54+
{FF3054DF-B9E9-49A9-9BCE-384C2E657262}.Release|x64.Build.0 = Release|x64
8355
EndGlobalSection
8456
GlobalSection(SolutionProperties) = preSolution
8557
HideSolutionNode = FALSE

eFormAPI/eFormAPI/eFormAPI.Web.csproj

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
<WarningLevel>4</WarningLevel>
4242
<DocumentationFile>bin\API.docs.xml</DocumentationFile>
4343
<NoWarn>1591;</NoWarn>
44+
<PlatformTarget>x64</PlatformTarget>
4445
</PropertyGroup>
4546
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
4647
<DebugSymbols>true</DebugSymbols>
@@ -327,6 +328,27 @@
327328
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
328329
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
329330
</PropertyGroup>
331+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
332+
<DebugSymbols>true</DebugSymbols>
333+
<OutputPath>bin\</OutputPath>
334+
<DefineConstants>DEBUG;TRACE</DefineConstants>
335+
<DocumentationFile>bin\API.docs.xml</DocumentationFile>
336+
<NoWarn>1591;</NoWarn>
337+
<DebugType>full</DebugType>
338+
<PlatformTarget>x64</PlatformTarget>
339+
<ErrorReport>prompt</ErrorReport>
340+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
341+
</PropertyGroup>
342+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
343+
<DebugSymbols>true</DebugSymbols>
344+
<OutputPath>bin\</OutputPath>
345+
<DefineConstants>TRACE</DefineConstants>
346+
<Optimize>true</Optimize>
347+
<DebugType>pdbonly</DebugType>
348+
<PlatformTarget>x64</PlatformTarget>
349+
<ErrorReport>prompt</ErrorReport>
350+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
351+
</PropertyGroup>
330352
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
331353
<!-- <Import Project="$(VSToolsPath)\WebApplications\Microsoft.WebApplication.targets" Condition="'$(VSToolsPath)' != ''" /> -->
332354
<!-- <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v14.0\WebApplications\Microsoft.WebApplication.targets" /> -->

0 commit comments

Comments
 (0)