Skip to content

Commit 77ac5b2

Browse files
committed
project rename
1 parent 122f818 commit 77ac5b2

File tree

13 files changed

+45
-20
lines changed

13 files changed

+45
-20
lines changed

CSHtml/CSHtml.csproj

Lines changed: 0 additions & 7 deletions
This file was deleted.

CSHtml.Examples/BasicExample.cs renamed to HtmlSharp.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 CSHtml.Examples
7+
namespace HtmlSharp.Examples
88
{
99
public class BasicExamples
1010
{

CSHtml.Examples/CSHtml.Examples.csproj renamed to HtmlSharp.Examples/HtmlSharp.Examples.csproj

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

88
<ItemGroup>
9-
<ProjectReference Include="..\CSHtml\CSHtml.csproj" />
9+
<ProjectReference Include="..\CSHtml\HtmlSharp.csproj" />
10+
<ProjectReference Include="..\HtmlSharp\HtmlSharp.csproj" />
1011
</ItemGroup>
1112

1213
</Project>

CSHtml.Examples/ModularHtml.cs renamed to HtmlSharp.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 CSHtml.Examples
7+
namespace HtmlSharp.Examples
88
{
99
public class ModularHtml
1010
{

CSHtml.Examples/Program.cs renamed to HtmlSharp.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 CSHtml.Examples
3+
namespace HtmlSharp.Examples
44
{
55
internal class Program
66
{

CSHtml.Examples/SaveDocument.cs renamed to HtmlSharp.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 CSHtml.Examples
3+
namespace HtmlSharp.Examples
44
{
55
public class SaveDocument
66
{

CSHtml.sln renamed to HtmlSharp.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}") = "CSHtml", "CSHtml\CSHtml.csproj", "{333E0139-C853-464F-B888-E553E2B9CE45}"
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HtmlSharp", "HtmlSharp\HtmlSharp.csproj", "{333E0139-C853-464F-B888-E553E2B9CE45}"
77
EndProject
8-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CSHtml.Examples", "CSHtml.Examples\CSHtml.Examples.csproj", "{C988E54A-1430-40B4-938B-6AF680E74DE3}"
8+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HtmlSharp.Examples", "HtmlSharp.Examples\HtmlSharp.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

CSHtml/HtmlAttribute.cs renamed to HtmlSharp/HtmlAttribute.cs

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

CSHtml/HtmlBuilder.cs renamed to HtmlSharp/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 CSHtml
4+
namespace HtmlSharp
55
{
66
public class HtmlBuilder
77
{

HtmlSharp/HtmlSharp.csproj

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFrameworks>net5.0;net48;netstandard2.1</TargetFrameworks>
5+
<LangVersion>latest</LangVersion>
6+
<Authors>DomCr</Authors>
7+
<PackageId>HtmlSharp</PackageId>
8+
<PackageTags>C# Html html-generator html-document html-builder</PackageTags>
9+
<RepositoryUrl>https://github.com/DomCR/NetDocGen</RepositoryUrl>
10+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
11+
<RepositoryType>git</RepositoryType>
12+
<PackageProjectUrl>https://github.com/DomCR/NetDocGen</PackageProjectUrl>
13+
<Copyright>Copyright (c) 2022 Albert Domenech</Copyright>
14+
<Description>Light weight library to generate assembly documentation in Html/Markdown.</Description>
15+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
16+
</PropertyGroup>
17+
18+
<PropertyGroup>
19+
<GenerateDocumentationFile>true</GenerateDocumentationFile>
20+
<PackageReadmeFile>README.md</PackageReadmeFile>
21+
<Version>2022.0.0</Version>
22+
</PropertyGroup>
23+
24+
<ItemGroup>
25+
<None Include="..\README.md">
26+
<Pack>True</Pack>
27+
<PackagePath>\</PackagePath>
28+
</None>
29+
</ItemGroup>
30+
31+
</Project>

0 commit comments

Comments
 (0)