File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
ThisAssembly.AssemblyInfo Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ using System.Runtime.CompilerServices;
12
12
13
13
/// <summary>
14
14
/// Provides access to the current assembly information as pure constants,
15
- // without requiring reflection.
15
+ /// without requiring reflection.
16
16
/// </summary>
17
17
partial class ThisAssembly
18
18
{
@@ -24,6 +24,7 @@ partial class ThisAssembly
24
24
public static partial class Info
25
25
{
26
26
{{~ for prop in Properties ~}}
27
+ /// <summary>{{ prop.Key }} => {{ prop.Value }}</summary>
27
28
public const string {{ prop.Key }} = @"{{ prop.Value }}";
28
29
29
30
{{~ end ~}}
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ using System.Runtime.CompilerServices;
12
12
13
13
/// <summary>
14
14
/// Provides access to the current assembly information as pure constants,
15
- // without requiring reflection.
15
+ /// without requiring reflection.
16
16
/// </summary>
17
17
partial class ThisAssembly
18
18
{
@@ -24,6 +24,7 @@ partial class ThisAssembly
24
24
public static partial class Metadata
25
25
{
26
26
{{~ for md in Metadata ~}}
27
+ /// <summary>{{ md.Key }} => {{ md.Value }}</summary>
27
28
public const string {{ md.Key }} = @"{{ md.Value }}";
28
29
29
30
{{~ end ~}}
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ using System.Runtime.CompilerServices;
12
12
13
13
/// <summary>
14
14
/// Provides access to the current assembly information as pure constants,
15
- // without requiring reflection.
15
+ /// without requiring reflection.
16
16
/// </summary>
17
17
partial class ThisAssembly
18
18
{
@@ -24,6 +24,7 @@ partial class ThisAssembly
24
24
public static partial class Project
25
25
{
26
26
{{~ for prop in Properties ~}}
27
+ /// <summary>{{ prop.Key }} => {{ prop.Value }}</summary>
27
28
public const string {{ prop.Key }} = @"{{ prop.Value }}";
28
29
29
30
{{~ end ~}}
You can’t perform that action at this time.
0 commit comments