32 references to AppendLine
Microsoft.DotNet.SignTool (32)
src\SignTool.cs (32)
113AppendLine(builder, depth: 0, text: @"<?xml version=""1.0"" encoding=""utf-8""?>"); 114AppendLine(builder, depth: 0, text: @"<Project DefaultTargets=""AfterBuild"">"); 118AppendLine(builder, depth: 1, text: @"<PropertyGroup>"); 119AppendLine(builder, depth: 2, text: $@"<OutDir>{_args.EnclosingDir}</OutDir>"); 120AppendLine(builder, depth: 2, text: $@"<IntermediateOutputPath>{_args.TempDir}</IntermediateOutputPath>"); 121AppendLine(builder, depth: 2, text: $@"<SignType>{signKind}</SignType>"); 122AppendLine(builder, depth: 1, text: @"</PropertyGroup>"); 124AppendLine(builder, depth: 1, text: $@"<Import Project=""{Path.Combine(MicroBuildCorePath, "build", "MicroBuild.Core.props")}"" />"); 126AppendLine(builder, depth: 1, text: $@"<ItemGroup>"); 130AppendLine(builder, depth: 2, text: $@"<FilesToSign Include=""{Uri.EscapeDataString(fileToSign.FullPath)}"">"); 131AppendLine(builder, depth: 3, text: $@"<Authenticode>{fileToSign.SignInfo.Certificate}</Authenticode>"); 134AppendLine(builder, depth: 3, text: $@"<StrongName>{fileToSign.SignInfo.StrongName}</StrongName>"); 136AppendLine(builder, depth: 2, text: @"</FilesToSign>"); 139AppendLine(builder, depth: 1, text: $@"</ItemGroup>"); 142AppendLine(builder, depth: 1, text: @"<Target Name=""AfterBuild"">"); 143AppendLine(builder, depth: 2, text: @"<Message Text=""Running non-OSX files signing process."" />"); 144AppendLine(builder, depth: 1, text: @"</Target>"); 146AppendLine(builder, depth: 1, text: $@"<Import Project=""{Path.Combine(MicroBuildCorePath, "build", "MicroBuild.Core.targets")}"" />"); 147AppendLine(builder, depth: 0, text: @"</Project>"); 157AppendLine(builder, depth: 0, text: @"<?xml version=""1.0"" encoding=""utf-8""?>"); 158AppendLine(builder, depth: 0, text: @"<Project DefaultTargets=""AfterBuild"">"); 160AppendLine(builder, depth: 1, text: $@"<Import Project=""{Path.Combine(MicroBuildCorePath, "build", "MicroBuild.Core.props")}"" />"); 162AppendLine(builder, depth: 1, text: $@"<PropertyGroup>"); 163AppendLine(builder, depth: 2, text: $@"<MACFilesTarget>{fullPathOSXFilesFolder}</MACFilesTarget>"); 164AppendLine(builder, depth: 2, text: $@"<MACFilesCert>{osxCertificateName}</MACFilesCert>"); 165AppendLine(builder, depth: 2, text: $@"<SignType>{signKind}</SignType>"); 166AppendLine(builder, depth: 1, text: $@"</PropertyGroup>"); 168AppendLine(builder, depth: 1, text: @"<Target Name=""AfterBuild"">"); 169AppendLine(builder, depth: 2, text: @"<Message Text=""Running OSX files signing process."" />"); 170AppendLine(builder, depth: 1, text: @"</Target>"); 172AppendLine(builder, depth: 1, text: $@"<Import Project=""{Path.Combine(MicroBuildCorePath, "build", "MicroBuild.Core.targets")}"" />"); 173AppendLine(builder, depth: 0, text: @"</Project>");