.net – Create Setup package runtime in .NET

netsetup-deployment

I want to create one application which created Setup file for Window Desktop application runtime with all resource file which application needed.

Is this possible? If yes then how I can do this?

Best Answer

Your .sln in VS/Add/New Project/Other Project Types/Setup and Deployment/Setup Project Now Application Folder/Add/Project Output/Your app + whichever parts of your app you want deployed.

Also, to have the resource files included - you can either embed them in your executable or make them copied to your output directory (file/Properties/"Build Action" & "Copy to Output Directory")