File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
src/infrastructure/Silk.NET.NUKE Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -155,7 +155,9 @@ Dictionary<string, object> ProcessedMsbuildProperties
155
155
}
156
156
else
157
157
{
158
- DotNetClean ( s => s . SetProject ( ProcessedSolution ) . SetProperties ( ProcessedMsbuildProperties ) ) ;
158
+ DotNetClean ( s => s . SetProject ( ProcessedSolution )
159
+ . SetConfiguration ( Configuration )
160
+ . SetProperties ( ProcessedMsbuildProperties ) ) ;
159
161
}
160
162
161
163
if ( Directory . Exists ( RootDirectory / "build" / "output_packages" ) )
@@ -189,6 +191,7 @@ Dictionary<string, object> ProcessedMsbuildProperties
189
191
(
190
192
s => s
191
193
. SetTargetPath ( ProcessedSolution )
194
+ . SetConfiguration ( Configuration )
192
195
. SetTargets ( "Restore" )
193
196
. SetMaxCpuCount ( Environment . ProcessorCount )
194
197
. SetProperties ( ProcessedMsbuildProperties )
You can’t perform that action at this time.
0 commit comments