Skip to content

Commit 10f4ded

Browse files
author
ohumeniuk
committed
x64 build configuration
1 parent 4e297d2 commit 10f4ded

File tree

7 files changed

+135
-0
lines changed

7 files changed

+135
-0
lines changed

.gitignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,3 +66,14 @@ eFormAPI/Installation/MainInstaller/BuildedCustomActions/CustomActions.dll
6666
eFormAPI/Installation/MainInstaller/BuildedCustomActions/Microsoft.Deployment.WindowsInstaller.dll
6767
eFormAPI/Installation/MainInstaller/BuildedCustomActions/Microsoft.Deployment.WindowsInstaller.xml
6868
eFormAPI/Installation/MainInstaller/BuildedCustomActions/Microsoft.Web.Administration.dll
69+
eFormAPI/Installation/AllowMultipleVersions/bin/x64/Release/AllowMultipleVersions.exe
70+
eFormAPI/Installation/AllowMultipleVersions/bin/x64/Release/AllowMultipleVersions.exe.config
71+
eFormAPI/Installation/AllowMultipleVersions/bin/x64/Release/Microsoft.Deployment.WindowsInstaller.dll
72+
eFormAPI/Installation/AllowMultipleVersionsBundle/Resources/Eform Angular Frontend.wixpdb
73+
eFormAPI/Installation/Bundle/2.bat
74+
eFormAPI/Installation/Bundle/log.log
75+
eFormAPI/Installation/CustomActions/bin/x64/Release/CustomActions.CA.dll
76+
eFormAPI/Installation/CustomActions/bin/x64/Release/CustomActions.dll
77+
eFormAPI/Installation/CustomActions/bin/x64/Release/Microsoft.Deployment.WindowsInstaller.dll
78+
eFormAPI/Installation/CustomActions/bin/x64/Release/Microsoft.Deployment.WindowsInstaller.xml
79+
eFormAPI/Installation/CustomActions/bin/x64/Release/Microsoft.Web.Administration.dll

eFormAPI/Installation/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>..\MainInstaller\BuildedCustomActions\</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>..\MainInstaller\BuildedCustomActions\</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/Installation/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/Installation/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>..\MainInstaller\BuildedCustomActions\</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>..\MainInstaller\BuildedCustomActions\</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/eFormAPI.Common/eFormAPI.Common.csproj

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,24 @@
2929
<ErrorReport>prompt</ErrorReport>
3030
<WarningLevel>4</WarningLevel>
3131
</PropertyGroup>
32+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
33+
<DebugSymbols>true</DebugSymbols>
34+
<OutputPath>bin\x64\Debug\</OutputPath>
35+
<DefineConstants>DEBUG;TRACE</DefineConstants>
36+
<DebugType>full</DebugType>
37+
<PlatformTarget>x64</PlatformTarget>
38+
<ErrorReport>prompt</ErrorReport>
39+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
40+
</PropertyGroup>
41+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
42+
<OutputPath>bin\x64\Release\</OutputPath>
43+
<DefineConstants>TRACE</DefineConstants>
44+
<Optimize>true</Optimize>
45+
<DebugType>pdbonly</DebugType>
46+
<PlatformTarget>x64</PlatformTarget>
47+
<ErrorReport>prompt</ErrorReport>
48+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
49+
</PropertyGroup>
3250
<ItemGroup>
3351
<Reference Include="AWSSDK.Core, Version=3.3.0.0, Culture=neutral, PublicKeyToken=885c28607f98e604">
3452
<HintPath>..\packages\Microting.eForm.1.6.3.5\lib\AWSSDK.Core.dll</HintPath>

