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:
authorDoug Bunting <6431421+dougbu@users.noreply.github.com>2022-01-31 21:05:08 +0300
committerGitHub <noreply@github.com>2022-01-31 21:05:08 +0300
commitc0575788ecadd6e5cfeb4eab635c13b5fd433d37 (patch)
treeae5c8221d0a675c61f302fb8d022ba07a44d56f0 /Directory.Build.props
parentaa8d62341d27a515bdfa781d55c3d6b7456cd51d (diff)
Remove Interop build step (#39553)
- remove separate step to restore Interop projects - make Interop test asset projects more "normal" - use usual mechanism to target latest ASP.NET Core bits - remove use of `$(BuildInteropProjects)` - expand FunctionalTestWithAssets.targets to help w/ local testing - still delayed and done only when necessary - handle non-Helix testing e.g. handle `dotnet test` too - build test assets into location `InteropTests` expects on local machine - add FunctionalTestWithAssets.props, providing relevant defaults - expand `FunctionalTestWithAssets` use to Identity.FunctionalTests nits: - rename `@(FunctionalTestAssetProjectReference)` to `@(TestAssetProjectReference)` - cleanup leftover reference to ProjectTemplates/testassets/ in Build.props - should have been removed in 54ff379 - remove `/p:RunTemplateTests=true`; no need to specify the default - clean up other projects that use `$(MvcTestingTargets)` - none need special handling for publish (don't need pages, views, or wwwroot files)
Diffstat (limited to 'Directory.Build.props')
-rw-r--r--Directory.Build.props1
1 files changed, 1 insertions, 0 deletions
diff --git a/Directory.Build.props b/Directory.Build.props
index c105182abc..209f7ba609 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -244,4 +244,5 @@
<Import Project="eng\targets\Npm.Common.props" Condition="'$(MSBuildProjectExtension)' == '.npmproj'" />
<Import Project="eng\targets\Java.Common.props" Condition="'$(MSBuildProjectExtension)' == '.javaproj'" />
<Import Project="eng\targets\Helix.props" Condition=" $(IsTestProject) " />
+ <Import Project="eng\targets\FunctionalTestWithAssets.props" Condition=" $(IsTestProject) " />
</Project>