Implemented interface member:
property
KeyFile
Microsoft.Build.Tasks.IALTaskContract.KeyFile
1 write to KeyFile
Microsoft.Build.Tasks.UnitTests (1)
Al_Tests.cs (1)
247t.KeyFile = "mykey.snk";
5 references to KeyFile
Microsoft.Build.Tasks.Core (3)
Al.cs (3)
150set => Bag[nameof(KeyFile)] = value; 151get => (string)Bag[nameof(KeyFile)]; 344commandLine.AppendSwitchIfNotNull("/keyfile:", KeyFile);
Microsoft.Build.Tasks.UnitTests (2)
Al_Tests.cs (2)
246Assert.Null(t.KeyFile); // "Default value" 248Assert.Equal("mykey.snk", t.KeyFile); // "New value"