Open
Conversation
Cheap and cheerful update to .NET 10 by simply using a new CSProj - Add nugets - Fix up warnings - Include Win64 single file publish profile Works for my simple case, but has had no testing of any other code path beyond running interactively and clicking update!
Author
|
I run windows server 2019 and .NET framework 8 isn't supported on that so I did a very quick .NET 10 conversion with a single-file publish just to get it on my system with the minimum of hassle. |
sevanko90
commented
Dec 6, 2025
| <OutputType>WinExe</OutputType> | ||
| <TargetFramework>net10.0-windows</TargetFramework> | ||
| <RootNamespace>PlexServerAutoUpdater</RootNamespace> | ||
| <Nullable>disable</Nullable> |
Author
There was a problem hiding this comment.
I didn't fancy going through all the warnings so just kept the most compatible setting.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Cheap and cheerful update to .NET 10 by simply making a new CSProj to include all the existing files.
Works for my simple case, but has had no testing of any other code path beyond running interactively and clicking update!