1 write to Delta2
Microsoft.CodeAnalysis.Test.Utilities (1)
AssemblyLoadTestFixture.cs (1)
221Delta2 = GenerateDll("Delta", v2Directory, Delta2Source);
22 references to Delta2
Microsoft.CodeAnalysis.Test.Utilities (3)
AssemblyLoadTestFixture.cs (3)
66/// An assembly with a reference to <see cref="Delta2"/>. 77/// <see cref="Delta2"/> so we can test having two assemblies that look the same but aren't. 225var delta2Reference = MetadataReference.CreateFromFile(Delta2);
Microsoft.CodeAnalysis.UnitTests (19)
AnalyzerAssemblyLoaderTests.cs (19)
345File.Copy(testFixture.Delta2, delta1Copy, overwrite: true); 348var name = AssemblyName.GetAssemblyName(testFixture.Delta2); 795loader.AddDependencyLocation(testFixture.Delta2); 822("Delta", "2.0.0.0", testFixture.Delta2), 883Assert.Throws<InvalidOperationException>(() => loader.GetRealAnalyzerLoadPath(testFixture.Delta2)); 886loader.AddDependencyLocation(testFixture.Delta2); 889testFixture.Delta2, 909loader.AddDependencyLocation(testFixture.Delta2); 938testFixture.Delta2, 958loader.AddDependencyLocation(testFixture.Delta2); 961Assembly delta2 = loader.LoadFromPath(testFixture.Delta2); 972Assert.Equal(loader.GetRealAnalyzerLoadPath(testFixture.Delta2), delta2.Location); 1022Assert.Throws<InvalidOperationException>(() => loader.GetRealAnalyzerLoadPath(testFixture.Delta2)); 1025loader.AddDependencyLocation(testFixture.Delta2); 1028testFixture.Delta2, 1053var delta2File = tempDir2.CreateFile("Delta.dll").CopyContentFrom(testFixture.Delta2).Path; 1111loader2.AddDependencyLocation(testFixture.Delta2); 1137("Delta", "2.0.0.0", testFixture.Delta2), 1552var delta2File = tempDir2.CreateFile("Delta.dll").CopyContentFrom(testFixture.Delta2).Path;