Skip to content

Commit

Permalink
Don't use > which is a reserved XML character in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
kzu committed Oct 8, 2020
1 parent 97dc937 commit 7038790
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/ThisAssembly.AssemblyInfo/CSharp.sbntxt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ partial class ThisAssembly
public static partial class Info
{
{{~ for prop in Properties ~}}
/// <summary>{{ prop.Key }} => {{ prop.Value }}</summary>
/// <summary>{{ prop.Key }} = {{ prop.Value }}</summary>
public const string {{ prop.Key }} = @"{{ prop.Value }}";

{{~ end ~}}
Expand Down
2 changes: 1 addition & 1 deletion src/ThisAssembly.Metadata/CSharp.sbntxt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ partial class ThisAssembly
public static partial class Metadata
{
{{~ for md in Metadata ~}}
/// <summary>{{ md.Key }} => {{ md.Value }}</summary>
/// <summary>{{ md.Key }} = {{ md.Value }}</summary>
public const string {{ md.Key }} = @"{{ md.Value }}";

{{~ end ~}}
Expand Down
2 changes: 1 addition & 1 deletion src/ThisAssembly.Project/CSharp.sbntxt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ partial class ThisAssembly
public static partial class Project
{
{{~ for prop in Properties ~}}
/// <summary>{{ prop.Key }} => {{ prop.Value }}</summary>
/// <summary>{{ prop.Key }} = {{ prop.Value }}</summary>
public const string {{ prop.Key }} = @"{{ prop.Value }}";

{{~ end ~}}
Expand Down
2 changes: 1 addition & 1 deletion src/ThisAssembly.Strings/CSharp.sbntxt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
{{~ if $0.Comment ~}}
/// {{ $0.Comment }}
{{~ end ~}}
/// => "{{ $0.Value }}"
/// = "{{ $0.Value }}"
/// </summary>
{{ end }}
{{ func render }}
Expand Down

0 comments on commit 7038790

Please sign in to comment.