Skip to content

Commit

Permalink
Merge pull request #63 from wwwDayDream/fix_critical-msbuild-error
Browse files Browse the repository at this point in the history
Critical MSBuild Fix: Failed to resolve from <Reference> items
  • Loading branch information
wwwDayDream authored May 18, 2024
2 parents e72befe + 6e63547 commit 821f352
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<Error Condition="'$(UsingMicrosoftNETSdk)' != 'true'" Text="CessilCellsCeaChells.MSBuild only works in SDK-style projects" />

<MergeTask IntermediateOutputPath="$(IntermediateOutputPath)"
ReferencePath="@(ReferencePath)" PackageReference="@(PackageReference)"
ReferencePath="@(ReferencePath)" PackageReference="@(Reference)"
MergeFrom="@(MergeFrom)" MergeInto="@(MergeInto)">
<Output TaskParameter="RemovedReferences" ItemName="_RemovedMergeReferences" />
<Output TaskParameter="MergedReferences" ItemName="_MergedReferences" />
Expand Down
2 changes: 1 addition & 1 deletion CessilCellsCeaChells.MSBuild/MergeTask.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class MergeTask : Task {
private const string MergeFromMetadata = "MergeFrom";
private const string FileNameMetadata = "FileName";
private const string NuGetPackageIdMetadata = "NuGetPackageId";
private const string FullPathMetadata = "FullPath";
private const string FullPathMetadata = "HintPath";

public override bool Execute()
{
Expand Down

0 comments on commit 821f352

Please sign in to comment.