Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
944f1ab
Update dependencies from https://github.com/dotnet/razor build 202604…
dotnet-maestro[bot] Apr 22, 2026
370ac4d
Update dependencies from https://github.com/dotnet/arcade build 20260…
dotnet-maestro[bot] Apr 22, 2026
01d0ec8
Fix license scan exclusion regex to match ignore patterns at any dept…
mthalman Apr 22, 2026
04dde82
Update dependencies from https://github.com/dotnet/arcade build 20260…
dotnet-maestro[bot] Apr 25, 2026
60d00e3
Update dependencies from https://github.com/dotnet/roslyn-analyzers b…
dotnet-maestro[bot] Apr 26, 2026
bcbcdad
Update dependencies from https://github.com/dotnet/razor build 202604…
dotnet-maestro[bot] Apr 28, 2026
c4e2a89
Update branding to 8.0.422
vseanreesermsft May 5, 2026
0b9ab7f
Update branding to 9.0.118
vseanreesermsft May 5, 2026
eceb411
Update branding to 8.0.422 (#54189)
DonnaChen888 May 6, 2026
906bd06
Update branding to 9.0.118 (#54190)
DonnaChen888 May 6, 2026
2304791
Reset files to release/9.0.1xx
github-actions[bot] May 6, 2026
18bb4e7
[release/8.0.4xx] Update dependencies from dotnet/razor (#54032)
DonnaChen888 May 6, 2026
b0332bd
[release/8.0.4xx] Update dependencies from dotnet/arcade (#54034)
DonnaChen888 May 6, 2026
31b3f1f
[release/9.0.1xx] Update dependencies from dotnet/scenario-tests (#54…
dotnet-maestro[bot] May 6, 2026
bd87a56
Update dependencies from https://github.com/dotnet/templating build 2…
dotnet-maestro[bot] May 6, 2026
b0a331a
Merge branch 'release/9.0.1xx' of https://github.com/dotnet/sdk into …
DonnaChen888 May 6, 2026
f59b00a
[release/9.0.1xx] Update dependencies from dotnet/source-build-assets…
dotnet-maestro[bot] May 6, 2026
29bf267
Update dependencies from https://github.com/dotnet/templating build 2…
dotnet-maestro[bot] May 6, 2026
f312039
Update dependencies from https://github.com/dotnet/scenario-tests bui…
dotnet-maestro[bot] May 6, 2026
1b97a46
[automated] Merge branch 'release/8.0.4xx' => 'release/9.0.1xx' (#54198)
nagilson May 6, 2026
0a36f20
[release/9.0.1xx] Update dependencies from dotnet/templating (#54202)
nagilson May 6, 2026
2530596
Merge branch 'release/9.0.1xx' into darc-release/9.0.1xx-017fe9db-799…
nagilson May 6, 2026
6f09d1f
[release/9.0.1xx] Update dependencies from dotnet/roslyn-analyzers (#…
nagilson May 6, 2026
073f872
Disable PathEndsWithSlashOrBackslash test
nagilson May 6, 2026
8bba671
[release/9.0.1xx] Update dependencies from dotnet/scenario-tests (#54…
nagilson May 6, 2026
169ebac
Disable PathEndsWithSlashOrBackslash test (#54214)
nagilson May 6, 2026
a38fd73
Update dependencies from https://github.com/dotnet/templating build 2…
dotnet-maestro[bot] May 7, 2026
3a476a6
[release/8.0.4xx] Update dependencies from dotnet/templating (#54217)
DonnaChen888 May 7, 2026
2569759
Reset files to release/9.0.1xx
github-actions[bot] May 7, 2026
9f23fee
Merge branch 'release/9.0.1xx' into merge/release/8.0.4xx-to-release/…
DonnaChen888 May 7, 2026
756f82d
[automated] Merge branch 'release/8.0.4xx' => 'release/9.0.1xx' (#54219)
DonnaChen888 May 7, 2026
83d4622
Update dependencies from https://github.com/dotnet/source-build-asset…
dotnet-maestro[bot] May 12, 2026
ee36a87
[release/9.0.1xx] Update dependencies from dotnet/source-build-assets…
DonnaChen888 May 12, 2026
38b135a
Reset files to release/9.0.3xx
github-actions[bot] May 12, 2026
2961e60
Merge branch 'release/9.0.3xx' into merge/release/9.0.1xx-to-release/…
DonnaChen888 May 12, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ private void FilterFiles(ScancodeResults scancodeResults, string[]? additionalIg
string lookaheads = string.Join("", additionalIgnorePatterns.Select(p =>
{
string prefix = p.TrimEnd('*').TrimEnd('/');
return $"(?!{Regex.Escape(prefix)}/)";
return $"(?!(?:.*/)?{Regex.Escape(prefix)}/)";
}));
exclusionRegex += lookaheads;
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Licensed to the .NET Foundation under one or more agreements.
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

using System.Runtime.CompilerServices;
Expand Down Expand Up @@ -732,7 +732,7 @@ public void EnsureOutputPathEscaped(string flag)
}
}

[Theory]
[Theory(Skip = "https://github.com/dotnet/sdk/issues/54209")]
// Even count of slash/backslash
[InlineData("--output", "\\\\")]
[InlineData("--output", "\\\\\\\\")]
Expand Down
Loading