155 references to GetExecutingAssembly
aspire (1)
Packaging\PackagingService.cs (1)
128var assembly = Assembly.GetExecutingAssembly();
Aspire.Cli.Tests (1)
tests\Shared\TestModuleInitializer.cs (1)
29? Path.GetDirectoryName(Assembly.GetExecutingAssembly()!.Location) ?? string.Empty
Aspire.Dashboard.Tests (2)
Integration\Playwright\Infrastructure\DashboardServerFixture.cs (2)
42var currentAssemblyName = Assembly.GetExecutingAssembly().GetName().Name!; 43var currentAssemblyDirectory = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location)!;
Aspire.Hosting.Azure.Kusto.Tests (1)
tests\Shared\TestModuleInitializer.cs (1)
29? Path.GetDirectoryName(Assembly.GetExecutingAssembly()!.Location) ?? string.Empty
Aspire.Hosting.Azure.Tests (1)
tests\Shared\TestModuleInitializer.cs (1)
29? Path.GetDirectoryName(Assembly.GetExecutingAssembly()!.Location) ?? string.Empty
Aspire.Hosting.CodeGeneration.Go (1)
AtsGoCodeGenerator.cs (1)
50var assembly = Assembly.GetExecutingAssembly();
Aspire.Hosting.CodeGeneration.Go.Tests (1)
tests\Shared\TestModuleInitializer.cs (1)
29? Path.GetDirectoryName(Assembly.GetExecutingAssembly()!.Location) ?? string.Empty
Aspire.Hosting.CodeGeneration.Java (1)
AtsJavaCodeGenerator.cs (1)
49var assembly = Assembly.GetExecutingAssembly();
Aspire.Hosting.CodeGeneration.Java.Tests (1)
tests\Shared\TestModuleInitializer.cs (1)
29? Path.GetDirectoryName(Assembly.GetExecutingAssembly()!.Location) ?? string.Empty
Aspire.Hosting.CodeGeneration.Python (1)
AtsPythonCodeGenerator.cs (1)
48var assembly = Assembly.GetExecutingAssembly();
Aspire.Hosting.CodeGeneration.Python.Tests (1)
tests\Shared\TestModuleInitializer.cs (1)
29? Path.GetDirectoryName(Assembly.GetExecutingAssembly()!.Location) ?? string.Empty
Aspire.Hosting.CodeGeneration.Rust (1)
AtsRustCodeGenerator.cs (1)
61var assembly = Assembly.GetExecutingAssembly();
Aspire.Hosting.CodeGeneration.Rust.Tests (1)
tests\Shared\TestModuleInitializer.cs (1)
29? Path.GetDirectoryName(Assembly.GetExecutingAssembly()!.Location) ?? string.Empty
Aspire.Hosting.CodeGeneration.TypeScript (1)
AtsTypeScriptCodeGenerator.cs (1)
351var assembly = Assembly.GetExecutingAssembly();
Aspire.Hosting.CodeGeneration.TypeScript.Tests (1)
tests\Shared\TestModuleInitializer.cs (1)
29? Path.GetDirectoryName(Assembly.GetExecutingAssembly()!.Location) ?? string.Empty
Aspire.Hosting.Containers.Tests (1)
tests\Shared\TestModuleInitializer.cs (1)
29? Path.GetDirectoryName(Assembly.GetExecutingAssembly()!.Location) ?? string.Empty
Aspire.Hosting.Docker.Tests (1)
tests\Shared\TestModuleInitializer.cs (1)
29? Path.GetDirectoryName(Assembly.GetExecutingAssembly()!.Location) ?? string.Empty
Aspire.Hosting.Foundry.Tests (1)
tests\Shared\TestModuleInitializer.cs (1)
29? Path.GetDirectoryName(Assembly.GetExecutingAssembly()!.Location) ?? string.Empty
Aspire.Hosting.Kubernetes.Tests (1)
tests\Shared\TestModuleInitializer.cs (1)
29? Path.GetDirectoryName(Assembly.GetExecutingAssembly()!.Location) ?? string.Empty
Aspire.Hosting.Maui.Tests (1)
tests\Shared\TestModuleInitializer.cs (1)
29? Path.GetDirectoryName(Assembly.GetExecutingAssembly()!.Location) ?? string.Empty
Aspire.Hosting.Python.Tests (1)
tests\Shared\TestModuleInitializer.cs (1)
29? Path.GetDirectoryName(Assembly.GetExecutingAssembly()!.Location) ?? string.Empty
Aspire.Hosting.Tests (1)
tests\Shared\TestModuleInitializer.cs (1)
29? Path.GetDirectoryName(Assembly.GetExecutingAssembly()!.Location) ?? string.Empty
Aspire.Hosting.Yarp.Tests (1)
tests\Shared\TestModuleInitializer.cs (1)
29? Path.GetDirectoryName(Assembly.GetExecutingAssembly()!.Location) ?? string.Empty
Aspire.RuntimeIdentifier.Tool (1)
Program.cs (1)
17RootCommand rootCommand = new("Aspire.RuntimeIdentifier.Tool v" + FileVersionInfo.GetVersionInfo(Assembly.GetExecutingAssembly().Location).ProductVersion)
BuildActionTelemetryTable (1)
Program.cs (1)
24private static readonly string s_executingPath = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location)!;
dotnet-svcutil.xmlserializer.IntegrationTests (2)
SvcutilTests.cs (2)
23string testassemblypath = Assembly.GetExecutingAssembly().Location; 27Tool.Main(new string[] { Assembly.GetExecutingAssembly().Location, $"--out:{outputFile}", $"--smreference:{smassemblypath}", $"--quiet"});
dotnet-svcutil-lib (1)
Metadata\ServiceDescriptor.cs (1)
105string toolPath = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
IdeCoreBenchmarks (2)
CSharpIdeAnalyzerBenchmarks.cs (1)
48var analyzerAssemblyPath = Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), "Microsoft.CodeAnalysis.CSharp.Features.dll");
IncrementalAnalyzerBenchmarks.cs (1)
47var analyzerAssemblyPath = Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), "Microsoft.CodeAnalysis.Features.dll");
illink (1)
ILLink.Tasks (1)
LinkTask.cs (1)
273var taskDirectory = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
Microsoft.AspNetCore.Components.Testing (1)
StartupHook.g.cs (1)
11var startupHookAssembly = Assembly.GetExecutingAssembly();
Microsoft.AspNetCore.Components.Tests (5)
Routing\RouterTest.cs (5)
35_router.AppAssembly = Assembly.GetExecutingAssembly(); 285router.AppAssembly = Assembly.GetExecutingAssembly(); 320testRouter.AppAssembly = Assembly.GetExecutingAssembly(); 367testRouter.AppAssembly = Assembly.GetExecutingAssembly(); 419testRouter.AppAssembly = Assembly.GetExecutingAssembly();
Microsoft.Build (3)
BackEnd\Components\RequestBuilder\AssemblyLoadsTracker.cs (1)
88initiatorType?.Assembly == Assembly.GetExecutingAssembly()
CommunicationsUtilities.cs (1)
320var fileVersion = new Version(FileVersionInfo.GetVersionInfo(Assembly.GetExecutingAssembly().Location).FileVersion);
TypeLoader.cs (1)
75string msbuildDirectory = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
Microsoft.Build.CommandLine.UnitTests (5)
MSBuildServer_Tests.cs (3)
64<UsingTask TaskName=""ProcessIdTask"" AssemblyFile=""{Assembly.GetExecutingAssembly().Location}"" /> 74<UsingTask TaskName=""SleepingTask"" AssemblyFile=""{Assembly.GetExecutingAssembly().Location}"" /> 319<UsingTask TaskName=""ProcessIdTask"" AssemblyFile=""{Assembly.GetExecutingAssembly().Location}"" />
XMake_Tests.cs (2)
69+ $" <UsingTask TaskName=\"{typeof(MessageImportanceCheckingTask).FullName}\" AssemblyFile=\"{Assembly.GetExecutingAssembly().Location}\"/>\n" 3113string customTaskPath = Assembly.GetExecutingAssembly().Location;
Microsoft.Build.Engine.OM.UnitTests (1)
NugetRestoreTests.cs (1)
36string currentAssemblyDir = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location)!;
Microsoft.Build.Engine.UnitTests (25)
BackEnd\BuildManager_Logging_Tests.cs (1)
37<UsingTask TaskName=""CustomBuildEventTask"" AssemblyFile=""{Assembly.GetExecutingAssembly().Location}"" />
BackEnd\BuildManager_Tests.cs (1)
4443AssemblyFile=""" + Assembly.GetExecutingAssembly().Location + @"""
BackEnd\GenerateTemporaryTargetAssembly_Tests.cs (1)
29<UsingTask TaskName=""FailingBuilderTask"" AssemblyFile=""{Assembly.GetExecutingAssembly().Location}"" />
BackEnd\LoggingServicesLogMethod_Tests.cs (1)
1450string taskAssemblyLocation = Assembly.GetExecutingAssembly().Location;
BackEnd\OnError_Tests.cs (1)
583<UsingTask TaskName=""FailingTask"" AssemblyFile=""{Assembly.GetExecutingAssembly().Location}"" />
BackEnd\SdkResolverLoader_Tests.cs (1)
428msBuildExePath = Path.GetFullPath(Assembly.GetExecutingAssembly().Location);
BackEnd\TaskBuilder_Tests.cs (8)
428<CreateItem Include='{Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location)}\**\*.dll'> 566string customTaskPath = Assembly.GetExecutingAssembly().Location; 590string customTaskPath = Assembly.GetExecutingAssembly().Location; 614string customTaskPath = Assembly.GetExecutingAssembly().Location; 639string realTaskPath = Assembly.GetExecutingAssembly().Location; 672string realTaskPath = Assembly.GetExecutingAssembly().Location; 740string customTaskPath = Assembly.GetExecutingAssembly().Location; 752string customTaskPath = Assembly.GetExecutingAssembly().Location;
BackEnd\TaskExecutionHost_Tests.cs (3)
1046string customTaskPath = Assembly.GetExecutingAssembly().Location; 1066string customTaskPath = Assembly.GetExecutingAssembly().Location; 1111string customTaskPath = Assembly.GetExecutingAssembly().Location;
BackEnd\TaskHost_MultiThreadableTask_Tests.cs (1)
66AssemblyFile="{Assembly.GetExecutingAssembly().Location}"
BackEnd\TaskRouter_IntegrationTests.cs (5)
281<UsingTask TaskName=""NonEnlightenedTestTask"" AssemblyFile=""{Assembly.GetExecutingAssembly().Location}"" /> 282<UsingTask TaskName=""InterfaceTestTask"" AssemblyFile=""{Assembly.GetExecutingAssembly().Location}"" /> 283<UsingTask TaskName=""AttributeTestTask"" AssemblyFile=""{Assembly.GetExecutingAssembly().Location}"" /> 342AssemblyFile=""{Assembly.GetExecutingAssembly().Location}"" 390<UsingTask TaskName=""{taskName}"" AssemblyFile=""{Assembly.GetExecutingAssembly().Location}"" />
MSBuildTaskHostTests.cs (1)
18=> field ??= Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location) ?? AppContext.BaseDirectory);
TypeLoader_Tests.cs (1)
102string currentAssembly = Assembly.GetExecutingAssembly().Location;
Microsoft.Build.Tasks.CodeAnalysis.UnitTests (3)
GenerateMSBuildEditorConfigTests.cs (2)
246string executingLocation = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location)?.Replace('\\', '/') ?? string.Empty; 280string executingLocation = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location)?.Replace('\\', '/') ?? string.Empty;
TargetTests.cs (1)
959var task = proj.Xml.AddUsingTask(taskName, string.Empty, Assembly.GetExecutingAssembly().FullName);
Microsoft.Build.Tasks.Core (7)
BootstrapperUtil\BootstrapperBuilder.cs (1)
1988Assembly a = Assembly.GetExecutingAssembly();
CommunicationsUtilities.cs (1)
320var fileVersion = new Version(FileVersionInfo.GetVersionInfo(Assembly.GetExecutingAssembly().Location).FileVersion);
GetSDKReferenceFiles.cs (1)
1096currentAssembly = Assembly.GetExecutingAssembly().CodeBase;
ManifestUtil\ComImporter.cs (1)
22private readonly ResourceManager _resources = new ResourceManager("Microsoft.Build.Tasks.Core.Strings.ManifestUtilities", System.Reflection.Assembly.GetExecutingAssembly());
ManifestUtil\Util.cs (2)
111return Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location); 201Assembly a = Assembly.GetExecutingAssembly();
ManifestUtil\XmlUtil.cs (1)
154Assembly a = Assembly.GetExecutingAssembly();
Microsoft.Build.Tasks.UnitTests (2)
AssemblyDependency\SuggestedRedirects.cs (1)
470using (var info = new AssemblyInformation(Assembly.GetExecutingAssembly().Location))
RoslynCodeTaskFactory_Tests.cs (1)
58string location = Assembly.GetExecutingAssembly().Location;
Microsoft.Build.UnitTests.Shared (2)
RunnerUtilities.cs (2)
23public static ArtifactsLocationAttribute ArtifactsLocationAttribute = Assembly.GetExecutingAssembly().GetCustomAttribute<ArtifactsLocationAttribute>() 34internal static BootstrapLocationAttribute BootstrapLocationAttribute = Assembly.GetExecutingAssembly().GetCustomAttribute<BootstrapLocationAttribute>()
Microsoft.CodeAnalysis.CSharp.CommandLine.UnitTests (10)
CommandLineTests.cs (10)
73var runtimeConfigPath = Path.ChangeExtension(Assembly.GetExecutingAssembly().Location, "runtimeconfig.json"); 293"/analyzer:" + Assembly.GetExecutingAssembly().Location, 2928var csc = CreateCSharpCompiler(null, dir.Path, new[] { "/nologo", "/preferreduilang:en", "/t:library", "/a:" + Assembly.GetExecutingAssembly().Location, "a.cs" }); 2964var csc = CreateCSharpCompiler(null, dir.Path, new[] { "/nologo", "/preferreduilang:en", "/t:library", "/a:" + Assembly.GetExecutingAssembly().Location, "a.cs", "/ruleset:" + ruleSetFile.Path }); 3000"/a:" + Assembly.GetExecutingAssembly().Location, "a.cs", 3011"/a:" + Assembly.GetExecutingAssembly().Location, "a.cs", 3519"/a:" + Assembly.GetExecutingAssembly().Location, "a.cs", 3530"/a:" + Assembly.GetExecutingAssembly().Location, "a.cs", 10636args = args.Append("/a:" + Assembly.GetExecutingAssembly().Location); 15154"/analyzer:" + Assembly.GetExecutingAssembly().Location,
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (1)
CodeRefactorings\CodeRefactoringServiceTest.cs (1)
275var assembly = Assembly.GetExecutingAssembly();
Microsoft.CodeAnalysis.ResxSourceGenerator.UnitTests (4)
Verifiers\CSharpSourceGeneratorVerifier`1+Test.cs (4)
94var currentTestPrefix = $"{Assembly.GetExecutingAssembly().GetName().Name}.Resources.{ResourceName}."; 113var expectedPrefix = $"{Assembly.GetExecutingAssembly().GetName().Name}.Resources.{ResourceName}."; 114foreach (var resourceName in Assembly.GetExecutingAssembly().GetManifestResourceNames()) 121using var resourceStream = Assembly.GetExecutingAssembly().GetManifestResourceStream(resourceName) ?? throw new InvalidOperationException();
Microsoft.CodeAnalysis.UnitTests (9)
Analyzers\AnalyzerFileReferenceTests.cs (9)
98AnalyzerFileReference reference = CreateAnalyzerFileReference(Assembly.GetExecutingAssembly().Location); 124AnalyzerFileReference reference = CreateAnalyzerFileReference(Assembly.GetExecutingAssembly().Location); 145AnalyzerFileReference reference = CreateAnalyzerFileReference(Assembly.GetExecutingAssembly().Location); 367AnalyzerFileReference reference = CreateAnalyzerFileReference(Assembly.GetExecutingAssembly().Location); 391AnalyzerFileReference reference = CreateAnalyzerFileReference(Assembly.GetExecutingAssembly().Location); 404AnalyzerFileReference reference = CreateAnalyzerFileReference(Assembly.GetExecutingAssembly().Location); 426AnalyzerFileReference reference = CreateAnalyzerFileReference(Assembly.GetExecutingAssembly().Location); 517AnalyzerFileReference reference = CreateAnalyzerFileReference(Assembly.GetExecutingAssembly().Location); 550AnalyzerFileReference reference = CreateAnalyzerFileReference(Assembly.GetExecutingAssembly().Location);
Microsoft.CodeAnalysis.Workspaces.MSBuild.UnitTests (1)
TestFiles\Resources.cs (1)
20var resourceStream = Assembly.GetExecutingAssembly().GetManifestResourceStream(resourceName);
Microsoft.CodeAnalysis.Workspaces.UnitTests (2)
SolutionTests\SolutionWithSourceGeneratorTests.cs (2)
1473using (var stream = Assembly.GetExecutingAssembly().GetManifestResourceStream(@"Microsoft.CodeAnalysis.UnitTests.Resources.Microsoft.CodeAnalysis.TestAnalyzerReference.dll.v1")) 1492using (var stream = Assembly.GetExecutingAssembly().GetManifestResourceStream(@"Microsoft.CodeAnalysis.UnitTests.Resources.Microsoft.CodeAnalysis.TestAnalyzerReference.dll.v2"))
Microsoft.Data.Analysis.Tests (1)
DataFrame.IOTests.cs (1)
1338Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location) + "/";
Microsoft.DotNet.Baselines.Tasks (1)
PRCreator.cs (1)
35_client = new GitHubClient(new ProductHeaderValue(System.Reflection.Assembly.GetExecutingAssembly().GetName().Name));
Microsoft.DotNet.Build.Tasks.Workloads (1)
EmbeddedTemplates.cs (1)
51using Stream rs = Assembly.GetExecutingAssembly().GetManifestResourceStream(resourceName);
Microsoft.DotNet.GenFacades (1)
RoslynBuildTask.cs (1)
20AssemblyLoadContext currentContext = AssemblyLoadContext.GetLoadContext(Assembly.GetExecutingAssembly())!;
Microsoft.ML.AutoML (1)
Tuner\AutoZeroTuner.cs (1)
66var assembly = Assembly.GetExecutingAssembly();
Microsoft.ML.CodeAnalyzer.Tests (2)
Helpers\TestUtils.cs (2)
19using (var stream = Assembly.GetExecutingAssembly().GetManifestResourceStream(resourceName)) 29using (var stream = Assembly.GetExecutingAssembly().GetManifestResourceStream(resourceName))
Microsoft.ML.CpuMath.UnitTests (1)
UnitTests.cs (1)
997options.StartInfo.WorkingDirectory = System.IO.Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
Microsoft.ML.OnnxConverter (1)
SaveOnnxCommand.cs (1)
325var assembly = System.Reflection.Assembly.GetExecutingAssembly();
Microsoft.ML.Predictor.Tests (1)
ResultProcessor\TestResultProcessor.cs (1)
44Stream resourceStream = Assembly.GetExecutingAssembly().GetManifestResourceStream(resourceName);
Microsoft.ML.Samples (1)
Program.cs (1)
14foreach (var type in Assembly.GetExecutingAssembly().GetTypes())
Microsoft.ML.Samples.GPU (1)
Program.cs (1)
14var types = Assembly.GetExecutingAssembly().GetTypes();
Microsoft.ML.Transforms (1)
Text\StopWordsRemovingTransformer.cs (1)
343Assembly assembly = Assembly.GetExecutingAssembly();
Microsoft.VisualBasic.Tests (4)
Microsoft\VisualBasic\ApplicationServices\AssemblyInfoTests.cs (4)
37yield return new object[] { Assembly.GetExecutingAssembly() }; 43var executingAssembly = Assembly.GetExecutingAssembly(); 53AssemblyInfo assemblyInfo = new(Assembly.GetExecutingAssembly()); 62AssemblyInfo assemblyInfo = new(Assembly.GetExecutingAssembly());
MSBuild (3)
CommunicationsUtilities.cs (1)
320var fileVersion = new Version(FileVersionInfo.GetVersionInfo(Assembly.GetExecutingAssembly().Location).FileVersion);
TypeLoader.cs (1)
75string msbuildDirectory = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
XMake.cs (1)
1510parameters.NodeExeLocation = Assembly.GetExecutingAssembly().Location;
MSBuildTaskHost (1)
CommunicationsUtilities.cs (1)
224var fileVersion = new Version(FileVersionInfo.GetVersionInfo(Assembly.GetExecutingAssembly().Location).FileVersion);
PresentationBuildTasks (3)
MS\Internal\MarkupCompiler\MarkupCompiler.cs (1)
2422AssemblyName assemblyName = new AssemblyName(Assembly.GetExecutingAssembly().FullName);
MS\Internal\Tasks\IncrementalCompileAnalyzer.cs (1)
83if (IsFileChanged(Assembly.GetExecutingAssembly().Location) ||
MS\Internal\Tasks\TaskHelper.cs (1)
47string acPath = Assembly.GetExecutingAssembly().Location;
PresentationCore (1)
MS\Internal\FontCache\FontSource.cs (1)
357Assembly fontResourceAssembly = Assembly.GetExecutingAssembly();
PresentationFramework (2)
MS\Internal\WindowsRuntime\Generated\WinRT.cs (2)
100private static readonly string _currentModuleDirectory = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location); 130_moduleHandle = NativeLibrary.Load(fileName, Assembly.GetExecutingAssembly(), null);
Roslyn.Compilers.Extension (1)
CompilerPackage.cs (1)
37var packagePath = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
System.Data.Odbc (2)
src\libraries\Common\src\Interop\Unix\Interop.Odbc.cs (1)
28NativeLibrary.SetDllImportResolver(Assembly.GetExecutingAssembly(), (libraryName, assembly, searchPath) =>
System\Data\Odbc\OdbcConnectionFactory.cs (1)
66Stream? XMLStream = System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceStream("System.Data.Odbc.OdbcMetaData.xml");
System.Private.Windows.GdiPlus (1)
Windows\Win32\PInvokeGdiPlus.cs (1)
19NativeLibrary.SetDllImportResolver(Assembly.GetExecutingAssembly(), static (_, _, _) =>
System.Runtime.Serialization.Schema (2)
System\Runtime\Serialization\Schema\CodeExporter.cs (2)
45AddReferencedAssembly(Assembly.GetExecutingAssembly()); 520AssemblyName assemblyName = Assembly.GetExecutingAssembly().GetName();
System.Windows.Forms.IntegrationTests.Common (2)
TestHelpers.cs (2)
36var frameworkAttribute = (Runtime.Versioning.TargetFrameworkAttribute)Assembly.GetExecutingAssembly() 242Uri codeBaseUrl = new(Assembly.GetExecutingAssembly().Location);
Templates.Blazor.Tests (1)
WebWorkerTemplateE2ETest.cs (1)
23Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location),
Templates.Blazor.WebAssembly.Auth.Tests (1)
src\Shared\E2ETesting\E2ETestOptions.cs (1)
24var metadataAttributes = Assembly.GetExecutingAssembly()
Templates.Blazor.WebAssembly.Tests (1)
src\Shared\E2ETesting\E2ETestOptions.cs (1)
24var metadataAttributes = Assembly.GetExecutingAssembly()
Templates.Mvc.Tests (1)
src\Shared\E2ETesting\E2ETestOptions.cs (1)
24var metadataAttributes = Assembly.GetExecutingAssembly()
Templates.Tests (1)
src\Shared\E2ETesting\E2ETestOptions.cs (1)
24var metadataAttributes = Assembly.GetExecutingAssembly()
UIAutomationClient (1)
MS\Internal\Automation\ProxyManager.cs (1)
337Assembly currentAssembly = Assembly.GetExecutingAssembly();