[WIP] Removes *3 verbs, making msbuild the driver (#4456)
Removes *3 verbs, making msbuild the driver
This commit is contained in:
parent
55c59d621e
commit
6fcbefa4f7
746 changed files with 4256 additions and 32434 deletions
|
@ -8,7 +8,6 @@ using System.Linq;
|
|||
using System.Threading.Tasks;
|
||||
using Microsoft.DotNet.Cli.Utils;
|
||||
using Microsoft.DotNet.TestFramework;
|
||||
using Microsoft.DotNet.ProjectModel;
|
||||
|
||||
namespace Microsoft.DotNet.Tools.Test.Utilities
|
||||
{
|
||||
|
@ -22,6 +21,7 @@ namespace Microsoft.DotNet.Tools.Test.Utilities
|
|||
protected const string DefaultLibraryFramework = "netstandard1.5";
|
||||
private TempRoot _temp;
|
||||
private static TestAssetsManager s_testsAssetsMgr;
|
||||
private static TestAssets s_testAssets;
|
||||
|
||||
|
||||
protected static string RepoRoot
|
||||
|
@ -45,6 +45,21 @@ namespace Microsoft.DotNet.Tools.Test.Utilities
|
|||
}
|
||||
}
|
||||
|
||||
protected static TestAssets TestAssets
|
||||
{
|
||||
get
|
||||
{
|
||||
if (s_testAssets == null)
|
||||
{
|
||||
var assetsRoot = Path.Combine(RepoRoot, "TestAssets");
|
||||
|
||||
s_testAssets = new TestAssets(new DirectoryInfo(assetsRoot));
|
||||
}
|
||||
|
||||
return s_testAssets;
|
||||
}
|
||||
}
|
||||
|
||||
protected static TestAssetsManager GetTestGroupTestAssetsManager(string testGroup)
|
||||
{
|
||||
string assetsRoot = Path.Combine(RepoRoot, "TestAssets", testGroup);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue