Skip to content

Commit

Permalink
Update ClickOnce targets to reference publishing deps.json from the I…
Browse files Browse the repository at this point in the history
…ntermediateDepsFilePath. The file gets copied to the PublishDepsFilePath during the copy targets which is too late for ClickOnce's manifest generation task.
  • Loading branch information
Sujit Nayak committed Jan 14, 2021
1 parent 09d624e commit e481da7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Copyright (c) .NET Foundation. All rights reserved.
<!-- Get correct deps json files based on _UseBuildDependencyFile -->
<ItemGroup>
<ProjectDepsFilesForClickOnce Condition="'$(_UseBuildDependencyFile)' == 'true'" Include="$(ProjectDepsFilePath)"/>
<ProjectDepsFilesForClickOnce Condition="'$(_UseBuildDependencyFile)' != 'true'" Include="$(PublishDepsFilePath)"/>
<ProjectDepsFilesForClickOnce Condition="'$(_UseBuildDependencyFile)' != 'true'" Include="$(IntermediateDepsFilePath)"/>
</ItemGroup>

<!-- Add runtimeconfig and deps json file to item group that's included in files for clickonce publishing -->
Expand Down

0 comments on commit e481da7

Please sign in to comment.