File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ public async Task LoadProjects(string glob)
4141 matcher . AddIncludePatterns ( glob . Split ( ',' ) ) ;
4242
4343 projects = solution . Projects
44- . Where ( p => matcher . Match ( Path . GetDirectoryName ( slnFile ) , p . FilePath ) . HasMatches )
44+ . Where ( p => matcher . Match ( Path . GetDirectoryName ( slnFile ) ! , p . FilePath ! ) . HasMatches )
4545 . Select ( p => new Project ( p . Id ) )
4646 . ToList ( ) ;
4747 }
Original file line number Diff line number Diff line change 1- <Project Sdk =" Microsoft.NET.Sdk" >
1+ <Project Sdk =" Microsoft.NET.Sdk" >
22
33 <PropertyGroup >
44 <OutputType >Exe</OutputType >
5- <TargetFramework >net60 </TargetFramework >
6- <Version >1 .0.4 </Version >
5+ <TargetFramework >net70 </TargetFramework >
6+ <Version >2 .0.0 </Version >
77 <PackageLicenseExpression >MIT</PackageLicenseExpression >
88 <Nullable >enable</Nullable >
99 <WarningsAsErrors >nullable</WarningsAsErrors >
1919 </PropertyGroup >
2020
2121 <ItemGroup >
22- <PackageReference Include =" Microsoft.Build.Locator" Version =" 1.4.1 " />
23- <PackageReference Include =" Microsoft.CodeAnalysis.CSharp.Workspaces" Version =" 4.2 .0" />
24- <PackageReference Include =" Microsoft.CodeAnalysis.Workspaces.MSBuild" Version =" 4.2 .0" />
25- <PackageReference Include =" Microsoft.Extensions.FileSystemGlobbing" Version =" 6 .0.0" />
22+ <PackageReference Include =" Microsoft.Build.Locator" Version =" 1.5.5 " />
23+ <PackageReference Include =" Microsoft.CodeAnalysis.CSharp.Workspaces" Version =" 4.4 .0" />
24+ <PackageReference Include =" Microsoft.CodeAnalysis.Workspaces.MSBuild" Version =" 4.4 .0" />
25+ <PackageReference Include =" Microsoft.Extensions.FileSystemGlobbing" Version =" 7 .0.0" />
2626 <PackageReference Include =" Polly" Version =" 7.2.3" />
2727 <PackageReference Include =" Scriban" Version =" 5.5.0" />
2828 <PackageReference Include =" System.CommandLine" Version =" 2.0.0-beta4.22272.1" />
You can’t perform that action at this time.
0 commit comments