With the latest Visual Studio 2015 I miss not having CKS tools with its useful "Deploy to GAC" menu right next to the build option.
As a workaround I've used gacutil.exe on post-build event command line to copy my assembly to the GAC.
Add this line in the box to target CLR4 (SharePoint 2013):
As a workaround I've used gacutil.exe on post-build event command line to copy my assembly to the GAC.
Add this line in the box to target CLR4 (SharePoint 2013):
"%ProgramFiles%\Microsoft SDKs\Windows\v8.1A\bin\NETFX 4.5.1 Tools\gacutil.exe" /i "$(TargetPath)"
Comments