1 write to FullPath
dotnet-svcutil-lib (1)
Shared\ProjectDependency.cs (1)
145this.FullPath = fileHasKnownExtension ? Path.GetFullPath(filePath) : filePath;
13 references to FullPath
dotnet-svcutil-lib (13)
Shared\MSBuildProj.cs (9)
525if (d.FullPath == null && dependency.FullPath == null) 529return d.FullPath == dependency.FullPath; 538this.ProjectReferceGroup.Add(new XElement("ProjectReference", new XAttribute("Include", dependency.FullPath))); 541this.ReferenceGroup.Add(new XElement("Reference", new XAttribute("Include", dependency.AssemblyName), new XElement("HintPath", dependency.FullPath))); 558basePath = dependency.FullPath.Substring(0, dependency.FullPath.LastIndexOf(Path.DirectorySeparatorChar)); 915if (File.Exists(dependency.FullPath) && !assemblyDependencies.Contains(dependency))
Shared\ProjectDependency.cs (4)
156this.FullPath; 401StringComparer.CurrentCultureIgnoreCase.Compare(this.FullPath, other.FullPath) : 413return new ProjectDependency(this.FullPath, this.Name, this.Version, this.DependencyType);