32 references to AppendLine
Microsoft.DotNet.SignTool (32)
src\SignTool.cs (32)
145AppendLine(builder, depth: 0, text: @"<?xml version=""1.0"" encoding=""utf-8""?>"); 146AppendLine(builder, depth: 0, text: @"<Project DefaultTargets=""AfterBuild"">"); 150AppendLine(builder, depth: 1, text: @"<PropertyGroup>"); 151AppendLine(builder, depth: 2, text: $@"<OutDir>{_args.EnclosingDir}</OutDir>"); 152AppendLine(builder, depth: 2, text: $@"<IntermediateOutputPath>{_args.TempDir}</IntermediateOutputPath>"); 153AppendLine(builder, depth: 2, text: $@"<SignType>{signKind}</SignType>"); 154AppendLine(builder, depth: 1, text: @"</PropertyGroup>"); 156AppendLine(builder, depth: 1, text: $@"<Import Project=""{Path.Combine(MicroBuildCorePath, "build", "MicroBuild.Core.props")}"" />"); 158AppendLine(builder, depth: 1, text: $@"<ItemGroup>"); 162AppendLine(builder, depth: 2, text: $@"<FilesToSign Include=""{Uri.EscapeDataString(fileToSign.FullPath)}"">"); 163AppendLine(builder, depth: 3, text: $@"<Authenticode>{fileToSign.SignInfo.Certificate}</Authenticode>"); 166AppendLine(builder, depth: 3, text: $@"<StrongName>{fileToSign.SignInfo.StrongName}</StrongName>"); 168AppendLine(builder, depth: 2, text: @"</FilesToSign>"); 171AppendLine(builder, depth: 1, text: $@"</ItemGroup>"); 174AppendLine(builder, depth: 1, text: @"<Target Name=""AfterBuild"">"); 175AppendLine(builder, depth: 2, text: @"<Message Text=""Running non-OSX files signing process."" />"); 176AppendLine(builder, depth: 1, text: @"</Target>"); 178AppendLine(builder, depth: 1, text: $@"<Import Project=""{Path.Combine(MicroBuildCorePath, "build", "MicroBuild.Core.targets")}"" />"); 179AppendLine(builder, depth: 0, text: @"</Project>"); 189AppendLine(builder, depth: 0, text: @"<?xml version=""1.0"" encoding=""utf-8""?>"); 190AppendLine(builder, depth: 0, text: @"<Project DefaultTargets=""AfterBuild"">"); 192AppendLine(builder, depth: 1, text: $@"<Import Project=""{Path.Combine(MicroBuildCorePath, "build", "MicroBuild.Core.props")}"" />"); 194AppendLine(builder, depth: 1, text: $@"<PropertyGroup>"); 195AppendLine(builder, depth: 2, text: $@"<MACFilesTarget>{fullPathOSXFilesFolder}</MACFilesTarget>"); 196AppendLine(builder, depth: 2, text: $@"<MACFilesCert>{osxCertificateName}</MACFilesCert>"); 197AppendLine(builder, depth: 2, text: $@"<SignType>{signKind}</SignType>"); 198AppendLine(builder, depth: 1, text: $@"</PropertyGroup>"); 200AppendLine(builder, depth: 1, text: @"<Target Name=""AfterBuild"">"); 201AppendLine(builder, depth: 2, text: @"<Message Text=""Running OSX files signing process."" />"); 202AppendLine(builder, depth: 1, text: @"</Target>"); 204AppendLine(builder, depth: 1, text: $@"<Import Project=""{Path.Combine(MicroBuildCorePath, "build", "MicroBuild.Core.targets")}"" />"); 205AppendLine(builder, depth: 0, text: @"</Project>");