Skip to content
This repository has been archived by the owner on Dec 18, 2017. It is now read-only.

Commit

Permalink
Rename 'packages-path' in web.config to 'runtime-path'
Browse files Browse the repository at this point in the history
  • Loading branch information
ChengTian committed Feb 5, 2015
1 parent 31d24b2 commit 272f939
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Expand Up @@ -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},
Expand Down
2 changes: 1 addition & 1 deletion src/Microsoft.Framework.Runtime.Common/Impl/Constants.cs
Expand Up @@ -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";
Expand Down
Expand Up @@ -98,7 +98,7 @@ public void KpmBundleWebApp_RootAsPublicFolder(DisposableDir runtimeHomeDir)
</appSettings>
</configuration>", Constants.WebConfigKpmPackagePath,
Constants.WebConfigBootstrapperVersion,
Constants.WebConfigPackagesPath,
Constants.WebConfigRuntimePath,
Constants.WebConfigRuntimeVersion,
Constants.WebConfigRuntimeFlavor,
Constants.WebConfigRuntimeAppBase);
Expand Down Expand Up @@ -197,7 +197,7 @@ public void KpmBundleWebApp_SubfolderAsPublicFolder(DisposableDir runtimeHomeDir
</appSettings>
</configuration>", Constants.WebConfigKpmPackagePath,
Constants.WebConfigBootstrapperVersion,
Constants.WebConfigPackagesPath,
Constants.WebConfigRuntimePath,
Constants.WebConfigRuntimeVersion,
Constants.WebConfigRuntimeFlavor,
Constants.WebConfigRuntimeAppBase);
Expand Down Expand Up @@ -689,7 +689,7 @@ public void KpmBundleWebApp_CopyExistingWebConfig(DisposableDir runtimeHomeDir)
</appSettings>
</configuration>", Constants.WebConfigKpmPackagePath,
Constants.WebConfigBootstrapperVersion,
Constants.WebConfigPackagesPath,
Constants.WebConfigRuntimePath,
Constants.WebConfigRuntimeVersion,
Constants.WebConfigRuntimeFlavor,
Constants.WebConfigRuntimeAppBase);
Expand Down Expand Up @@ -765,7 +765,7 @@ public void KpmBundleWebApp_UpdateExistingWebConfig(DisposableDir runtimeHomeDir
</appSettings>
</configuration>", Constants.WebConfigKpmPackagePath,
Constants.WebConfigBootstrapperVersion,
Constants.WebConfigPackagesPath,
Constants.WebConfigRuntimePath,
Constants.WebConfigRuntimeVersion,
Constants.WebConfigRuntimeFlavor,
Constants.WebConfigRuntimeAppBase);
Expand All @@ -786,7 +786,7 @@ public void KpmBundleWebApp_UpdateExistingWebConfig(DisposableDir runtimeHomeDir
</appSettings>
</configuration>", Constants.WebConfigKpmPackagePath,
Constants.WebConfigBootstrapperVersion,
Constants.WebConfigPackagesPath,
Constants.WebConfigRuntimePath,
Constants.WebConfigRuntimeVersion,
Constants.WebConfigRuntimeFlavor,
Constants.WebConfigRuntimeAppBase);
Expand Down

0 comments on commit 272f939

Please sign in to comment.