I have a rather large solution consisting of several projects that wants to install to GAC. But Visual Studio do not have permission to do this when running the build. I can do it if Visual Studio is started as administrator. Is there a better solution to this?
I have a rather large solution consisting of several projects that wants to install
Share
Your build process shouldn’t be installing anything to the GAC. Instead, your build process should produce binaries and/or an installer, and the installer (or a simple script) should be the one installing assemblies into the GAC.