1 implementation of AddContentToArchive
Microsoft.Arcade.Common (1)
ZipArchiveManager.cs (1)
44
public Task
AddContentToArchive
(string archivePath, string targetFilename, string content)
4 references to AddContentToArchive
Microsoft.DotNet.Helix.Sdk (1)
XharnessTaskBase.cs (1)
174
await zipArchiveManager.
AddContentToArchive
(
Microsoft.DotNet.Helix.Sdk.Tests (3)
CreateXHarnessAppleWorkItemsTests.cs (3)
103
.Verify(x => x.
AddContentToArchive
(payloadArchive, "command.sh", It.Is<string>(s => s.Contains("xharness apple test"))), Times.Once);
166
.Verify(x => x.
AddContentToArchive
(payloadArchive, "command.sh", "echo foo"), Times.Once);
254
.Verify(x => x.
AddContentToArchive
(payloadArchive, "command.sh", It.Is<string>(s => s.Contains("xharness apple test"))), Times.Once);