-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update to .NET 8 #160
Update to .NET 8 #160
Conversation
This package (or at least the Powershell part of it) is runtime dependent, and causes a build warning. I could either ignore the warning globally, or remove the package. I chose to remove the package because we don't deploy via Appveyor anymore.
@@ -717,26 +715,6 @@ private static void pauseIfInteractive() | |||
Console.WriteLine(); | |||
} | |||
|
|||
private static bool updateAppveyorVersion(string version) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See 0c96adb for explanation why.
$ rg net6.0
Program.cs
152: runCommand("dotnet", $"publish -f net6.0 -r win-x64 {ProjectName} -o \"{stagingPath}\" --configuration Release /p:Version={version}");
259: + " -f net6.0-android"
275: + " -f net6.0-ios"
304: runCommand("dotnet", $"publish -f net6.0 -r linux-x64 {ProjectName} -o {stagingTarget}/usr/bin/ --configuration Release /p:Version={version} --self-contained"); |
Is the |
I'd say it's good sanity against accidentally deploying on a higher runtime, but /shrug |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably okay.
Prereqs: