11 references to GetAssemblyLocation
Microsoft.TestPlatform.CrossPlatEngine (5)
DataCollection\DefaultDataCollectionLauncher.cs (1)
55var dataCollectorDirectory = Path.GetDirectoryName(typeof(DefaultDataCollectionLauncher).Assembly.GetAssemblyLocation());
DataCollection\DotnetDataCollectionLauncher.cs (1)
64var dataCollectorDirectory = Path.GetDirectoryName(typeof(DefaultDataCollectionLauncher).Assembly.GetAssemblyLocation());
DataCollection\ProxyDataCollectionManager.cs (1)
350var extensionsFolder = Path.Combine(Path.GetDirectoryName(typeof(ITestPlatform).Assembly.GetAssemblyLocation())!, "Extensions");
Discovery\DiscovererEnumerator.cs (1)
299var discovererLocation = discoverer.Value.GetType().Assembly.GetAssemblyLocation();
Execution\BaseRunTests.cs (1)
495var executorLocation = executorType.Assembly.GetAssemblyLocation();
Microsoft.TestPlatform.Utilities (1)
CodeCoverageDataAttachmentsHandler.cs (1)
169var dataAttachmentAssemblyLocation = typeof(CodeCoverageDataAttachmentsHandler).Assembly.GetAssemblyLocation()!;
Microsoft.VisualStudio.TestPlatform.Client (1)
TestPlatform.cs (1)
298Path.GetDirectoryName(typeof(TestPlatform).Assembly.GetAssemblyLocation())!,
Microsoft.VisualStudio.TestPlatform.Common (4)
ExtensionFramework\TestPluginCache.cs (2)
354var currentDirectory = Path.GetDirectoryName(typeof(TestPluginCache).Assembly.GetAssemblyLocation())!; 379var currentDirectory = Path.GetDirectoryName(typeof(TestPluginCache).Assembly.GetAssemblyLocation())!;
ExtensionFramework\Utilities\TestExtensions.cs (1)
432if (string.Equals(extensionType?.Assembly.GetAssemblyLocation(), extensionAssembly))
Utilities\InstallationContext.cs (1)
27var vsInstallPath = new DirectoryInfo(typeof(InstallationContext).Assembly.GetAssemblyLocation()).Parent?.Parent?.Parent?.FullName;