1 write to FullPath
dotnet-svcutil-lib (1)
Shared\ProjectDependency.cs (1)
145this.FullPath = fileHasKnownExtension ? Path.GetFullPath(filePath) : filePath;
14 references to FullPath
dotnet-svcutil-lib (14)
Shared\MSBuildProj.cs (10)
528if (d.FullPath == null && dependency.FullPath == null) 532return d.FullPath == dependency.FullPath; 541this.ProjectReferceGroup.Add(new XElement("ProjectReference", new XAttribute("Include", dependency.FullPath))); 552this.ReferenceGroup.Add(new XElement("Reference", new XAttribute("Condition", $"'$(TargetFramework)' == '{netfxInfo.FullName}'"), new XAttribute("Include", dependency.AssemblyName), new XElement("HintPath", dependency.FullPath))); 557this.ReferenceGroup.Add(new XElement("Reference", new XAttribute("Include", dependency.AssemblyName), new XElement("HintPath", dependency.FullPath))); 575basePath = dependency.FullPath.Substring(0, dependency.FullPath.LastIndexOf(Path.DirectorySeparatorChar)); 932if (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);