Reputation: 151
I am just wondering if there is a somewhat simple way to use a Windows Forms Application program outside of Visual Studios. If so could someone elaborate on it?
Upvotes: 2
Views: 614
Reputation: 5119
Yes. The steps to do this can be found here.
In a nutshell:
It can be as simple or complex as you would like it to be.
Upvotes: 1
Reputation: 3118
When you have compiled the files simply navigate to the
Debug/Release folder
and run the executable. Any dependencies can be configured to be output to that folder in
Project properties (Build Tab, Output path)
You can also set references to Copy local in the Property Window within Visual Studio, which ensures references are copied to Debug/Release folder depending on which configuration you have Visual studio in.
Or build an installer as Brian describes.
Upvotes: 2