Skip to content

Commit

Permalink
[gh-1343] Exclude ILAsm.SourceGenerator from branch version updates
Browse files Browse the repository at this point in the history
  • Loading branch information
ashmind committed Nov 18, 2024
1 parent dee68c5 commit 7e14442
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion #scripts/roslyn-branches/flow/update/updateBranch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ async function buildSharpLab(roslynPackagesRoot: string) {
// sigh: dotnet.exe should do this, but of course it does not
const projectPath = projectPathUntyped as string;
const projectName = path.basename(projectPath);
if (/mirrorsharp[^/\\]*[/\\]Internal\.Roslyn/i.test(projectPath)) {
if (/mirrorsharp[^/\\]*[/\\]Internal\.Roslyn|Mobius\.ILasm\.Tests\.SourceGenerator/i.test(projectPath)) {
console.log(` ${projectName}`);
console.log(' Skipping');
continue;
Expand Down

0 comments on commit 7e14442

Please sign in to comment.