From 3745e7e0e9c449a326e343183831ad414575d914 Mon Sep 17 00:00:00 2001 From: Maira Wenzel Date: Wed, 6 Feb 2019 18:54:22 -0800 Subject: [PATCH] remove absolute urls --- .../how-to-install-an-assembly-into-the-gac.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/framework/app-domains/how-to-install-an-assembly-into-the-gac.md b/docs/framework/app-domains/how-to-install-an-assembly-into-the-gac.md index 752b7aa990416..8e08f3772ac47 100644 --- a/docs/framework/app-domains/how-to-install-an-assembly-into-the-gac.md +++ b/docs/framework/app-domains/how-to-install-an-assembly-into-the-gac.md @@ -14,7 +14,7 @@ ms.author: "ronpet" --- # How to: Install an assembly into the global assembly cache -The global assembly cache (GAC) stores assemblies that several applications share. Install an assembly into the [global assembly cache](https://docs.microsoft.com/en-us/dotnet/framework/app-domains/gac) with one of the following components: +The global assembly cache (GAC) stores assemblies that several applications share. Install an assembly into the [global assembly cache](gac.md) with one of the following components: - [Windows Installer](#windows-installer) - [Global assembly cache tool](#global-assembly-cache-tool) @@ -23,7 +23,7 @@ The global assembly cache (GAC) stores assemblies that several applications shar ## Windows Installer -[Windows Installer](https://docs.microsoft.com/en-us/windows/desktop/Msi/installation-of-assemblies-to-the-global-assembly-cache), the Windows installation engine, is the recommended way to add assemblies to the global assembly cache. Windows Installer provides reference counting of assemblies in the global assembly cache and other benefits. To create an installer package for Windows Installer, use the [WiX toolset extension for Visual Studio 2017](https://marketplace.visualstudio.com/items?itemName=RobMensching.WixToolsetVisualStudio2017Extension). +[Windows Installer](/windows/desktop/Msi/installation-of-assemblies-to-the-global-assembly-cache), the Windows installation engine, is the recommended way to add assemblies to the global assembly cache. Windows Installer provides reference counting of assemblies in the global assembly cache and other benefits. To create an installer package for Windows Installer, use the [WiX toolset extension for Visual Studio 2017](https://marketplace.visualstudio.com/items?itemName=RobMensching.WixToolsetVisualStudio2017Extension). ## Global assembly cache tool @@ -40,7 +40,7 @@ gacutil -i In this command, *\* is the name of the assembly to install in the global assembly cache. -If *gacutil.exe* isn't in your system path, use the [Developer Command Prompt for VS *\*](https://docs.microsoft.com/en-us/dotnet/framework/tools/developer-command-prompt-for-vs). +If *gacutil.exe* isn't in your system path, use the [Developer Command Prompt for VS *\*](../tools/developer-command-prompt-for-vs.md). The following example installs an assembly with the file name *hello.dll* into the global assembly cache. @@ -56,4 +56,4 @@ gacutil -i hello.dll - [Working with assemblies and the global assembly cache](working-with-assemblies-and-the-gac.md) - [How to: Remove an assembly from the global assembly cache](how-to-remove-an-assembly-from-the-gac.md) - [Gacutil.exe (Global assembly cache tool)](../tools/gacutil-exe-gac-tool.md) -- [How to: Sign an assembly with a strong name](how-to-sign-an-assembly-with-a-strong-name.md) \ No newline at end of file +- [How to: Sign an assembly with a strong name](how-to-sign-an-assembly-with-a-strong-name.md)