Skip to content

Commit 7038790

Browse files
committed
Don't use > which is a reserved XML character in comment
1 parent 97dc937 commit 7038790

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/ThisAssembly.AssemblyInfo/CSharp.sbntxt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ partial class ThisAssembly
2424
public static partial class Info
2525
{
2626
{{~ for prop in Properties ~}}
27-
/// <summary>{{ prop.Key }} => {{ prop.Value }}</summary>
27+
/// <summary>{{ prop.Key }} = {{ prop.Value }}</summary>
2828
public const string {{ prop.Key }} = @"{{ prop.Value }}";
2929

3030
{{~ end ~}}

src/ThisAssembly.Metadata/CSharp.sbntxt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ partial class ThisAssembly
2424
public static partial class Metadata
2525
{
2626
{{~ for md in Metadata ~}}
27-
/// <summary>{{ md.Key }} => {{ md.Value }}</summary>
27+
/// <summary>{{ md.Key }} = {{ md.Value }}</summary>
2828
public const string {{ md.Key }} = @"{{ md.Value }}";
2929

3030
{{~ end ~}}

src/ThisAssembly.Project/CSharp.sbntxt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ partial class ThisAssembly
2424
public static partial class Project
2525
{
2626
{{~ for prop in Properties ~}}
27-
/// <summary>{{ prop.Key }} => {{ prop.Value }}</summary>
27+
/// <summary>{{ prop.Key }} = {{ prop.Value }}</summary>
2828
public const string {{ prop.Key }} = @"{{ prop.Value }}";
2929

3030
{{~ end ~}}

src/ThisAssembly.Strings/CSharp.sbntxt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
{{~ if $0.Comment ~}}
1414
/// {{ $0.Comment }}
1515
{{~ end ~}}
16-
/// => "{{ $0.Value }}"
16+
/// = "{{ $0.Value }}"
1717
/// </summary>
1818
{{ end }}
1919
{{ func render }}

0 commit comments

Comments
 (0)