Skip to content

Commit

Permalink
Fix framework version in the installation tool
Browse files Browse the repository at this point in the history
  • Loading branch information
nxrighthere committed Jan 23, 2022
1 parent 3ed719e commit 93928fc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Install/Install.cs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ private static void Main(string[] arguments) {

var runtimeCompilation = Process.Start(new ProcessStartInfo {
FileName = "dotnet",
Arguments = $"publish \"{ sourcePath }/Source/Managed/Runtime\" --configuration Release --framework net5.0 --output \"{ projectPath }/Plugins/UnrealCLR/Managed\"",
Arguments = $"publish \"{ sourcePath }/Source/Managed/Runtime\" --configuration Release --framework net6.0 --output \"{ projectPath }/Plugins/UnrealCLR/Managed\"",
CreateNoWindow = false,
UseShellExecute = false
});
Expand All @@ -98,7 +98,7 @@ private static void Main(string[] arguments) {

var frameworkCompilation = Process.Start(new ProcessStartInfo {
FileName = "dotnet",
Arguments = $"publish \"{ sourcePath }/Source/Managed/Framework\" --configuration Release --framework net5.0 --output \"{ sourcePath }/Source/Managed/Framework/bin/Release\"",
Arguments = $"publish \"{ sourcePath }/Source/Managed/Framework\" --configuration Release --framework net6.0 --output \"{ sourcePath }/Source/Managed/Framework/bin/Release\"",
CreateNoWindow = false,
UseShellExecute = false
});
Expand Down Expand Up @@ -130,7 +130,7 @@ private static void Main(string[] arguments) {

var testsCompilation = Process.Start(new ProcessStartInfo {
FileName = "dotnet",
Arguments = $"publish \"{ sourcePath }/Source/Managed/Tests\" --configuration Release --framework net5.0 --output \"{ projectPath }/Managed/Tests\"",
Arguments = $"publish \"{ sourcePath }/Source/Managed/Tests\" --configuration Release --framework net6.0 --output \"{ projectPath }/Managed/Tests\"",
CreateNoWindow = false,
UseShellExecute = false
});
Expand Down

0 comments on commit 93928fc

Please sign in to comment.