Add assemblies on Visual Studio
Hey it's my first time using Visual Studio for a named pipeline between Python and C# but I can't seem to add assemblies, can someone give me a hand?
16 Replies
this is what I see
What assemblies, exactly?
whenever I right click on AI_Dispatcher there's no Add Assemblies button
System.Windows.Forms
Usually you'd simply create a Winforms project if you want a Winforms project
If you want some singular Winforms classes in your console project or whatever, though, you can just add
<UseWindowsForms>true</UseWindowsForms>
to the csprojoh so a C# Windows Forms app?
$newproject
When creating a new project, prefer using .NET over .NET Framework, unless you have a very specific reason to be using .NET Framework.
.NET Framework is now legacy code and only get security fix updates, it no longer gets new features and is not recommended.
https://cdn.discordapp.com/attachments/569261465463160900/899381236617855016/unknown.png
Yes
this one?
No, this is a console app
oh got it
This one
i created a WPF Applicationa and it's still not working
Well WPF is not Winforms
right
alright I created a Winforms and now it's workng
thanks!