File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -176,7 +176,7 @@ public IEnumerable<string> GetCustomDefaultConfigurationValueIfSpecified()
176
176
Parallel . ForEach ( sln . SolutionProjects . AsEnumerable ( ) , ( project , state ) =>
177
177
{
178
178
#pragma warning disable CS8604 // Possible null reference argument.
179
- string projectFullPath = Path . Combine ( Path . GetDirectoryName ( slnFullPath ) , project . FilePath ) ;
179
+ string projectFullPath = Path . GetFullPath ( project . FilePath , Path . GetDirectoryName ( slnFullPath ) ) ;
180
180
#pragma warning restore CS8604 // Possible null reference argument.
181
181
if ( IsUnanalyzableProjectInSolution ( project , projectFullPath ) )
182
182
return ;
@@ -220,7 +220,7 @@ public IEnumerable<string> GetCustomDefaultConfigurationValueIfSpecified()
220
220
foreach ( var project in sln . SolutionProjects . AsEnumerable ( ) )
221
221
{
222
222
#pragma warning disable CS8604 // Possible null reference argument.
223
- string projectFullPath = Path . Combine ( Path . GetDirectoryName ( slnPath ) , project . FilePath ) ;
223
+ string projectFullPath = Path . GetFullPath ( project . FilePath , Path . GetDirectoryName ( slnPath ) ) ;
224
224
#pragma warning restore CS8604 // Possible null reference argument.
225
225
if ( IsUnanalyzableProjectInSolution ( project , projectFullPath ) )
226
226
continue ;
You can’t perform that action at this time.
0 commit comments