5 writes to Path
Microsoft.Build (5)
BackEnd\Components\SdkResolution\SdkResolverManifest.cs (5)
27this.Path = Path; 83manifest.Path = FileUtilities.FixFilePath(manifest.Path); 86manifest.Path = System.IO.Path.Combine(manifestFolder, manifest.Path); 87manifest.Path = System.IO.Path.GetFullPath(manifest.Path); 118manifest.Path = reader.ReadElementContentAsString();
11 references to Path
Microsoft.Build (10)
BackEnd\Components\SdkResolution\SdkResolverLoader.cs (6)
101return manifestsList.Select(manifest => manifest.Path).ToList(); 191if (manifest == null || string.IsNullOrEmpty(manifest.Path)) 202if (string.IsNullOrEmpty(manifest.Path) || !FileUtilities.FileExistsNoThrow(manifest.Path)) 204ProjectFileErrorUtilities.ThrowInvalidProjectFile(new BuildEventFileInfo(location), "SdkResolverDllInManifestMissing", pathToManifest, manifest.Path); 287LoadResolvers(manifest.Path, location, resolvers);
BackEnd\Components\SdkResolution\SdkResolverManifest.cs (4)
83manifest.Path = FileUtilities.FixFilePath(manifest.Path); 84if (!System.IO.Path.IsPathRooted(manifest.Path)) 86manifest.Path = System.IO.Path.Combine(manifestFolder, manifest.Path); 87manifest.Path = System.IO.Path.GetFullPath(manifest.Path);
Microsoft.Build.Engine.UnitTests (1)
BackEnd\SdkResolverLoader_Tests.cs (1)
262resolversManifestsFound.First().Path.ShouldBe(assemblyToLoad);