Implemented interface member:
property
KeyFile
Microsoft.Build.Tasks.ISGenTaskContract.KeyFile
5 writes to KeyFile
Microsoft.Build.Tasks.UnitTests (5)
SGen_Tests.cs (5)
70
sgen.
KeyFile
= "c:\\Some Folder\\MyKeyFile.snk";
119
sgen.
KeyFile
= "c:\\Some Folder\\MyKeyFile.snk";
135
sgen.
KeyFile
= "c:\\Some Folder\\MyKeyFile.snk";
153
sgen.
KeyFile
= "c:\\Some Folder\\MyKeyFile.snk";
171
sgen.
KeyFile
= "c:\\Some Folder\\MyKeyFile.snk";
5 references to KeyFile
Microsoft.Build.Tasks.Core (4)
SGen.cs (4)
221
set => Bag[nameof(
KeyFile
)] = value;
222
get => (string)Bag[nameof(
KeyFile
)];
405
if (
KeyFile
!= null)
407
commandLineBuilder.AppendNestedSwitch("/compiler:", "/keyfile:",
KeyFile
);
Microsoft.Build.Tasks.UnitTests (1)
SGen_Tests.cs (1)
74
Assert.True(commandLine.IndexOf("/compiler:\"/keyfile:\\\"" + sgen.
KeyFile
+ "\\\"\"", StringComparison.OrdinalIgnoreCase) >= 0);