Do not search for runtime output in dependencies
This commit is contained in:
parent
23b1b077dd
commit
4462dc21f8
9 changed files with 124 additions and 12 deletions
|
@ -16,15 +16,16 @@ namespace Microsoft.DotNet.Tools.Builder.Tests
|
|||
|
||||
protected readonly string MainProject;
|
||||
protected readonly string ExpectedOutput;
|
||||
protected readonly TempDirectory Root;
|
||||
|
||||
public IncrementalTestBase(string testProjectsRoot, string mainProject, string expectedOutput)
|
||||
{
|
||||
MainProject = mainProject;
|
||||
ExpectedOutput = expectedOutput;
|
||||
|
||||
var root = Temp.CreateDirectory();
|
||||
Root = Temp.CreateDirectory();
|
||||
|
||||
TempProjectRoot = root.CopyDirectory(testProjectsRoot);
|
||||
TempProjectRoot = Root.CopyDirectory(testProjectsRoot);
|
||||
}
|
||||
|
||||
protected void TouchSourcesOfProject()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue