5 writes to Path
Microsoft.Build (5)
BackEnd\Components\SdkResolution\SdkResolverManifest.cs (5)
26this.Path = Path; 82manifest.Path = FileUtilities.FixFilePath(manifest.Path); 85manifest.Path = System.IO.Path.Combine(manifestFolder, manifest.Path); 86manifest.Path = System.IO.Path.GetFullPath(manifest.Path); 117manifest.Path = reader.ReadElementContentAsString();
11 references to Path
Microsoft.Build (10)
BackEnd\Components\SdkResolution\SdkResolverLoader.cs (6)
102return manifestsList.Select(manifest => manifest.Path).ToList(); 192if (manifest == null || string.IsNullOrEmpty(manifest.Path)) 203if (string.IsNullOrEmpty(manifest.Path) || !FileUtilities.FileExistsNoThrow(manifest.Path)) 205ProjectFileErrorUtilities.ThrowInvalidProjectFile(new BuildEventFileInfo(location), "SdkResolverDllInManifestMissing", pathToManifest, manifest.Path); 261LoadResolvers(manifest.Path, location, resolvers);
BackEnd\Components\SdkResolution\SdkResolverManifest.cs (4)
82manifest.Path = FileUtilities.FixFilePath(manifest.Path); 83if (!System.IO.Path.IsPathRooted(manifest.Path)) 85manifest.Path = System.IO.Path.Combine(manifestFolder, manifest.Path); 86manifest.Path = System.IO.Path.GetFullPath(manifest.Path);
Microsoft.Build.Engine.UnitTests (1)
BackEnd\SdkResolverLoader_Tests.cs (1)
262resolversManifestsFound.First().Path.ShouldBe(assemblyToLoad);