11 references to DesktopStrongNameProvider
Microsoft.CodeAnalysis (3)
CommandLine\CommandLineArguments.cs (1)
307=> 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)
43var provider = new DesktopStrongNameProvider(ImmutableArray<string>.Empty, new VirtualizedStrongNameFileSystem(tempDir.Path)); 61var provider = new DesktopStrongNameProvider(ImmutableArray<string>.Empty, new VirtualizedStrongNameFileSystem());
Microsoft.CodeAnalysis.CSharp.Emit2.UnitTests (1)
Attributes\InternalsVisibleToAndStrongNameTests.cs (1)
58new DesktopStrongNameProvider(ImmutableArray.Create(keyFilePath), strongNameFileSystem: new VirtualizedStrongNameFileSystem());
Microsoft.CodeAnalysis.Rebuild.UnitTests (1)
CSharpDeterministicKeyBuilderTests.cs (1)
421.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());
Microsoft.CodeAnalysis.UnitTests (1)
StrongNameProviderTests.cs (1)
93: base(searchPaths.NullToEmpty(), new VirtualStrongNameFileSystem(new HashSet<string>(existingFullPaths, StringComparer.OrdinalIgnoreCase)))
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (1)
Attributes\InternalsVisibleToAndStrongNameTests.vb (1)
49Return New DesktopStrongNameProvider(ImmutableArray.Create(keyFilePath), New VirtualizedStrongNameFileSystem())