1 instantiation of AssemblyInfo
Microsoft.DotNet.PackageTesting (1)
VerifyClosure.cs (1)
447return new AssemblyInfo(path, name, version, references, moduleReferences);
29 references to AssemblyInfo
Microsoft.DotNet.PackageTesting (29)
VerifyClosure.cs (29)
45private Dictionary<string, AssemblyInfo> assemblies = new Dictionary<string, AssemblyInfo>(); 60foreach(var assembly in assemblies.Values) 65foreach(var assembly in assemblies.Values) 100var assemblyInfo = AssemblyInfo.GetAssemblyInfo(TaskEnvironment.GetAbsolutePath(file)); 108AssemblyInfo existingInfo; 167void CheckDependencies(AssemblyInfo assembly) 171var depStack = new Stack<AssemblyInfo>(); 178void CheckDependencies(Stack<AssemblyInfo> depStack) 180AssemblyInfo assm = depStack.Peek(); 207AssemblyInfo depAssm; 258void DumpCycles(AssemblyInfo assembly) 262var depStack = new Stack<AssemblyInfo>(); 265var suspectCycles = new Dictionary<AssemblyInfo, AssemblyInfo[]>(); 279void DumpCycles(Stack<AssemblyInfo> depStack, AssemblyInfo root, Dictionary<AssemblyInfo, AssemblyInfo[]> suspectCycles) 281AssemblyInfo assm = depStack.Peek(); 290AssemblyInfo depAssm; 311var suspectAssembly = cycle.FirstOrDefault(a => a != root) ?? root; 313AssemblyInfo[] existingCycle; 330private string PrintCycle(AssemblyInfo[] cycleStack) 334foreach (var assmebly in cycleStack) 347private void WriteDependencyGraph(string dependencyGraphFilePath, IEnumerable<AssemblyInfo> assemblies) 358foreach(var assembly in assemblies) 431public static AssemblyInfo GetAssemblyInfo(AbsolutePath path)