Implemented interface member:
property
KeyContainer
Microsoft.Build.Tasks.IALTaskContract.KeyContainer
1 write to KeyContainer
Microsoft.Build.Tasks.UnitTests (1)
Al_Tests.cs (1)
263t.KeyContainer = "MyKeyContainer";
5 references to KeyContainer
Microsoft.Build.Tasks.Core (3)
Al.cs (3)
156set => Bag[nameof(KeyContainer)] = value; 157get => (string)Bag[nameof(KeyContainer)]; 345commandLine.AppendSwitchIfNotNull("/keyname:", KeyContainer);
Microsoft.Build.Tasks.UnitTests (2)
Al_Tests.cs (2)
262Assert.Null(t.KeyContainer); // "Default value" 264Assert.Equal("MyKeyContainer", t.KeyContainer); // "New value"