main
cs 11 lines 424 Bytes
Raw
1 // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2
3 namespace WixToolset.Core.WindowsInstaller.Bind
4 {
5 internal static class PatchConstants
6 {
7 public const int MaxPatchTransformName = 31;
8
9 public static readonly string PairedPatchTransformPrefix = "#";
10 }
11 }