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:
authorJohn Luo <johluo@microsoft.com>2021-03-23 23:48:43 +0300
committerJohn Luo <johluo@microsoft.com>2021-03-23 23:48:43 +0300
commitef8a5063994b71f02a483abee22f264102be72e0 (patch)
treea1beef94c01c6056be2fc7b6cb9b4c3f6c5c4b16 /Directory.Build.targets
parent03aab5dbe011be0778b8af9c3c6ac4225ec7cd66 (diff)
Don't build targeting pack nupkgs
Diffstat (limited to 'Directory.Build.targets')
-rw-r--r--Directory.Build.targets3
1 files changed, 1 insertions, 2 deletions
diff --git a/Directory.Build.targets b/Directory.Build.targets
index 93ea0bfa20..6ea2934354 100644
--- a/Directory.Build.targets
+++ b/Directory.Build.targets
@@ -79,8 +79,7 @@
<PropertyGroup>
<!-- When OnlyPackPlatformSpecificPackages is set, only produce packages for projects which set RuntimeIdentifier. -->
<!-- Keep this below where we set "IsPackageInThisPatch" -->
- <!-- Do not apply this logic to App.Ref and App.Ref.Internal, it's packability is determined by IsTargetingPackBuilding -->
- <IsPackable Condition=" '$(MSBuildProjectName)' != 'Microsoft.AspNetCore.App.Ref' AND '$(MSBuildProjectName)' != 'Microsoft.AspNetCore.App.Ref.Internal' AND '$(OnlyPackPlatformSpecificPackages)' == 'true' AND '$(RuntimeIdentifier)' == '' ">false</IsPackable>
+ <IsPackable Condition=" '$(OnlyPackPlatformSpecificPackages)' == 'true' AND '$(RuntimeIdentifier)' == '' ">false</IsPackable>
</PropertyGroup>
<PropertyGroup>