Closed Zaid-Ajaj closed 1 month ago
Do we know why that line was necessary to add to sdk/Directory.Build.props?
It doesn't seem necessary, the projects in ./sdk
already set theTargetFrameworks
(not TargetFramework
) so they don't require shared the property 🤔 I will remove it from sdk/Directory.Build.props
and see if that breaks anything
Resolves #351
The error message in the issue suggests that
dotnet build
isn't creating the nuget package even though we have a propertyGeneratePackageOnBuild
set in the project settings.This PR fixes the problem by explicitly executingdotnet pack
against the projects before trying to find the nuget package and publishing itEDIT: removed
TargetFramework
property from directory build props