Differences
This shows you the differences between the selected revisions of the page.
2014-09-11 | 2014-10-29 | ||
library_install (martin) | limit GAC acronym recognition (martin) | ||
Line 27: | Line 27: | ||
===== [[gac]] Installing to GAC ===== | ===== [[gac]] Installing to GAC ===== | ||
- | In special cases, you may need to install the assembly into Global Assembly Cache (GAC), particularly to use it from [[library_ssis|SSIS]]. | + | In special cases, you may need to install the assembly into Global Assembly Cache (%%GAC%%), particularly to use it from [[library_ssis|SSIS]]. |
- | When you install the assembly to GAC, you need to use it, as if it is [[#executablepath|installed to alternative location]]. | + | When you install the assembly to %%GAC%%, you need to use it, as if it is [[#executablepath|installed to alternative location]]. |
==== On Development Machine ==== | ==== On Development Machine ==== | ||
- | To install the assembly into GAC on development machine, i.e. the one that has [[http://msdn.microsoft.com/en-us/library/ms717422.aspx|Windows SDK]] installed, use following command: | + | To install the assembly into %%GAC%% on development machine, i.e. the one that has [[http://msdn.microsoft.com/en-us/library/ms717422.aspx|Windows SDK]] installed, use following command: |
<code> | <code> | ||
Line 45: | Line 45: | ||
==== On Production or User's Machine ==== | ==== On Production or User's Machine ==== | ||
- | To install the assembly into GAC on production or user's machine, you may install the assembly into GAC using: | + | To install the assembly into %%GAC%% on production or user's machine, you may install the assembly into %%GAC%% using: |
* Windows Installer, by creating ''.msi'' package; | * Windows Installer, by creating ''.msi'' package; | ||
- | * Any other installer system that supports installing to GAC, e.g. [[&url(innosetup)|Inno Setup]]; | + | * Any other installer system that supports installing to %%GAC%%, e.g. [[&url(innosetup)|Inno Setup]]; |
* [[msdn>System.EnterpriseServices.Internal.Publish.GacInstall]] method. PowerShell example: | * [[msdn>System.EnterpriseServices.Internal.Publish.GacInstall]] method. PowerShell example: | ||