You've already forked linux-packaging-mono
Imported Upstream version 6.4.0.137
Former-commit-id: 943baa9f16a098c33e129777827f3a9d20da00d6
This commit is contained in:
parent
e9207cf623
commit
ef583813eb
@@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user