-
Notifications
You must be signed in to change notification settings - Fork 131
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
Upgrade to .NET 6 #30
Comments
If the question is "should we upgrade from net5.0 to net6.0?" my answer would be yes. If the question is should we drop Startup.cs and move that configuration into Program.cs I'd defer to the opinions of others. I have mixed feelings about the new way. |
After thinking about this more I feel like conforming to the new .NET 6 way of having moving startup into Program.cs makes a lot of sense for Orchard Core framework applications. It actually clarifies what it is a module project vs. what is an application host since only module projects would have Startup.cs files after the change. |
I upgraded my application to .net 6, but when I try to use the .net 6 way of having single program.cs insead of both startup and program.cs it doesn't seems to work. but when I keep it splitted it is working. |
Should we upgrade the projects to .NET 6 (use Program.cs, ...)?
The text was updated successfully, but these errors were encountered: