🔧 Fixes condition for including README in NuGet package

This commit is contained in:
2025-11-12 04:36:01 +02:00
parent abf6a1c04a
commit 2a89dc341b

View File

@@ -147,7 +147,7 @@
</PropertyGroup>
<!-- Use readme as nuget information -->
<ItemGroup Label="Readme" Condition="$(IsPackable) == 'True' AND $(ProjectReadMe) != ''">
<ItemGroup Label="Readme" Condition="$(IsPackable) == 'True' AND $(ProjectReadMeExists) == 'True'">
<Content Include="$(ProjectReadMe)" Pack="true" PackagePath="" Visible="true"/>
</ItemGroup>