-
Notifications
You must be signed in to change notification settings - Fork 821
Add .NET 10 target #2653
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
Add .NET 10 target #2653
Conversation
| <PropertyGroup> | ||
| <OutputType>Exe</OutputType> | ||
| <TargetFramework>net9.0</TargetFramework> | ||
| <TargetFramework>net10.0</TargetFramework> |
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.
nit: Consider using a variable for these so future updates don't change 100+ files
See https://github.com/dotnet/aspnetcore/blob/main/src/Antiforgery/src/Microsoft.AspNetCore.Antiforgery.csproj#L5
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.
The reason it isn't configured with a variable is people like to copy the example apps, so I've made them as self contained as possible.
No description provided.