Skip to content

Commit

Permalink
fix: MSBuild normalizePath doesn't normalize paths outside the solution.
Browse files Browse the repository at this point in the history
  • Loading branch information
snovak7 committed Apr 14, 2023
1 parent 0eee62a commit 3584471
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Escendit.Tools.Branding/Escendit.Tools.Branding.targets
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="utf-8" ?>
<Project>
<ItemGroup>
<None Pack="true" PackagePath="" Include="$([MSBuild]::NormalizePath('$(MSBuildThisFileDirectory)\..\LICENSE.txt'))" Visible="false">
<None Pack="true" PackagePath="" Include="$(MSBuildThisFileDirectory)\..\LICENSE.txt" Visible="false">
<Link>LICENSE.txt</Link>
</None>
<None Pack="true" PackagePath="" Include="$([MSBuild]::NormalizePath('$(MSBuildThisFileDirectory)\..\packageIcon.png'))" Visible="false">
<None Pack="true" PackagePath="" Include="$(MSBuildThisFileDirectory)\..\packageIcon.png" Visible="false">
<Link>packageIcon.png</Link>
</None>
</ItemGroup>
Expand Down

0 comments on commit 3584471

Please sign in to comment.