Skip to content

Commit 68dc35b

Browse files
authored
Merge pull request #25 from cazac9/master
small bug fix
2 parents 99647b0 + 0879c95 commit 68dc35b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eFormAPI/Installation/CustomActions/CustomAction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ private static void BuildWebApi(string solutionLocation, string iisDir)
337337
{
338338
var parentDir = new DirectoryInfo(solutionLocation).Parent.FullName;
339339
RunProcess(parentDir + @"\installation\nuget\nuget.exe", "restore -PackagesDirectory packages", parentDir);
340-
RunProcess(parentDir + @"\installation\msbuild\msbuild.exe", $@"{solutionLocation}\eFormAPI.Web.csproj /p:DeployOnBuild=true /p:PublishProfile=FolderProfile.pubxml", killChildProcess: true);
340+
RunProcess(parentDir + @"\installation\msbuild\msbuild.exe", $@"{solutionLocation}\eFormAPI.Web.csproj /p:DeployOnBuild=true /p:PublishProfile=FolderProfile.pubxml /p:Platform=x64", killChildProcess: true);
341341

342342
if (Directory.Exists(iisDir))
343343
DeleteDirectory(iisDir);

0 commit comments

Comments
 (0)