.NET Standard
A formal specification of .NET APIs that are available on multiple .NET implementations.
505 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I'm using wpf
I have a exe as name AnyDesk.exe I included in my project
I want to merge it AnyDesk.exe in my build
my point is just run my exe of my project and no need the AnyDesk.exe because its embedded into my exe
If it is copied to the output directory, you can just do :
System.Diagnostics.Process.Start("AnyDesk.exe");
to launch it