Skip to content

Commit

Permalink
BUG: Remvoed trailing slash on directory paths. Might be causing an e…
Browse files Browse the repository at this point in the history
…xception in NormalizePath during MSBuild.
  • Loading branch information
jwrosewell committed Jul 16, 2024
1 parent 3e3f743 commit 6f8b890
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions VisualStudio/Application.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@
<ConfigurationType>Application</ConfigurationType>
<PlatformToolset>v143</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
<IntDir>$(ProjectDir)Intermediate\$(Platform)\$(Configuration)\</IntDir>
<OutDir>$(ProjectDir)$(Platform)\$(Configuration)\</OutDir>
<IntDir>$(ProjectDir)Intermediate\$(Platform)\$(Configuration)</IntDir>
<OutDir>$(ProjectDir)$(Platform)\$(Configuration)</OutDir>
</PropertyGroup>
<PropertyGroup Label="Globals">
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
Expand Down
4 changes: 2 additions & 2 deletions VisualStudio/Library.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@
<ConfigurationType>StaticLibrary</ConfigurationType>
<PlatformToolset>v143</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
<IntDir>$(ProjectDir)Intermediate\$(Platform)\$(Configuration)\</IntDir>
<OutDir>$(ProjectDir)$(Platform)\$(Configuration)\</OutDir>
<IntDir>$(ProjectDir)Intermediate\$(Platform)\$(Configuration)</IntDir>
<OutDir>$(ProjectDir)$(Platform)\$(Configuration)</OutDir>
</PropertyGroup>
<PropertyGroup Label="Globals">
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
Expand Down

0 comments on commit 6f8b890

Please sign in to comment.