Hiscal
Hiscal

Reputation: 641

Create Setup package runtime in .NET

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?

Upvotes: 0

Views: 247

Answers (1)

Filip Skakun
Filip Skakun

Reputation: 31724

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")

Upvotes: 1

Related Questions