11 references to DesktopStrongNameProvider
Microsoft.CodeAnalysis (3)
CommandLine\CommandLineArguments.cs (1)
315=> new DesktopStrongNameProvider(KeyFileSearchPaths, fileSystem);
StrongName\DesktopStrongNameProvider.cs (2)
39public DesktopStrongNameProvider(ImmutableArray<string> keyFileSearchPaths) : this(keyFileSearchPaths, StrongNameFileSystem.Instance) 49: this(keyFileSearchPaths, tempPath == null ? StrongNameFileSystem.Instance : new StrongNameFileSystem(tempPath))
Microsoft.CodeAnalysis.CSharp.Emit.UnitTests (2)
Emit\DesktopStrongNameProviderTests.cs (2)
93var provider = new DesktopStrongNameProvider(ImmutableArray<string>.Empty, new VirtualizedStrongNameFileSystem(tempDir.Path)); 111var provider = new DesktopStrongNameProvider(ImmutableArray<string>.Empty, new VirtualizedStrongNameFileSystem());
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (2)
Attributes\InternalsVisibleToAndStrongNameTests.cs (2)
60private static readonly StrongNameProvider s_providerNoSigningTempPath = new DesktopStrongNameProvider( 65new DesktopStrongNameProvider(ImmutableArray.Create(keyFilePath), strongNameFileSystem: new VirtualizedStrongNameFileSystem(_signingTempDirectory.Path));
Microsoft.CodeAnalysis.Rebuild.UnitTests (1)
CSharpDeterministicKeyBuilderTests.cs (1)
416.WithStrongNameProvider(new DesktopStrongNameProvider(default, fileSystem));
Microsoft.CodeAnalysis.Test.Utilities (2)
Compilation\TestDesktopStrongNameProvider.cs (1)
28: base(keyFileSearchPaths, fileSystem)
Platform\Custom\SigningTestHelpers.cs (1)
21new DesktopStrongNameProvider(ImmutableArray<string>.Empty, new VirtualizedStrongNameFileSystem(Path.GetTempPath()));
Microsoft.CodeAnalysis.UnitTests (1)
StrongNameProviderTests.cs (1)
93: base(searchPaths.NullToEmpty(), new VirtualStrongNameFileSystem(new HashSet<string>(existingFullPaths, StringComparer.OrdinalIgnoreCase)))