Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLluis Sanchez <lluis@xamarin.com>2015-11-06 15:07:51 +0300
committerLluis Sanchez <lluis@xamarin.com>2015-11-06 15:07:51 +0300
commit3e75b4e0303fa44375cdefa7b8798ba473961793 (patch)
tree281f98f9a2c90f3a8b58351935b204a4dccd8a7a /main/src/core/MonoDevelop.Core/MonoDevelop.Projects.Formats.MSBuild
parentead99c9c7dac18c76659706b4ac788aff57a2595 (diff)
[Core] Fix build on Windows
Diffstat (limited to 'main/src/core/MonoDevelop.Core/MonoDevelop.Projects.Formats.MSBuild')
-rw-r--r--main/src/core/MonoDevelop.Core/MonoDevelop.Projects.Formats.MSBuild/IntrinsicFunctions.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/core/MonoDevelop.Core/MonoDevelop.Projects.Formats.MSBuild/IntrinsicFunctions.cs b/main/src/core/MonoDevelop.Core/MonoDevelop.Projects.Formats.MSBuild/IntrinsicFunctions.cs
index eebe267558..d6335e62f2 100644
--- a/main/src/core/MonoDevelop.Core/MonoDevelop.Projects.Formats.MSBuild/IntrinsicFunctions.cs
+++ b/main/src/core/MonoDevelop.Core/MonoDevelop.Projects.Formats.MSBuild/IntrinsicFunctions.cs
@@ -220,7 +220,7 @@ namespace Microsoft.Build.Evaluation
RegexOptions.IgnoreCase);
if (m.Success && m.Groups.Count >= 1 && valueName.Equals("InstallRoot", StringComparison.OrdinalIgnoreCase))
{
- var mr = Runtime.SystemAssemblyService.DefaultRuntime as MonoTargetRuntime;
+ var mr = MonoDevelop.Core.Runtime.SystemAssemblyService.DefaultRuntime as MonoTargetRuntime;
if (mr != null)
return Path.Combine(mr.MonoDirectory, m.Groups[0].Value) + Path.DirectorySeparatorChar;
}