1 write to AssemblyName
dotnet-svcutil-lib (1)
Shared\ProjectDependency.cs (1)
149
this.
AssemblyName
= string.IsNullOrWhiteSpace(filePath) ? packageName :
10 references to AssemblyName
dotnet-svcutil-lib (10)
CommandProcessorOptions.cs (2)
824
FileInfo assemblyFile = directoryInfo.GetFiles(reference.
AssemblyName
+ ".*", SearchOption.AllDirectories).FirstOrDefault();
832
assembly = TypeLoader.LoadAssembly(reference.
AssemblyName
);
Shared\MSBuildProj.cs (3)
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)));
568
if(copyInternalAssets && dependency.
AssemblyName
== "dotnet-svcutil-lib")
Shared\ProjectDependency.cs (5)
108
if (s_projectExtensions.Any((ext) => String.Compare(Path.GetExtension(
AssemblyName
), ext, StringComparison.OrdinalIgnoreCase) == 0))
152
this.Name = string.IsNullOrWhiteSpace(packageName) ? this.
AssemblyName
: packageName;
155
string.Format(CultureInfo.InvariantCulture, "{0}, {{{1}, {2}}}", this.
AssemblyName
, this.Name, this.Version) :
406
StringComparer.CurrentCultureIgnoreCase.Compare(this.
AssemblyName
, other.
AssemblyName
) :