-
Notifications
You must be signed in to change notification settings - Fork 1k
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
WinForms project templates use latest C# language idioms #5171
Comments
@RussKie just making sure you're aware of the SDK feature being implemented to support implicit/default global usings. There's a PR going on right now to enable this and then the WindowsDesktop SDK should utilize this feature too. |
Just a hint since this repo is also using |
The compiler with support for this is now in SDK version 6.0.100-preview.7.21364.4 |
@vlada-shubina could you guide me through the changes we need to make in our templates? Do we need to copy the changes from dotnet/templating#3454? |
Since the templates allow the user to pick up the language version (and also framework in your case) you need to consider it when making the change, as if the user picks up lower language version or lower framework the template based on latest C# features may fail on build. Generally for each feature you introduce to your templates you need to do the following conditions:
In case of console/classlib it was quite straightforward, as the content is very simple; but it might be more complicated with more code in the template.. I would recommend the following approach:
You can follow the way we did for console/classlib but direct copy-paste won't work - you need to adapt it for your template content. I would also recommend to run the tests on all possible combinations of templates/frameworks/language versions to see if the template can be instantiated and at least built successfully, and assert if file content is as expected. |
Additional thought: if your template code file content is too difficult to manage with inline conditions, you may consider doing different files and pick up the correct file to use using Lines 82 to 103 in e0c821b
Btw, I saw some templates following this approach with sources which is a bit easier impo (especially if conditions are exclusive):
then template.json looks like:
This allows to avoid renames, excludes etc. However it's just a suggestion in case you want to use |
@vlada-shubina thank you! |
In .NET 6, the included C# project templates will use the latest language idioms.
See the parent Epic for details.
@OliaG
The text was updated successfully, but these errors were encountered: