Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Newton-King <james@newtonking.com>2020-03-21 05:32:45 +0300
committerGitHub <noreply@github.com>2020-03-21 05:32:45 +0300
commit8afb78fb9573dd6bc62bd2bed329b4c68a00c6a8 (patch)
treef23d9518136f2aa0595292f152e70a78868b45c9 /Directory.Build.targets
parent91afecd6309ac0be9341493a90c0fa40a81f2077 (diff)
Add gRPC interop tests (#17040)
* WIP add interop tests * Clean up * Move test project into build infrastructure * Clean up * Remove hardcoded paths * Clean up * Fix build * Add copyright notices * Update azure template * Fix build * Fix build? * Fix build? * Add gRPC interop tests to CI - Convert to using references managed by build infrastructure - Use produced AspNetCore.App shared framework - Save server logs - Dynamically bind to ports - Ensure InteropWebsite is built in the same configuration as the test project * Cleanup * Rebase fix * Include tests assets in build directory for Helix * Incorporate changes in ProcessEx * Include Grpc test in regular build * Fixup * Test * exe doesn't always exist * Capture logs on helix * Maybe this will work * There are two application started messages * Derp * Cleanup * Update directory * Add interop tests to more pipelines * mkdir Co-authored-by: John Luo <johluo@microsoft.com>
Diffstat (limited to 'Directory.Build.targets')
-rw-r--r--Directory.Build.targets2
1 files changed, 2 insertions, 0 deletions
diff --git a/Directory.Build.targets b/Directory.Build.targets
index a62e3ed6a4..9a30afbb8e 100644
--- a/Directory.Build.targets
+++ b/Directory.Build.targets
@@ -167,5 +167,7 @@
<Import Project="eng\targets\Npm.Common.targets" Condition="'$(MSBuildProjectExtension)' == '.npmproj'" />
<Import Project="eng\targets\ReferenceAssembly.targets" Condition=" $(HasReferenceAssembly) " />
<Import Project="eng\targets\Helix.targets" Condition="'$(IsTestProject)' == 'true'" />
+ <Import Project="eng\targets\FunctionalTestAsset.targets" Condition="'$(IsTestAssetProject)' == 'true'" />
+ <Import Project="eng\targets\FunctionalTestWithAssets.targets" Condition="'$(ContainsFunctionalTestAssets)' == 'true'" />
</Project>