Skip to content

Commit 1e85eff

Browse files
committed
Merge branch 'release/v04.02.00'
2 parents e7ecaa1 + 6c43ce0 commit 1e85eff

File tree

167 files changed

+8209
-1715
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

167 files changed

+8209
-1715
lines changed

Razor.Blade/Blade/HtmlTagService/HtmlTagServiceImplementation.cs renamed to Razor.Blade/Blade/HtmlTagsService/HtmlTagsServiceImplementation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace ToSic.Razor.Blade
44
{
55
[PrivateApi("Hide implementation")]
6-
public partial class HtmlTagServiceImplementation: IHtmlTagService
6+
public partial class HtmlTagsServiceImplementation: IHtmlTagsService
77
{
88
}
99
}

Razor.Blade/Blade/HtmlTagService/HtmlTagServiceImplementation_Generated.cs renamed to Razor.Blade/Blade/HtmlTagsService/HtmlTagsServiceImplementation_Generated.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// ****
99
// This is auto-generated code - don't modify
1010
// Re-run the generation program to recreate
11-
// Created 20.2.2023. 11:37
11+
// Created 20.2.2023. 13:35
1212
//
1313
// Each tag and attributes of it prepare code, and they return an object of the same type again
1414
// to allow fluid chaining of the commands
@@ -24,7 +24,7 @@
2424
// ReSharper disable once CheckNamespace
2525
namespace ToSic.Razor.Blade
2626
{
27-
public partial class HtmlTagServiceImplementation
27+
public partial class HtmlTagsServiceImplementation
2828
{
2929

3030
/// <inheritdoc />

Razor.Blade/Blade/HtmlTagService/HtmlTagServiceImplementation_Manual.cs renamed to Razor.Blade/Blade/HtmlTagsService/HtmlTagsServiceImplementation_Manual.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace ToSic.Razor.Blade
55
{
6-
public partial class HtmlTagServiceImplementation
6+
public partial class HtmlTagsServiceImplementation
77
{
88
/// <inheritdoc />
99
public Comment Comment(string content = null) => new Comment(content);

Razor.Blade/Blade/HtmlTagService/HtmlTagServiceImplementation_MetaJsonLdIcon.cs renamed to Razor.Blade/Blade/HtmlTagsService/HtmlTagsServiceImplementation_MetaJsonLdIcon.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace ToSic.Razor.Blade
44
{
5-
public partial class HtmlTagServiceImplementation
5+
public partial class HtmlTagsServiceImplementation
66
{
77
/// <inheritdoc />
88
public MetaOg MetaOg(string property = null, string content = null) => new MetaOg(property, content);

Razor.Blade/Blade/HtmlTagService/IHtmlTagService.cs renamed to Razor.Blade/Blade/HtmlTagsService/IHtmlTagsService.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
/// var tagOldWithId = tagOld.Id(...).Style(...).Class(...);
1919
/// // now tagOld and tagOldWithId are both the same objects with all changes applied
2020
///
21-
/// // New API - assumes tagSvc is IHtmlTagService
21+
/// // New API - assumes tagSvc is IHtmlTagsService
2222
/// // these two objects will NOT be the same
2323
/// var tag = tagSvc.Div();
2424
/// var tagWithId = tag.Id(...).Style(...).Class(...);
@@ -30,7 +30,7 @@
3030
/// * Introduced in v4.0
3131
/// * It intentionally uses the term "Service" in the end (different from <see cref="IScrub"/> to prevent confusion with <see cref="IHtmlTag"/>.
3232
/// </remarks>
33-
public partial interface IHtmlTagService
33+
public partial interface IHtmlTagsService
3434
{
3535

3636
}

Razor.Blade/Blade/HtmlTagService/IHtmlTagService_Generated.cs renamed to Razor.Blade/Blade/HtmlTagsService/IHtmlTagsService_Generated.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// ****
99
// This is auto-generated code - don't modify
1010
// Re-run the generation program to recreate
11-
// Created 20.2.2023. 11:37
11+
// Created 20.2.2023. 13:35
1212
//
1313
// Each tag and attributes of it prepare code, and they return an object of the same type again
1414
// to allow fluid chaining of the commands
@@ -24,7 +24,7 @@
2424
// ReSharper disable once CheckNamespace
2525
namespace ToSic.Razor.Blade
2626
{
27-
public partial interface IHtmlTagService
27+
public partial interface IHtmlTagsService
2828
{
2929

3030
/// <summary>

Razor.Blade/Blade/HtmlTagService/IHtmlTagService_Manual.cs renamed to Razor.Blade/Blade/HtmlTagsService/IHtmlTagsService_Manual.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace ToSic.Razor.Blade
55
{
6-
public partial interface IHtmlTagService
6+
public partial interface IHtmlTagsService
77
{
88
/// <summary>
99
/// Create a HTML comment with something inside.

Razor.Blade/Blade/HtmlTagService/IHtmlTagService_MetaJsonLdIcon.cs renamed to Razor.Blade/Blade/HtmlTagsService/IHtmlTagsService_MetaJsonLdIcon.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace ToSic.Razor.Blade
44
{
5-
public partial interface IHtmlTagService
5+
public partial interface IHtmlTagsService
66
{
77
/// <summary>
88
/// Generate a open-graph Meta tag.

Razor.Blade/Html5/GeneratedFormatting.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// ****
99
// This is auto-generated code - don't modify
1010
// Re-run the generation program to recreate
11-
// Created 20.2.2023. 11:37
11+
// Created 20.2.2023. 13:35
1212
//
1313
// Each tag and attributes of it prepare code, and they return an object of the same type again
1414
// to allow fluid chaining of the commands

Razor.Blade/Html5/GeneratedForms.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// ****
99
// This is auto-generated code - don't modify
1010
// Re-run the generation program to recreate
11-
// Created 20.2.2023. 11:37
11+
// Created 20.2.2023. 13:35
1212
//
1313
// Each tag and attributes of it prepare code, and they return an object of the same type again
1414
// to allow fluid chaining of the commands

0 commit comments

Comments
 (0)