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

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Directory.Build.targets')
-rw-r--r--Directory.Build.targets9
1 files changed, 7 insertions, 2 deletions
diff --git a/Directory.Build.targets b/Directory.Build.targets
index 7af5848d9af..6b1d21054a2 100644
--- a/Directory.Build.targets
+++ b/Directory.Build.targets
@@ -1,5 +1,4 @@
-<Project>
-
+<Project InitialTargets="ErrorForMissingPackageDescription">
<PropertyGroup>
<!--
For non-SDK projects that import this file and then import Microsoft.Common.targets,
@@ -33,4 +32,10 @@
<!-- Keep in sync as required by the Packaging SDK in Arcade. -->
<Description>$(PackageDescription)</Description>
</PropertyGroup>
+
+ <!-- Remove when https://github.com/NuGet/Home/issues/10405 is implemented and consumed. -->
+ <Target Name="ErrorForMissingPackageDescription"
+ Condition="'$(IsPackable)' == 'true' and '$(PackageDescription)' == ''">
+ <Error Text="Required property 'PackageDescription' is missing for $(MSBuildProjectName)." />
+ </Target>
</Project> \ No newline at end of file