Skip to content

Commit a6be980

Browse files
author
ohumeniuk
committed
path fix
1 parent 2bb6f17 commit a6be980

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,3 +57,12 @@ eFormAPI/Installation/Bundle/obj/
5757
eFormAPI/Installation/AllowMultipleVersions/obj/
5858
eFormAPI/Installation/MainInstaller/obj/
5959
eFormAPI/Installation/AllowMultipleVersionsBundle/bin/
60+
eFormAPI/Installation/Bundle/maininstaller.wixpdb
61+
eFormAPI/Installation/CustomActions/CustomActions.csproj.user
62+
eFormAPI/Installation/MainInstaller/BuildedCustomActions/AllowMultipleVersions.exe
63+
eFormAPI/Installation/MainInstaller/BuildedCustomActions/AllowMultipleVersions.exe.config
64+
eFormAPI/Installation/MainInstaller/BuildedCustomActions/CustomActions.CA.dll
65+
eFormAPI/Installation/MainInstaller/BuildedCustomActions/CustomActions.dll
66+
eFormAPI/Installation/MainInstaller/BuildedCustomActions/Microsoft.Deployment.WindowsInstaller.dll
67+
eFormAPI/Installation/MainInstaller/BuildedCustomActions/Microsoft.Deployment.WindowsInstaller.xml
68+
eFormAPI/Installation/MainInstaller/BuildedCustomActions/Microsoft.Web.Administration.dll

eFormAPI/Installation/CustomActions/CustomAction.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -329,8 +329,8 @@ private static void BuildAngularApp(string appLocation, string appSolutionLocati
329329
private static void BuildWebApi(string solutionLocation, string iisDir)
330330
{
331331
var parentDir = new DirectoryInfo(solutionLocation).Parent.FullName;
332-
RunProcess(parentDir + @"\nuget\nuget.exe", "restore -PackagesDirectory packages", parentDir);
333-
RunProcess(parentDir + @"\msbuild\msbuild.exe", $@"{solutionLocation}\eFormAPI.Web.csproj /p:DeployOnBuild=true /p:PublishProfile=FolderProfile.pubxml", killChildProcess: true);
332+
RunProcess(parentDir + @"\installation\nuget\nuget.exe", "restore -PackagesDirectory packages", parentDir);
333+
RunProcess(parentDir + @"\installation\msbuild\msbuild.exe", $@"{solutionLocation}\eFormAPI.Web.csproj /p:DeployOnBuild=true /p:PublishProfile=FolderProfile.pubxml", killChildProcess: true);
334334

335335
if (Directory.Exists(iisDir))
336336
DeleteDirectory(iisDir);

0 commit comments

Comments
 (0)