Skip to content

Commit 9643d50

Browse files
author
ohumeniuk
committed
2 parents 90bd28e + b5eebdc commit 9643d50

File tree

12 files changed

+54
-21
lines changed

12 files changed

+54
-21
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,10 @@ eFormAPI/Installation/AllowMultipleVersions/bin/x64/Release/AllowMultipleVersion
7070
eFormAPI/Installation/AllowMultipleVersions/bin/x64/Release/AllowMultipleVersions.exe.config
7171
eFormAPI/Installation/AllowMultipleVersions/bin/x64/Release/Microsoft.Deployment.WindowsInstaller.dll
7272
eFormAPI/Installation/AllowMultipleVersionsBundle/Resources/Eform Angular Frontend.wixpdb
73+
eFormAPI/Installation/AllowMultipleVersionsBundle/Resources/Eform Angular Frontend.exe
7374
eFormAPI/Installation/Bundle/2.bat
7475
eFormAPI/Installation/Bundle/log.log
76+
eFormAPI/Installation/Bundle/maininstaller.msi
7577
eFormAPI/Installation/CustomActions/bin/x64/Release/CustomActions.CA.dll
7678
eFormAPI/Installation/CustomActions/bin/x64/Release/CustomActions.dll
7779
eFormAPI/Installation/CustomActions/bin/x64/Release/Microsoft.Deployment.WindowsInstaller.dll

eFormAPI/Installation/AllowMultipleVersions/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]
35+
[assembly: AssemblyVersion("1.1.1.0")]
36+
[assembly: AssemblyFileVersion("1.1.1.0")]

eFormAPI/Installation/AllowMultipleVersionsBundle/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]
35+
[assembly: AssemblyVersion("1.1.1.0")]
36+
[assembly: AssemblyFileVersion("1.1.1.0")]
Binary file not shown.
-12.1 MB
Binary file not shown.

eFormAPI/Installation/CustomActions/CustomAction.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,7 @@ public static ActionResult InstallCA(Session session)
127127

128128
CongigureSecurity(clientLocation);
129129
CongigureSecurity(webApiLocation);
130-
131-
DeleteDirectory(Path.Combine(installFolder, "letsencrypt"));
130+
//DeleteDirectory(Path.Combine(installFolder, "letsencrypt"));
132131
IncrementProgressBar(session);
133132

134133
return ActionResult.Success;

eFormAPI/Installation/CustomActions/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("1.0.0.0")]
35-
[assembly: AssemblyFileVersion("1.0.0.0")]
34+
[assembly: AssemblyVersion("1.1.1.0")]
35+
[assembly: AssemblyFileVersion("1.1.1.0")]

eFormAPI/eFormAPI.Common/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("1.1.0.6")]
35-
[assembly: AssemblyFileVersion("1.1.0.6")]
34+
[assembly: AssemblyVersion("1.1.1.0")]
35+
[assembly: AssemblyFileVersion("1.1.1.0")]

eFormAPI/eFormAPI/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
// You can specify all the values or you can default the Revision and Build Numbers
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("1.1.0.6")]
35-
[assembly: AssemblyFileVersion("1.1.0.6")]
34+
[assembly: AssemblyVersion("1.1.1.0")]
35+
[assembly: AssemblyFileVersion("1.1.1.0")]
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
This file is used by the publish/package process of your Web project. You can customize the behavior of this process
4+
by editing this MSBuild file. In order to learn more about this please visit https://go.microsoft.com/fwlink/?LinkID=208121.
5+
-->
6+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
7+
<PropertyGroup>
8+
<WebPublishMethod>FileSystem</WebPublishMethod>
9+
<PublishProvider>FileSystem</PublishProvider>
10+
<LastUsedBuildConfiguration>Release</LastUsedBuildConfiguration>
11+
<LastUsedPlatform>Any CPU</LastUsedPlatform>
12+
<SiteUrlToLaunchAfterPublish />
13+
<LaunchSiteAfterPublish>True</LaunchSiteAfterPublish>
14+
<ExcludeApp_Data>False</ExcludeApp_Data>
15+
<publishUrl>bin\Release\PublishOutput</publishUrl>
16+
<DeleteExistingFiles>True</DeleteExistingFiles>
17+
</PropertyGroup>
18+
</Project>

0 commit comments

Comments
 (0)