32 references to AppendLine
Microsoft.DotNet.SignTool (32)
src\SignTool.cs (32)
146AppendLine(builder, depth: 0, text: @"<?xml version=""1.0"" encoding=""utf-8""?>"); 147AppendLine(builder, depth: 0, text: @"<Project DefaultTargets=""AfterBuild"">"); 151AppendLine(builder, depth: 1, text: @"<PropertyGroup>"); 152AppendLine(builder, depth: 2, text: $@"<OutDir>{_args.EnclosingDir}</OutDir>"); 153AppendLine(builder, depth: 2, text: $@"<IntermediateOutputPath>{_args.TempDir}</IntermediateOutputPath>"); 154AppendLine(builder, depth: 2, text: $@"<SignType>{signKind}</SignType>"); 155AppendLine(builder, depth: 1, text: @"</PropertyGroup>"); 157AppendLine(builder, depth: 1, text: $@"<Import Project=""{Path.Combine(MicroBuildCorePath, "build", "MicroBuild.Core.props")}"" />"); 159AppendLine(builder, depth: 1, text: $@"<ItemGroup>"); 163AppendLine(builder, depth: 2, text: $@"<FilesToSign Include=""{Uri.EscapeDataString(fileToSign.FullPath)}"">"); 164AppendLine(builder, depth: 3, text: $@"<Authenticode>{fileToSign.SignInfo.Certificate}</Authenticode>"); 167AppendLine(builder, depth: 3, text: $@"<StrongName>{fileToSign.SignInfo.StrongName}</StrongName>"); 169AppendLine(builder, depth: 2, text: @"</FilesToSign>"); 172AppendLine(builder, depth: 1, text: $@"</ItemGroup>"); 175AppendLine(builder, depth: 1, text: @"<Target Name=""AfterBuild"">"); 176AppendLine(builder, depth: 2, text: @"<Message Text=""Running non-OSX files signing process."" />"); 177AppendLine(builder, depth: 1, text: @"</Target>"); 179AppendLine(builder, depth: 1, text: $@"<Import Project=""{Path.Combine(MicroBuildCorePath, "build", "MicroBuild.Core.targets")}"" />"); 180AppendLine(builder, depth: 0, text: @"</Project>"); 190AppendLine(builder, depth: 0, text: @"<?xml version=""1.0"" encoding=""utf-8""?>"); 191AppendLine(builder, depth: 0, text: @"<Project DefaultTargets=""AfterBuild"">"); 193AppendLine(builder, depth: 1, text: $@"<Import Project=""{Path.Combine(MicroBuildCorePath, "build", "MicroBuild.Core.props")}"" />"); 195AppendLine(builder, depth: 1, text: $@"<PropertyGroup>"); 196AppendLine(builder, depth: 2, text: $@"<MACFilesTarget>{fullPathOSXFilesFolder}</MACFilesTarget>"); 197AppendLine(builder, depth: 2, text: $@"<MACFilesCert>{osxCertificateName}</MACFilesCert>"); 198AppendLine(builder, depth: 2, text: $@"<SignType>{signKind}</SignType>"); 199AppendLine(builder, depth: 1, text: $@"</PropertyGroup>"); 201AppendLine(builder, depth: 1, text: @"<Target Name=""AfterBuild"">"); 202AppendLine(builder, depth: 2, text: @"<Message Text=""Running OSX files signing process."" />"); 203AppendLine(builder, depth: 1, text: @"</Target>"); 205AppendLine(builder, depth: 1, text: $@"<Import Project=""{Path.Combine(MicroBuildCorePath, "build", "MicroBuild.Core.targets")}"" />"); 206AppendLine(builder, depth: 0, text: @"</Project>");