1

I'm using Visual Studio's one-click publish and web deploy to publish my .net MVC application to a remote server. This works very well. Now I'd like to have one of the assemblies installed into the GAC of the remote server.

How do I do this using web deploy and one-click publish?

starblue
  • 55,348
  • 14
  • 97
  • 151

1 Answers1

1

A ClickOnce-app can't install anything except itself. All prerequisites which VS creates inside bootstrapper setup.exe isn't actually ClickOnce. It just a bootstrapper.

Shrike
  • 9,218
  • 7
  • 68
  • 105