Skip to content

Commit

Permalink
workaround for VS 16.8 SolutionDir bug (#529)
Browse files Browse the repository at this point in the history
  • Loading branch information
Scottj1s authored Oct 20, 2020
1 parent 0329a4c commit 1027a50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Samples/Net5ProjectionSample/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>

<PropertyGroup>
<BuildOutDir>$([MSBuild]::NormalizeDirectory('$(SolutionDir)_build', '$(Platform)', '$(Configuration)'))</BuildOutDir>
<BuildOutDir>$([MSBuild]::NormalizeDirectory('$(SolutionDir.Replace("$(SolutionName)\", ""))', '_build', '$(Platform)', '$(Configuration)'))</BuildOutDir>
<OutDir>$([MSBuild]::NormalizeDirectory('$(BuildOutDir)', '$(MSBuildProjectName)', 'bin'))</OutDir>
<IntDir>$([MSBuild]::NormalizeDirectory('$(BuildOutDir)', '$(MSBuildProjectName)', 'obj'))</IntDir>
</PropertyGroup>
Expand Down

0 comments on commit 1027a50

Please sign in to comment.