Imported Upstream version 6.4.0.137

Former-commit-id: 943baa9f16a098c33e129777827f3a9d20da00d6
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2019-07-26 19:53:28 +00:00
parent e9207cf623
commit ef583813eb
2712 changed files with 74169 additions and 40587 deletions

View File

@@ -29,6 +29,8 @@ using System;
using System.IO;
using System.Xml;
using System.Linq;
using System.Collections.Generic;
using System.Runtime.Versioning;
namespace Microsoft.Build.Utilities
{
@@ -270,5 +272,26 @@ namespace Microsoft.Build.Utilities
return Path.Combine (lib_mono_dir, "xbuild", toolsVersion, "bin");
}
#endif
// These have no meaning in mono except to exist, so return empty lists for each.
public static IList<string> GetPathToReferenceAssemblies(string targetFrameworkIdentifier, string targetFrameworkVersion, string targetFrameworkProfile)
{
return new List<string>();
}
public static IList<string> GetPathToReferenceAssemblies(FrameworkName frameworkName)
{
return new List<string>();
}
public static IList<string> GetPathToReferenceAssemblies(string targetFrameworkRootPath, FrameworkName frameworkName)
{
return new List<string>();
}
public static IList<string> GetSupportedTargetFrameworks()
{
throw new NotImplementedException();
}
}
}