diff --git a/src/Microsoft.Framework.PackageManager/Bundle/BundleProject.cs b/src/Microsoft.Framework.PackageManager/Bundle/BundleProject.cs index 80774a074..8cbb91d2b 100644 --- a/src/Microsoft.Framework.PackageManager/Bundle/BundleProject.cs +++ b/src/Microsoft.Framework.PackageManager/Bundle/BundleProject.cs @@ -357,7 +357,7 @@ private void GenerateWebConfigFileForWwwRootOut(BundleRoot root, Runtime.Project { { Runtime.Constants.WebConfigKpmPackagePath, relativePackagesPath}, { Runtime.Constants.WebConfigBootstrapperVersion, GetBootstrapperVersion(root)}, - { Runtime.Constants.WebConfigPackagesPath, relativePackagesPath}, + { Runtime.Constants.WebConfigRuntimePath, relativePackagesPath}, { Runtime.Constants.WebConfigRuntimeVersion, GetRuntimeVersion(defaultRuntime)}, { Runtime.Constants.WebConfigRuntimeFlavor, GetRuntimeFlavor(defaultRuntime)}, { Runtime.Constants.WebConfigRuntimeAppBase, _applicationBase}, diff --git a/src/Microsoft.Framework.Runtime.Common/Impl/Constants.cs b/src/Microsoft.Framework.Runtime.Common/Impl/Constants.cs index 4a5f7b48d..ebec129ef 100644 --- a/src/Microsoft.Framework.Runtime.Common/Impl/Constants.cs +++ b/src/Microsoft.Framework.Runtime.Common/Impl/Constants.cs @@ -14,7 +14,7 @@ internal static class Constants public const string WebConfigRuntimeAppBase = RuntimeNamePrefix + "app-base"; public const string WebConfigKpmPackagePath = "kpm-package-path"; public const string WebConfigBootstrapperVersion = "bootstrapper-version"; - public const string WebConfigPackagesPath = "packages-path"; + public const string WebConfigRuntimePath = "runtime-path"; public const string BootstrapperHostName = RuntimeShortName + ".host"; public const string BootstrapperClrName = RuntimeShortName + ".clr"; public const string BootstrapperCoreclrManagedName = RuntimeShortName + ".coreclr.managed"; diff --git a/test/Microsoft.Framework.PackageManager.FunctionalTests/KpmBundleTests.cs b/test/Microsoft.Framework.PackageManager.FunctionalTests/KpmBundleTests.cs index e055a49cd..9846c077f 100644 --- a/test/Microsoft.Framework.PackageManager.FunctionalTests/KpmBundleTests.cs +++ b/test/Microsoft.Framework.PackageManager.FunctionalTests/KpmBundleTests.cs @@ -98,7 +98,7 @@ public void KpmBundleWebApp_RootAsPublicFolder(DisposableDir runtimeHomeDir) ", Constants.WebConfigKpmPackagePath, Constants.WebConfigBootstrapperVersion, - Constants.WebConfigPackagesPath, + Constants.WebConfigRuntimePath, Constants.WebConfigRuntimeVersion, Constants.WebConfigRuntimeFlavor, Constants.WebConfigRuntimeAppBase); @@ -197,7 +197,7 @@ public void KpmBundleWebApp_SubfolderAsPublicFolder(DisposableDir runtimeHomeDir ", Constants.WebConfigKpmPackagePath, Constants.WebConfigBootstrapperVersion, - Constants.WebConfigPackagesPath, + Constants.WebConfigRuntimePath, Constants.WebConfigRuntimeVersion, Constants.WebConfigRuntimeFlavor, Constants.WebConfigRuntimeAppBase); @@ -689,7 +689,7 @@ public void KpmBundleWebApp_CopyExistingWebConfig(DisposableDir runtimeHomeDir) ", Constants.WebConfigKpmPackagePath, Constants.WebConfigBootstrapperVersion, - Constants.WebConfigPackagesPath, + Constants.WebConfigRuntimePath, Constants.WebConfigRuntimeVersion, Constants.WebConfigRuntimeFlavor, Constants.WebConfigRuntimeAppBase); @@ -765,7 +765,7 @@ public void KpmBundleWebApp_UpdateExistingWebConfig(DisposableDir runtimeHomeDir ", Constants.WebConfigKpmPackagePath, Constants.WebConfigBootstrapperVersion, - Constants.WebConfigPackagesPath, + Constants.WebConfigRuntimePath, Constants.WebConfigRuntimeVersion, Constants.WebConfigRuntimeFlavor, Constants.WebConfigRuntimeAppBase); @@ -786,7 +786,7 @@ public void KpmBundleWebApp_UpdateExistingWebConfig(DisposableDir runtimeHomeDir ", Constants.WebConfigKpmPackagePath, Constants.WebConfigBootstrapperVersion, - Constants.WebConfigPackagesPath, + Constants.WebConfigRuntimePath, Constants.WebConfigRuntimeVersion, Constants.WebConfigRuntimeFlavor, Constants.WebConfigRuntimeAppBase);