Skip to content

Commit

Permalink
Enforce the correct output path for assemblies
Browse files Browse the repository at this point in the history
  • Loading branch information
nxrighthere authored Sep 29, 2020
1 parent 3db1cd7 commit 5b06cb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Install/Install.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ private static void Main() {

var frameworkCompilation = Process.Start(new ProcessStartInfo {
FileName = "dotnet",
Arguments = "publish \"" + sourcePath + "/Source/Managed/Framework\" --configuration Release --framework net5.0",
Arguments = "publish \"" + sourcePath + "/Source/Managed/Framework\" --configuration Release --framework net5.0 --output \"" + sourcePath + "/Source/Managed/Framework/bin/Release\"",
CreateNoWindow = false,
UseShellExecute = false
});
Expand Down

0 comments on commit 5b06cb4

Please sign in to comment.