1 write to FullPath
dotnet-svcutil-lib (1)
Shared\ProjectDependency.cs (1)
145
this.
FullPath
= fileHasKnownExtension ? Path.GetFullPath(filePath) : filePath;
14 references to FullPath
dotnet-svcutil-lib (14)
Shared\MSBuildProj.cs (10)
528
if (d.
FullPath
== null && dependency.
FullPath
== null)
532
return d.
FullPath
== dependency.
FullPath
;
541
this.ProjectReferceGroup.Add(new XElement("ProjectReference", new XAttribute("Include", dependency.
FullPath
)));
552
this.ReferenceGroup.Add(new XElement("Reference", new XAttribute("Condition", $"'$(TargetFramework)' == '{netfxInfo.FullName}'"), new XAttribute("Include", dependency.AssemblyName), new XElement("HintPath", dependency.
FullPath
)));
557
this.ReferenceGroup.Add(new XElement("Reference", new XAttribute("Include", dependency.AssemblyName), new XElement("HintPath", dependency.
FullPath
)));
575
basePath = dependency.
FullPath
.Substring(0, dependency.
FullPath
.LastIndexOf(Path.DirectorySeparatorChar));
932
if (File.Exists(dependency.
FullPath
) && !assemblyDependencies.Contains(dependency))
Shared\ProjectDependency.cs (4)
156
this.
FullPath
;
401
StringComparer.CurrentCultureIgnoreCase.Compare(this.
FullPath
, other.
FullPath
) :
413
return new ProjectDependency(this.
FullPath
, this.Name, this.Version, this.DependencyType);