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:
authorSafia Abdalla <safia@microsoft.com>2020-12-17 23:54:11 +0300
committerGitHub <noreply@github.com>2020-12-17 23:54:11 +0300
commitf7e1712db88db4c01fcc49e5995d9528dbf608df (patch)
tree7217ad92afcb26fc24b4d2261f7ad3cf546cd139 /Directory.Build.props
parentfacc8c7f8f71ba735ecc4bee0d6f3310848c6162 (diff)
Add support for generating app manifest files for tests (#28575)
* Add initial support for reading content paths from file * Add task for generating app manifest file * Completed support for generating AppManifest.json * Fix deserializing JSON and getting path by assembly name * Address feedback from peer review * Fix up target definition and formatting * Undo typo fix * Fix target name and JSON parsing * Update test scenario when using app manifest * Add new project to ProjectReferences * Generate file before PrepareResources * Address feedback from peer review
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 449c50e42b..50d30f12fd 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -201,6 +201,7 @@
<DeterministicSourcePaths Condition="'$(IsSampleProject)' == 'true' OR '$(IsTestAssetProject)' == 'true'">false</DeterministicSourcePaths>
<!-- Projects which reference Microsoft.AspNetCore.Mvc.Testing should import this targets file to ensure dependency .deps.json files are copied into test output. -->
<MvcTestingTargets>$(MSBuildThisFileDirectory)src\Mvc\Mvc.Testing\src\Microsoft.AspNetCore.Mvc.Testing.targets</MvcTestingTargets>
+ <_MvcTestingTasksAssembly>$(ArtifactsBinDir)\Microsoft.AspNetCore.Mvc.Testing.Tasks\$(Configuration)\netstandard2.0\Microsoft.AspNetCore.Mvc.Testing.Tasks.dll</_MvcTestingTasksAssembly>
<!-- IIS native projects can only be built on Windows for x86 and x64. -->
<BuildIisNativeProjects Condition=" '$(TargetOsName)' == 'win' AND ('$(TargetArchitecture)' == 'x86' OR '$(TargetArchitecture)' == 'x64') ">true</BuildIisNativeProjects>
<!-- This property is shared by several projects to layout the AspNetCore.App targeting pack for installers -->