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