-
I created an issue regarding the documentation, but perhaps a discussion is more suited for that. I am asking feedback about how external contributors are supposed to test changes in the repository ? I see there is also a WinformsControlsTest project, but I could not open any Form using the VS designer because every time I double click on a form to open the designer, I receive the error "Timed out while connecting to named pipe.". Do you have any tips or suggestion about how to test changes in the core controls ? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
I don't think there is any design time support for custom WinForms builds, personally I just add some code for testing to the WinFormsControlTest project you already found (usually by replacing the main form invocation) and run the project. Make sure you start VS via |
Beta Was this translation helpful? Give feedback.
-
Yes, unfortunately the designer is unable to load the canary build. Not unless you copy those into the global dotnet folders (under program files). Never the less the changes can be tested at runtime. And as @weltkante said, we have |
Beta Was this translation helpful? Give feedback.
I don't think there is any design time support for custom WinForms builds, personally I just add some code for testing to the WinFormsControlTest project you already found (usually by replacing the main form invocation) and run the project. Make sure you start VS via
start-vs.cmd
to make verything work.