20 references to AppendLine
Microsoft.DotNet.SignTool (20)
src\SignTool.cs (20)
245AppendLine(builder, depth: 0, text: @"<?xml version=""1.0"" encoding=""utf-8""?>"); 246AppendLine(builder, depth: 0, text: @"<Project DefaultTargets=""AfterBuild"">"); 250AppendLine(builder, depth: 1, text: @"<PropertyGroup>"); 251AppendLine(builder, depth: 2, text: $@"<OutDir>{_args.EnclosingDir}</OutDir>"); 252AppendLine(builder, depth: 2, text: $@"<IntermediateOutputPath>{_args.TempDir}</IntermediateOutputPath>"); 253AppendLine(builder, depth: 2, text: $@"<SignType>{signKind}</SignType>"); 254AppendLine(builder, depth: 1, text: @"</PropertyGroup>"); 256AppendLine(builder, depth: 1, text: $@"<Import Project=""{Path.Combine(MicroBuildCorePath, "build", "Microsoft.VisualStudioEng.MicroBuild.Core.props")}"" />"); 257AppendLine(builder, depth: 1, text: $@"<ItemGroup>"); 265AppendLine(builder, depth: 2, text: $@"<FilesToSign Include=""{Uri.EscapeDataString(filePath)}"">"); 266AppendLine(builder, depth: 3, text: $@"<Authenticode>{(notarize ? SignToolConstants.MacNotarizationOperation : fileToSign.SignInfo.Certificate)}</Authenticode>"); 269AppendLine(builder, depth: 3, text: $@"<MacAppName>{fileToSign.SignInfo.NotarizationAppName}</MacAppName>"); 273AppendLine(builder, depth: 3, text: $@"<StrongName>{fileToSign.SignInfo.StrongName}</StrongName>"); 275AppendLine(builder, depth: 2, text: @"</FilesToSign>"); 278AppendLine(builder, depth: 1, text: $@"</ItemGroup>"); 281AppendLine(builder, depth: 1, text: @"<Target Name=""AfterBuild"">"); 282AppendLine(builder, depth: 2, text: @"<Message Text=""Running signing process."" />"); 283AppendLine(builder, depth: 1, text: @"</Target>"); 285AppendLine(builder, depth: 1, text: $@"<Import Project=""{Path.Combine(MicroBuildCorePath, "build", "Microsoft.VisualStudioEng.MicroBuild.Core.targets")}"" />"); 286AppendLine(builder, depth: 0, text: @"</Project>");