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