Skip to content

Commit

Permalink
[Targets] MSBuild MakeRelative doesn't include trailing \ anymore (do…
Browse files Browse the repository at this point in the history
…tnet/msbuild#6493). Thanks manio143 for the fix!
  • Loading branch information
xen2 committed Jun 8, 2021
1 parent c5d2f29 commit 8361b19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sources/native/Stride.Native.targets
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
<ItemGroup>
<StrideNativeOutput Include="@(_StrideNativeOutput->'$(StrideNativeOutputPath)%(Identity)')"/>
<StrideNativeOutput>
<Link>$([MSBuild]::MakeRelative('$(_OutputPathRelative)', '$(StrideNativeOutputPath)'))%(RelativePath)</Link>
<Link>$([MSBuild]::MakeRelative('$(_OutputPathRelative)', '$(StrideNativeOutputPath)'))\%(RelativePath)</Link>
</StrideNativeOutput>
<StrideNativeLib Include="@(StrideNativeOutput)"/>
</ItemGroup>
Expand Down

0 comments on commit 8361b19

Please sign in to comment.