Skip to content

Commit 05b11f5

Browse files
committed
Enum type classification and NUKE improvements, workaround #389
1 parent 5d061bb commit 05b11f5

File tree

1 file changed

+4
-1
lines changed
  • src/infrastructure/Silk.NET.NUKE

1 file changed

+4
-1
lines changed

src/infrastructure/Silk.NET.NUKE/Build.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,9 @@ Dictionary<string, object> ProcessedMsbuildProperties
155155
}
156156
else
157157
{
158-
DotNetClean(s => s.SetProject(ProcessedSolution).SetProperties(ProcessedMsbuildProperties));
158+
DotNetClean(s => s.SetProject(ProcessedSolution)
159+
.SetConfiguration(Configuration)
160+
.SetProperties(ProcessedMsbuildProperties));
159161
}
160162

161163
if (Directory.Exists(RootDirectory / "build" / "output_packages"))
@@ -189,6 +191,7 @@ Dictionary<string, object> ProcessedMsbuildProperties
189191
(
190192
s => s
191193
.SetTargetPath(ProcessedSolution)
194+
.SetConfiguration(Configuration)
192195
.SetTargets("Restore")
193196
.SetMaxCpuCount(Environment.ProcessorCount)
194197
.SetProperties(ProcessedMsbuildProperties)

0 commit comments

Comments
 (0)