Add foundation for the testing from packages, not project references
This commit is contained in:
parent
6a6dfad418
commit
6ca8127bd6
|
|
@ -16,4 +16,5 @@ node_modules
|
||||||
*.snk
|
*.snk
|
||||||
.nuget/NuGet.exe
|
.nuget/NuGet.exe
|
||||||
project.lock.json
|
project.lock.json
|
||||||
.build
|
.build
|
||||||
|
.nuget/
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
<!-- KoreBuild can discover this file is renamed to universe.props-->
|
||||||
|
<Project ToolsVersion="15.0">
|
||||||
|
<PropertyGroup>
|
||||||
|
<!-- VS 2017 aware-packages can use this env variable to swap ProjectReference for PackageReference -->
|
||||||
|
<TestFromPackages>true</TestFromPackages>
|
||||||
|
</PropertyGroup>
|
||||||
|
</Project>
|
||||||
|
|
@ -121,7 +121,12 @@ var buildTarget = "compile"
|
||||||
|
|
||||||
#verify-all .pull .change-default-build-target-to-verify .build-all
|
#verify-all .pull .change-default-build-target-to-verify .build-all
|
||||||
|
|
||||||
#ci-test .pull .use-local-coherence .sync-commits .remove-src-folders .change-default-build-target-to-verify .build-all
|
#ci-test-env
|
||||||
|
@{
|
||||||
|
Environment.SetEnvironmentVariable("CustomUniverseBeforeCommonProps", Path.Combine(Directory.GetCurrentDirectory(), "build", "ci-test.common.props"));
|
||||||
|
}
|
||||||
|
|
||||||
|
#ci-test .ci-test-env .pull .use-local-coherence .sync-commits .remove-src-folders .change-default-build-target-to-verify .build-all
|
||||||
|
|
||||||
#ci-pull
|
#ci-pull
|
||||||
@{
|
@{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue