Skip to content

Commit f0f0461

Browse files
committed
valid name
1 parent 77ac5b2 commit f0f0461

File tree

12 files changed

+17
-18
lines changed

12 files changed

+17
-18
lines changed

HtmlSharp.Examples/BasicExample.cs renamed to HtmlCSBuilder.Examples/BasicExample.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Text;
55
using System.Threading.Tasks;
66

7-
namespace HtmlSharp.Examples
7+
namespace HtmlCSBuilder.Examples
88
{
99
public class BasicExamples
1010
{

HtmlSharp.Examples/HtmlSharp.Examples.csproj renamed to HtmlCSBuilder.Examples/HtmlCSBuilder.Examples.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<ProjectReference Include="..\CSHtml\HtmlSharp.csproj" />
10-
<ProjectReference Include="..\HtmlSharp\HtmlSharp.csproj" />
9+
<ProjectReference Include="..\HtmlCSBuilder\HtmlCSBuilder.csproj" />
1110
</ItemGroup>
1211

1312
</Project>

HtmlSharp.Examples/ModularHtml.cs renamed to HtmlCSBuilder.Examples/ModularHtml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Text;
55
using System.Threading.Tasks;
66

7-
namespace HtmlSharp.Examples
7+
namespace HtmlCSBuilder.Examples
88
{
99
public class ModularHtml
1010
{

HtmlSharp.Examples/Program.cs renamed to HtmlCSBuilder.Examples/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System;
22

3-
namespace HtmlSharp.Examples
3+
namespace HtmlCSBuilder.Examples
44
{
55
internal class Program
66
{

HtmlSharp.Examples/SaveDocument.cs renamed to HtmlCSBuilder.Examples/SaveDocument.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.IO;
22

3-
namespace HtmlSharp.Examples
3+
namespace HtmlCSBuilder.Examples
44
{
55
public class SaveDocument
66
{

HtmlSharp.sln renamed to HtmlCSBuilder.sln

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 17
44
VisualStudioVersion = 17.2.32505.173
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HtmlSharp", "HtmlSharp\HtmlSharp.csproj", "{333E0139-C853-464F-B888-E553E2B9CE45}"
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HtmlCSBuilder", "HtmlCSBuilder\HtmlCSBuilder.csproj", "{333E0139-C853-464F-B888-E553E2B9CE45}"
77
EndProject
8-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HtmlSharp.Examples", "HtmlSharp.Examples\HtmlSharp.Examples.csproj", "{C988E54A-1430-40B4-938B-6AF680E74DE3}"
8+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HtmlCSBuilder.Examples", "HtmlCSBuilder.Examples\HtmlCSBuilder.Examples.csproj", "{C988E54A-1430-40B4-938B-6AF680E74DE3}"
99
EndProject
1010
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{C4670E9B-7DF7-459B-8CFA-00B183847A85}"
1111
ProjectSection(SolutionItems) = preProject

HtmlSharp/HtmlAttribute.cs renamed to HtmlCSBuilder/HtmlAttribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace HtmlSharp
1+
namespace HtmlCSBuilder
22
{
33
public enum HtmlAttribute
44
{

HtmlSharp/HtmlBuilder.cs renamed to HtmlCSBuilder/HtmlBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22
using System.IO;
33

4-
namespace HtmlSharp
4+
namespace HtmlCSBuilder
55
{
66
public class HtmlBuilder
77
{

HtmlSharp/HtmlSharp.csproj renamed to HtmlCSBuilder/HtmlCSBuilder.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
<TargetFrameworks>net5.0;net48;netstandard2.1</TargetFrameworks>
55
<LangVersion>latest</LangVersion>
66
<Authors>DomCr</Authors>
7-
<PackageId>HtmlSharp</PackageId>
7+
<PackageId>HtmlCSBuilder</PackageId>
88
<PackageTags>C# Html html-generator html-document html-builder</PackageTags>
9-
<RepositoryUrl>https://github.com/DomCR/NetDocGen</RepositoryUrl>
9+
<RepositoryUrl>https://github.com/DomCR/HtmlCSBuilder</RepositoryUrl>
1010
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1111
<RepositoryType>git</RepositoryType>
12-
<PackageProjectUrl>https://github.com/DomCR/NetDocGen</PackageProjectUrl>
12+
<PackageProjectUrl>https://github.com/DomCR/HtmlCSBuilder</PackageProjectUrl>
1313
<Copyright>Copyright (c) 2022 Albert Domenech</Copyright>
14-
<Description>Light weight library to generate assembly documentation in Html/Markdown.</Description>
14+
<Description>Library to write HTML documents using .NET</Description>
1515
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1616
</PropertyGroup>
1717

HtmlSharp/HtmlTag.cs renamed to HtmlCSBuilder/HtmlTag.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace HtmlSharp
1+
namespace HtmlCSBuilder
22
{
33
public enum HtmlTag
44
{

0 commit comments

Comments
 (0)