-
Notifications
You must be signed in to change notification settings - Fork 985
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
Update Visual Basic Project Template (CLI) for 5.0 Preview 8 #3718
Update Visual Basic Project Template (CLI) for 5.0 Preview 8 #3718
Conversation
Codecov Report
@@ Coverage Diff @@
## release/5.0-preview8 #3718 +/- ##
===============================================================
- Coverage 67.08048% 35.44760% -31.63288%
===============================================================
Files 1360 904 -456
Lines 504418 251419 -252999
Branches 40855 36679 -4176
===============================================================
- Hits 338366 89122 -249244
+ Misses 160484 157449 -3035
+ Partials 5568 4848 -720
Flags with carried forward coverage won't be shown. Click here to find out more. |
...ProjectTemplates/content/WinFormsApplication-CSharp/Company.WinFormsApplication1.csproj.user
Outdated
Show resolved
Hide resolved
Codecov Report
@@ Coverage Diff @@
## release/5.0-preview8 #3718 +/- ##
===============================================================
- Coverage 67.08048% 35.46033% -31.62015%
===============================================================
Files 1360 904 -456
Lines 504418 251419 -252999
Branches 40855 36679 -4176
===============================================================
- Hits 338366 89154 -249212
+ Misses 160484 157418 -3066
+ Partials 5568 4847 -721
Flags with carried forward coverage won't be shown. Click here to find out more. |
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.
Looks good.
Visual Basic will be having a new WinForms project template which works based on the VB Application Framework for Visual Studio 16.9, while the template for CLI should be in the same style as the CS template for Window Forms.
The new VS template for VB WinForms/Application Framework relies on a code generation tool which is only available in VS, so having this template for the CLI version of VB would not work.
The current VB WinForms CLI (
dotnet new winforms --language vb
) template however does only invoke the Form it created as a start object. It does not setup other necessary settings, like enabling Visual Styles and setting the correct HighDpiMode, but it should.This PR corrects this.
Microsoft Reviewers: Open in CodeFlow