20 references to AppendLine
Microsoft.DotNet.SignTool (20)
src\SignTool.cs (20)
179AppendLine(builder, depth: 0, text: @"<?xml version=""1.0"" encoding=""utf-8""?>"); 180AppendLine(builder, depth: 0, text: @"<Project DefaultTargets=""AfterBuild"">"); 184AppendLine(builder, depth: 1, text: @"<PropertyGroup>"); 185AppendLine(builder, depth: 2, text: $@"<OutDir>{_args.EnclosingDir}</OutDir>"); 186AppendLine(builder, depth: 2, text: $@"<IntermediateOutputPath>{_args.TempDir}</IntermediateOutputPath>"); 187AppendLine(builder, depth: 2, text: $@"<SignType>{signKind}</SignType>"); 188AppendLine(builder, depth: 1, text: @"</PropertyGroup>"); 190AppendLine(builder, depth: 1, text: $@"<Import Project=""{Path.Combine(MicroBuildCorePath, "build", "MicroBuild.Core.props")}"" />"); 191AppendLine(builder, depth: 1, text: $@"<ItemGroup>"); 199AppendLine(builder, depth: 2, text: $@"<FilesToSign Include=""{Uri.EscapeDataString(filePath)}"">"); 200AppendLine(builder, depth: 3, text: $@"<Authenticode>{(notarize ? SignToolConstants.MacNotarizationOperation : fileToSign.SignInfo.Certificate)}</Authenticode>"); 203AppendLine(builder, depth: 3, text: $@"<MacAppName>{fileToSign.SignInfo.NotarizationAppName}</MacAppName>"); 207AppendLine(builder, depth: 3, text: $@"<StrongName>{fileToSign.SignInfo.StrongName}</StrongName>"); 209AppendLine(builder, depth: 2, text: @"</FilesToSign>"); 212AppendLine(builder, depth: 1, text: $@"</ItemGroup>"); 215AppendLine(builder, depth: 1, text: @"<Target Name=""AfterBuild"">"); 216AppendLine(builder, depth: 2, text: @"<Message Text=""Running signing process."" />"); 217AppendLine(builder, depth: 1, text: @"</Target>"); 219AppendLine(builder, depth: 1, text: $@"<Import Project=""{Path.Combine(MicroBuildCorePath, "build", "MicroBuild.Core.targets")}"" />"); 220AppendLine(builder, depth: 0, text: @"</Project>");