Trigger rebuild when the CLI changed

- Stamp each project with the CLI version it was last compiled with
- Rebuild those projects with a local version file that does not match the one of the current CLI that is building it
This commit is contained in:
Mihai Codoban 2016-03-03 22:57:43 -08:00
parent 7a82a98e4c
commit f14b4cbd3d
6 changed files with 142 additions and 23 deletions

View file

@ -124,5 +124,12 @@ namespace Microsoft.DotNet.Tools.Builder.Tests
return executablePath;
}
protected string GetIntermediaryOutputPath()
{
var executablePath = Path.Combine(TestProjectRoot, "obj", "Debug", "netstandardapp1.5");
return executablePath;
}
}
}