Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/IceRpc.Slice.Tools/IceRpc.Slice.Tools.targets
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,11 @@
<Compile Remove="@(_StaleSlicecOutputRelative)" />
</ItemGroup>
<Delete Files="@(_StaleSlicecOutput)" />
<!--
With no SliceFile left, _SlicecWriteOutputManifest doesn't run to replace the manifest; delete it here, or
every later build deletes whatever appears at the former output paths.
-->
Comment thread
pepone marked this conversation as resolved.
Outdated
<Delete Files="$(IntermediateOutputPath)slicec.outputs.txt" Condition="@(SliceFile) == ''" />
</Target>

<Target Name="Slicec" BeforeTargets="CoreCompile" DependsOnTargets="_ComputeSliceFiles" Condition="@(SliceFile) != ''">
Expand Down