File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
csharp/ql/integration-tests/all-platforms/blazor_build_mode_none Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -2,12 +2,16 @@ import csharp
2
2
3
3
private string getPath ( File f ) {
4
4
result = f .getRelativePath ( ) and
5
- not exists ( result .indexOf ( "_ql_csharp_ql_integration_tests_blazor_build_mode_none_" ) )
5
+ not exists (
6
+ result .indexOf ( "_ql_csharp_ql_integration_tests_all_platforms_blazor_build_mode_none_" )
7
+ )
6
8
or
7
9
exists ( int index1 , int index2 , string pattern |
8
10
pattern = "Microsoft.NET.Sdk.Razor.SourceGenerators.RazorSourceGenerator" and
9
11
index1 = f .getRelativePath ( ) .indexOf ( pattern ) and
10
- index2 = f .getRelativePath ( ) .indexOf ( "_ql_csharp_ql_integration_tests_blazor_build_mode_none_" ) and
12
+ index2 =
13
+ f .getRelativePath ( )
14
+ .indexOf ( "_ql_csharp_ql_integration_tests_all_platforms_blazor_build_mode_none_" ) and
11
15
result =
12
16
f .getRelativePath ( ) .substring ( 0 , index1 + pattern .length ( ) ) + "/[...]" +
13
17
f .getRelativePath ( ) .substring ( index2 , f .getRelativePath ( ) .length ( ) )
You can’t perform that action at this time.
0 commit comments