eFormAPI/eFormAPI.sln

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,59 +33,86 @@ EndProject
3333
Global
3434
GlobalSection(SolutionConfigurationPlatforms) = preSolution
3535
Debug|Any CPU = Debug|Any CPU
36+
Debug|x64 = Debug|x64
3637
Debug|x86 = Debug|x86
3738
Release|Any CPU = Release|Any CPU
39+
Release|x64 = Release|x64
3840
Release|x86 = Release|x86
3941
EndGlobalSection
4042
GlobalSection(ProjectConfigurationPlatforms) = postSolution
4143
{54404CF9-A407-4F55-BC26-B243099E29A8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
44+
{54404CF9-A407-4F55-BC26-B243099E29A8}.Debug|x64.ActiveCfg = Debug|x64
45+
{54404CF9-A407-4F55-BC26-B243099E29A8}.Debug|x64.Build.0 = Debug|x64
4246
{54404CF9-A407-4F55-BC26-B243099E29A8}.Debug|x86.ActiveCfg = Debug|Any CPU
4347
{54404CF9-A407-4F55-BC26-B243099E29A8}.Debug|x86.Build.0 = Debug|Any CPU
4448
{54404CF9-A407-4F55-BC26-B243099E29A8}.Release|Any CPU.ActiveCfg = Release|Any CPU
4549
{54404CF9-A407-4F55-BC26-B243099E29A8}.Release|Any CPU.Build.0 = Release|Any CPU
50+
{54404CF9-A407-4F55-BC26-B243099E29A8}.Release|x64.ActiveCfg = Release|x64
51+
{54404CF9-A407-4F55-BC26-B243099E29A8}.Release|x64.Build.0 = Release|x64
4652
{54404CF9-A407-4F55-BC26-B243099E29A8}.Release|x86.ActiveCfg = Release|Any CPU
4753
{54404CF9-A407-4F55-BC26-B243099E29A8}.Release|x86.Build.0 = Release|Any CPU
4854
{515EE205-5349-449E-BE13-F83DA5B601B9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
55+
{515EE205-5349-449E-BE13-F83DA5B601B9}.Debug|x64.ActiveCfg = Debug|x64
56+
{515EE205-5349-449E-BE13-F83DA5B601B9}.Debug|x64.Build.0 = Debug|x64
4957
{515EE205-5349-449E-BE13-F83DA5B601B9}.Debug|x86.ActiveCfg = Debug|Any CPU
5058
{515EE205-5349-449E-BE13-F83DA5B601B9}.Debug|x86.Build.0 = Debug|Any CPU
5159
{515EE205-5349-449E-BE13-F83DA5B601B9}.Release|Any CPU.ActiveCfg = Release|Any CPU
5260
{515EE205-5349-449E-BE13-F83DA5B601B9}.Release|Any CPU.Build.0 = Release|Any CPU
61+
{515EE205-5349-449E-BE13-F83DA5B601B9}.Release|x64.ActiveCfg = Release|x64
62+
{515EE205-5349-449E-BE13-F83DA5B601B9}.Release|x64.Build.0 = Release|x64
5363
{515EE205-5349-449E-BE13-F83DA5B601B9}.Release|x86.ActiveCfg = Release|Any CPU
5464
{515EE205-5349-449E-BE13-F83DA5B601B9}.Release|x86.Build.0 = Release|Any CPU
5565
{768280FF-C359-4E58-8B5C-1F682B41CC24}.Debug|Any CPU.ActiveCfg = Debug|x86
5666
{768280FF-C359-4E58-8B5C-1F682B41CC24}.Debug|Any CPU.Build.0 = Debug|x86
67+
{768280FF-C359-4E58-8B5C-1F682B41CC24}.Debug|x64.ActiveCfg = Debug|x64
5768
{768280FF-C359-4E58-8B5C-1F682B41CC24}.Debug|x86.ActiveCfg = Debug|x86
5869
{768280FF-C359-4E58-8B5C-1F682B41CC24}.Debug|x86.Build.0 = Debug|x86
5970
{768280FF-C359-4E58-8B5C-1F682B41CC24}.Release|Any CPU.ActiveCfg = Release|x86
71+
{768280FF-C359-4E58-8B5C-1F682B41CC24}.Release|x64.ActiveCfg = Release|x64
72+
{768280FF-C359-4E58-8B5C-1F682B41CC24}.Release|x64.Build.0 = Release|x64
6073
{768280FF-C359-4E58-8B5C-1F682B41CC24}.Release|x86.ActiveCfg = Release|x86
6174
{768280FF-C359-4E58-8B5C-1F682B41CC24}.Release|x86.Build.0 = Release|x86
6275
{B63F5F50-AA5B-4BC2-AC61-B2A94B62C042}.Debug|Any CPU.ActiveCfg = Debug|x86
76+
{B63F5F50-AA5B-4BC2-AC61-B2A94B62C042}.Debug|x64.ActiveCfg = Debug|x86
6377
{B63F5F50-AA5B-4BC2-AC61-B2A94B62C042}.Debug|x86.ActiveCfg = Debug|x86
6478
{B63F5F50-AA5B-4BC2-AC61-B2A94B62C042}.Debug|x86.Build.0 = Debug|x86
6579
{B63F5F50-AA5B-4BC2-AC61-B2A94B62C042}.Release|Any CPU.ActiveCfg = Release|x86
80+
{B63F5F50-AA5B-4BC2-AC61-B2A94B62C042}.Release|x64.ActiveCfg = Release|x86
81+
{B63F5F50-AA5B-4BC2-AC61-B2A94B62C042}.Release|x64.Build.0 = Release|x86
6682
{B63F5F50-AA5B-4BC2-AC61-B2A94B62C042}.Release|x86.ActiveCfg = Release|x86
6783
{B63F5F50-AA5B-4BC2-AC61-B2A94B62C042}.Release|x86.Build.0 = Release|x86
6884
{2B339DEF-FB4F-4987-A361-8B95410C438B}.Debug|Any CPU.ActiveCfg = Debug|x86
6985
{2B339DEF-FB4F-4987-A361-8B95410C438B}.Debug|Any CPU.Build.0 = Debug|x86
86+
{2B339DEF-FB4F-4987-A361-8B95410C438B}.Debug|x64.ActiveCfg = Debug|x86
7087
{2B339DEF-FB4F-4987-A361-8B95410C438B}.Debug|x86.ActiveCfg = Debug|x86
7188
{2B339DEF-FB4F-4987-A361-8B95410C438B}.Debug|x86.Build.0 = Debug|x86
7289
{2B339DEF-FB4F-4987-A361-8B95410C438B}.Release|Any CPU.ActiveCfg = Release|x86
90+
{2B339DEF-FB4F-4987-A361-8B95410C438B}.Release|x64.ActiveCfg = Release|x86
91+
{2B339DEF-FB4F-4987-A361-8B95410C438B}.Release|x64.Build.0 = Release|x86
7392
{2B339DEF-FB4F-4987-A361-8B95410C438B}.Release|x86.ActiveCfg = Release|x86
7493
{2B339DEF-FB4F-4987-A361-8B95410C438B}.Release|x86.Build.0 = Release|x86
7594
{2B167169-F122-4F1F-9881-0DC8C07585B8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
7695
{2B167169-F122-4F1F-9881-0DC8C07585B8}.Debug|Any CPU.Build.0 = Debug|Any CPU
96+
{2B167169-F122-4F1F-9881-0DC8C07585B8}.Debug|x64.ActiveCfg = Debug|x64
97+
{2B167169-F122-4F1F-9881-0DC8C07585B8}.Debug|x64.Build.0 = Debug|x64
7798
{2B167169-F122-4F1F-9881-0DC8C07585B8}.Debug|x86.ActiveCfg = Debug|Any CPU
7899
{2B167169-F122-4F1F-9881-0DC8C07585B8}.Debug|x86.Build.0 = Debug|Any CPU
79100
{2B167169-F122-4F1F-9881-0DC8C07585B8}.Release|Any CPU.ActiveCfg = Release|Any CPU
80101
{2B167169-F122-4F1F-9881-0DC8C07585B8}.Release|Any CPU.Build.0 = Release|Any CPU
102+
{2B167169-F122-4F1F-9881-0DC8C07585B8}.Release|x64.ActiveCfg = Release|x64
103+
{2B167169-F122-4F1F-9881-0DC8C07585B8}.Release|x64.Build.0 = Release|x64
81104
{2B167169-F122-4F1F-9881-0DC8C07585B8}.Release|x86.ActiveCfg = Release|Any CPU
82105
{2B167169-F122-4F1F-9881-0DC8C07585B8}.Release|x86.Build.0 = Release|Any CPU
83106
{FF3054DF-B9E9-49A9-9BCE-384C2E657262}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
84107
{FF3054DF-B9E9-49A9-9BCE-384C2E657262}.Debug|Any CPU.Build.0 = Debug|Any CPU
108+
{FF3054DF-B9E9-49A9-9BCE-384C2E657262}.Debug|x64.ActiveCfg = Debug|x64
109+
{FF3054DF-B9E9-49A9-9BCE-384C2E657262}.Debug|x64.Build.0 = Debug|x64
85110
{FF3054DF-B9E9-49A9-9BCE-384C2E657262}.Debug|x86.ActiveCfg = Debug|Any CPU
86111
{FF3054DF-B9E9-49A9-9BCE-384C2E657262}.Debug|x86.Build.0 = Debug|Any CPU
87112
{FF3054DF-B9E9-49A9-9BCE-384C2E657262}.Release|Any CPU.ActiveCfg = Release|Any CPU
88113
{FF3054DF-B9E9-49A9-9BCE-384C2E657262}.Release|Any CPU.Build.0 = Release|Any CPU
114+
{FF3054DF-B9E9-49A9-9BCE-384C2E657262}.Release|x64.ActiveCfg = Release|x64
115+
{FF3054DF-B9E9-49A9-9BCE-384C2E657262}.Release|x64.Build.0 = Release|x64
89116
{FF3054DF-B9E9-49A9-9BCE-384C2E657262}.Release|x86.ActiveCfg = Release|Any CPU
90117
{FF3054DF-B9E9-49A9-9BCE-384C2E657262}.Release|x86.Build.0 = Release|Any CPU
91118
EndGlobalSection

eFormAPI/eFormAPI/eFormAPI.Web.csproj

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -327,6 +327,27 @@
327327
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
328328
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
329329
</PropertyGroup>
330+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
331+
<DebugSymbols>true</DebugSymbols>
332+
<OutputPath>bin\</OutputPath>
333+
<DefineConstants>DEBUG;TRACE</DefineConstants>
334+
<DocumentationFile>bin\API.docs.xml</DocumentationFile>
335+
<NoWarn>1591;</NoWarn>
336+
<DebugType>full</DebugType>
337+
<PlatformTarget>x64</PlatformTarget>
338+
<ErrorReport>prompt</ErrorReport>
339+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
340+
</PropertyGroup>
341+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
342+
<DebugSymbols>true</DebugSymbols>
343+
<OutputPath>bin\</OutputPath>
344+
<DefineConstants>TRACE</DefineConstants>
345+
<Optimize>true</Optimize>
346+
<DebugType>pdbonly</DebugType>
347+
<PlatformTarget>x64</PlatformTarget>
348+
<ErrorReport>prompt</ErrorReport>
349+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
350+
</PropertyGroup>
330351
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
331352
<!-- <Import Project="$(VSToolsPath)\WebApplications\Microsoft.WebApplication.targets" Condition="'$(VSToolsPath)' != ''" /> -->
332353
<!-- <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v14.0\WebApplications\Microsoft.WebApplication.targets" /> -->

0 commit comments

Comments
 (0)