-
Notifications
You must be signed in to change notification settings - Fork 11
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
Fully move to .net core 3.0 exclusive support #24
Comments
For clarification: UI apps will only run on windows at this point but the server build can be consolidated into a single solution file. |
The UI only works on Windows, so it's not worth it, you would also loose the configuration ability for your monster machine .NET currently offers. |
Best practice would not be to move to new version for new versions sake. Instead it should be configured to compile with >=2.2 so that it will build with 2.2 and 3.0 both (as there is no dependency that would require v3 in ALANN). For GUI: Microsoft won't build cross platform GUI frameworks for core in forseeable future, if you want a GUI that works on dotnetcore in general and also runs on .NET consider using Avalonia. |
There is no rush for this. The goal was to move to a single solution file to avoid issues with messed up project files. Updating to the latest version of paket may have resolved the issues with the project file corruption but not certain at this stage. If you need .net core v2.2 then we can stay on this for now. |
I see, makes sense. Should also work with a >=2.2 config though hm. To avoid corruption of config file you can also update .gitignore to exclude the dotnetcore files, this way they won't change in the repo. |
Can't use .gitignore in this case as the project files need to be updated when files are added |
.Net core 3.0 now has support for Winforms and WPF so the UI projects can be ported. A single project platform will be easier to maintain.
The text was updated successfully, but these errors were encountered: