Skip to content

Commit

Permalink
Fix Json Source package not includding ArrayBufferWriter (dotnet/core…
Browse files Browse the repository at this point in the history
…fx#37009)

Commit migrated from dotnet/corefx@c1b0a40
  • Loading branch information
joperezr authored and ahsonkhan committed Apr 18, 2019
1 parent bae85db commit 62f9323
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@
the Common SR.cs into SourcePackageFiles. -->
<Target Name="GetSourcesToPackage" BeforeTargets="ExpandProjectReferences">
<ItemGroup>
<_ProjectsToBuild Include="../src/System.Text.Json.csproj" UndefineProperties="Configuration" AdditionalProperties="TargetGroup=netstandard"/>
<!-- Ensure that we undefine BuildConfiguration and set it to netstandard for getting the right sources to package. -->
<_ProjectsToBuild Include="../src/System.Text.Json.csproj"
UndefineProperties="Configuration;BuildConfiguration"
AdditionalProperties="TargetGroup=netstandard;BuildConfiguration=netstandard" />
</ItemGroup>

<MSBuild Projects="@(_ProjectsToBuild)"
Expand Down

0 comments on commit 62f9323

Please sign in to comment.