6 instantiations of DesktopStrongNameProvider
Microsoft.CodeAnalysis (1)
CommandLine\CommandLineArguments.cs (1)
315=> new DesktopStrongNameProvider(KeyFileSearchPaths, fileSystem);
Microsoft.CodeAnalysis.Workspaces (4)
Serialization\AbstractOptionsSerializationService.cs (1)
162var strongNameProvider = new DesktopStrongNameProvider([], Path.GetTempPath());
Serialization\SerializationExtensions.cs (1)
39.WithStrongNameProvider(new DesktopStrongNameProvider(GetStrongNameKeyPaths(info), Path.GetTempPath()));
Workspace\CommandLineProject.cs (1)
47var strongNameProvider = new DesktopStrongNameProvider(commandLineArguments.KeyFileSearchPaths, Path.GetTempPath());
Workspace\ProjectSystem\ProjectSystemProjectOptionsProcessor.cs (1)
174.WithStrongNameProvider(new DesktopStrongNameProvider([.. _commandLineArgumentsForCommandLine.KeyFileSearchPaths.WhereNotNull()], Path.GetTempPath()));
Microsoft.CodeAnalysis.Workspaces.MSBuild (1)
MSBuild\MSBuildProjectLoader.Worker.cs (1)
237.WithStrongNameProvider(new DesktopStrongNameProvider(commandLineArgs.KeyFileSearchPaths, Path.GetTempPath()))
6 references to DesktopStrongNameProvider
Microsoft.CodeAnalysis (4)
Compilation.EmitStream.cs (1)
191catch (DesktopStrongNameProvider.ClrStrongNameMissingException)
StrongName\DesktopStrongNameProvider.cs (3)
44/// Creates an instance of <see cref="DesktopStrongNameProvider"/>. 277var other = (DesktopStrongNameProvider)obj;
Microsoft.CodeAnalysis.Workspaces (2)
Serialization\AbstractOptionsSerializationService.cs (1)
162var strongNameProvider = new DesktopStrongNameProvider([], Path.GetTempPath());
Workspace\CommandLineProject.cs (1)
47var strongNameProvider = new DesktopStrongNameProvider(commandLineArguments.KeyFileSearchPaths, Path.GetTempPath());