File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
csharp/autobuilder/Semmle.Autobuild.CSharp Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -48,8 +48,11 @@ public override BuildScript GetBuildScript()
48
48
attempt = new BuildCommandRule ( DotNetRule . WithDotNet ) . Analyse ( this , false ) & CheckExtractorRun ( true ) ;
49
49
break ;
50
50
case CSharpBuildStrategy . Buildless :
51
- // No need to check that the extractor has been executed in buildless mode
52
- attempt = new StandaloneBuildRule ( ) . Analyse ( this , false ) ;
51
+ attempt = DotNetRule . WithDotNet ( this , env =>
52
+ {
53
+ // No need to check that the extractor has been executed in buildless mode
54
+ return new StandaloneBuildRule ( ) . Analyse ( this , false ) ;
55
+ } ) ;
53
56
break ;
54
57
case CSharpBuildStrategy . MSBuild :
55
58
attempt = new MsBuildRule ( ) . Analyse ( this , false ) & CheckExtractorRun ( true ) ;
You can’t perform that action at this time.
0 commit comments