1 write to Log
Microsoft.Build.Utilities.Core (1)
AppDomainIsolatedTask.cs (1)
31Log = new TaskLoggingHelper(this);
23 references to Log
Microsoft.Build.Utilities.Core (6)
AppDomainIsolatedTask.cs (6)
41Log.TaskResources = taskResources; 55Log.HelpKeywordPrefix = helpKeywordPrefix; 87get => Log.TaskResources; 88set => Log.TaskResources = value; 100get => Log.HelpKeywordPrefix; 101set => Log.HelpKeywordPrefix = value;
Microsoft.DotNet.SignTool.Tests (17)
SignToolTests.cs (17)
348var signTool = new FakeSignTool(signToolArgs, task.Log); 349var configuration = new Configuration(signToolArgs.TempDir, itemsToSign, strongNameSignInfo, fileSignInfo, extensionsSignInfo, additionalCertificateInfo, tarToolPath: s_tarToolPath, pkgToolPath: s_pkgToolPath, snPath: s_snPath, task.Log); 353task.Log, 379task.Log.HasLoggedErrors.Should().BeFalse(); 395var signingInput = new Configuration(_tmpDir, itemsToSign, strongNameSignInfo, fileSignInfo, extensionsSignInfo, additionalCertificateInfo, tarToolPath: s_tarToolPath, pkgToolPath: s_pkgToolPath, snPath: s_snPath, task.Log).GenerateListOfFiles(); 531var signingInput = new Configuration(_tmpDir, itemsToSign, strongNameSignInfo, fileSignInfo, s_fileExtensionSignInfo, null, tarToolPath: s_tarToolPath, pkgToolPath: s_pkgToolPath, snPath: s_snPath, task.Log).GenerateListOfFiles(); 535task.Log.HasLoggedErrors.Should().BeFalse(); 2041task.Log.HasLoggedErrors.Should().BeTrue(); 2876task.Log) 2879task.Log.HasLoggedErrors.Should().BeTrue(); 2926task.Log) 2929task.Log.HasLoggedErrors.Should().BeFalse(); 2989BatchSignUtil.RunWixTool(createFileName, outputDir, workingDir, wixToolsPath, task.Log).Should().Be(!deleteWixobjBeforeRunningTool); 3008BatchSignUtil.RunWixTool("create.cmd", "foodir", "bardir", null, task.Log).Should().BeFalse(); 3009task.Log.HasLoggedErrors.Should().BeTrue(); 3024BatchSignUtil.RunWixTool("create.cmd", "foodir", "bardir", "totally/wix/tools", task.Log).Should().BeFalse(); 3025task.Log.HasLoggedErrors.Should().BeTrue();