Skip to content

Commit 61a29aa

Browse files
committed
Fix PackageOutputPath in local builds
Define Configuration when undefined before using it. Otherwise packages build to just build\ instead of build\debug.
1 parent 0dd5624 commit 61a29aa

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Directory.Build.props

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
<Project>
33
<PropertyGroup>
44
<RepoRoot>$(MSBuildThisFileDirectory)</RepoRoot>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
56
<PackageOutputPath>$(MSBuildThisFileDirectory)build\$(Configuration)\</PackageOutputPath>
67
</PropertyGroup>
78

0 commit comments

Comments
 (0)