@@ -624,7 +624,7 @@ async Task DownloadWafVersion(string libddwafVersion = null, string uncompressFo
624624 . SetConfiguration ( BuildConfiguration )
625625 . SetTargetPlatformAnyCPU ( )
626626 . EnableNoBuild ( )
627- . EnableNoRestore ( )
627+ // .EnableNoRestore()
628628 . CombineWith ( targetFrameworks , ( p , framework ) => p
629629 . SetFramework ( framework )
630630 . SetOutput ( MonitoringHomeDirectory / framework ) )
@@ -1365,7 +1365,7 @@ _ when path.Contains("dependency-libs") => false,
13651365 . Where ( project => Solution . GetProject ( project ) . GetTargetFrameworks ( ) . Contains ( Framework ) )
13661366 ;
13671367
1368- DotnetBuild ( projects , framework : Framework ) ;
1368+ DotnetBuild ( projects , framework : Framework , noRestore : false ) ;
13691369 } ) ;
13701370
13711371 Target CompileSamplesWindows => _ => _
@@ -1567,8 +1567,8 @@ _ when exclude.Contains(x.project.Path) => false,
15671567 . SetFramework ( Framework )
15681568 //.WithMemoryDumpAfter(timeoutInMinutes: 30)
15691569 . EnableCrashDumps ( )
1570- . EnableNoRestore ( )
1571- . EnableNoBuild ( )
1570+ // .EnableNoRestore()
1571+ // .EnableNoBuild()
15721572 . SetTestTargetPlatform ( TargetPlatform )
15731573 . SetIsDebugRun ( isDebugRun )
15741574 . SetProcessEnvironmentVariable ( "MonitoringHomeDirectory" , MonitoringHomeDirectory )
@@ -1590,8 +1590,8 @@ _ when exclude.Contains(x.project.Path) => false,
15901590 . SetTargetPlatformAnyCPU ( )
15911591 . SetFramework ( Framework )
15921592 //.WithMemoryDumpAfter(timeoutInMinutes: 30)
1593- . EnableNoRestore ( )
1594- . EnableNoBuild ( )
1593+ // .EnableNoRestore()
1594+ // .EnableNoBuild()
15951595 . SetFilter ( string . IsNullOrWhiteSpace ( Filter ) ? "(RunOnWindows=True)&(LoadFromGAC!=True)&(IIS!=True)&(Category!=AzureFunctions)&(SkipInCI!=True)" : Filter )
15961596 . SetTestTargetPlatform ( TargetPlatform )
15971597 . SetIsDebugRun ( isDebugRun )
@@ -2104,8 +2104,8 @@ var name when multiPackageProjects.Contains(name) => false,
21042104 // Run these ones in parallel
21052105 DotNetTest ( config => config
21062106 . SetConfiguration ( BuildConfiguration )
2107- . EnableNoRestore ( )
2108- . EnableNoBuild ( )
2107+ // .EnableNoRestore()
2108+ // .EnableNoBuild()
21092109 . SetFramework ( Framework )
21102110 //.WithMemoryDumpAfter(timeoutInMinutes: 30)
21112111 . EnableCrashDumps ( )
@@ -2127,8 +2127,8 @@ var name when multiPackageProjects.Contains(name) => false,
21272127 // Run this one separately so we can tail output
21282128 DotNetTest ( config => config
21292129 . SetConfiguration ( BuildConfiguration )
2130- . EnableNoRestore ( )
2131- . EnableNoBuild ( )
2130+ // .EnableNoRestore()
2131+ // .EnableNoBuild()
21322132 . SetFramework ( Framework )
21332133 //.WithMemoryDumpAfter(timeoutInMinutes: 30)
21342134 . EnableCrashDumps ( )
@@ -2185,8 +2185,8 @@ var name when multiPackageProjects.Contains(name) => false,
21852185 // Run these ones in parallel
21862186 DotNetTest ( config => config
21872187 . SetConfiguration ( BuildConfiguration )
2188- . EnableNoRestore ( )
2189- . EnableNoBuild ( )
2188+ // .EnableNoRestore()
2189+ // .EnableNoBuild()
21902190 . SetFramework ( Framework )
21912191 //.WithMemoryDumpAfter(timeoutInMinutes: 30)
21922192 . EnableCrashDumps ( )
@@ -2209,8 +2209,8 @@ var name when multiPackageProjects.Contains(name) => false,
22092209 // Run this one separately so we can tail output
22102210 DotNetTest ( config => config
22112211 . SetConfiguration ( BuildConfiguration )
2212- . EnableNoRestore ( )
2213- . EnableNoBuild ( )
2212+ // .EnableNoRestore()
2213+ // .EnableNoBuild()
22142214 . SetFramework ( Framework )
22152215 //.WithMemoryDumpAfter(timeoutInMinutes: 30)
22162216 . EnableCrashDumps ( )
0 commit comments