Skip to content

Commit

Permalink
Init commit of TidyHtml5Managed
Browse files Browse the repository at this point in the history
  • Loading branch information
frandi committed Dec 13, 2015
1 parent 3b54d43 commit 8d4f5c0
Show file tree
Hide file tree
Showing 12 changed files with 1,786 additions and 1,559 deletions.
15 changes: 10 additions & 5 deletions .gitignore
@@ -1,5 +1,10 @@
.DS_Store
bin
*.userprefs
*.pidb
TestHarness
.DS_Store
*.pidb
*.suo
*.user
*.userprefs
TestHarness
UpgradeLog.htm
/Backup
/bin
/obj
110 changes: 55 additions & 55 deletions AssemblyInfo.cs
@@ -1,55 +1,55 @@
// Copyright (c) 2009 Mark Beaton
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
// files (the "Software"), to deal in the Software without
// restriction, including without limitation the rights to use,
// copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following
// conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
// OTHER DEALINGS IN THE SOFTWARE.

using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

[assembly: AssemblyTitle("TidyManaged")]
[assembly: AssemblyDescription("Managed .NET wrapper for the HTML Tidy library")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Mark Beaton")]
[assembly: AssemblyProduct("TidyManaged")]
[assembly: AssemblyCopyright("Copyright © Mark Beaton 2009")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("1c09c222-dbe1-44b3-8983-d4116ec3e051")]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
// Copyright (c) 2009 Mark Beaton
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
// files (the "Software"), to deal in the Software without
// restriction, including without limitation the rights to use,
// copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following
// conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
// OTHER DEALINGS IN THE SOFTWARE.

using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

[assembly: AssemblyTitle("TidyHtml5Managed")]
[assembly: AssemblyDescription("Managed .NET wrapper for the HTML 5 Tidy library")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Frandi Dwi")]
[assembly: AssemblyProduct("TidyHtml5Managed")]
[assembly: AssemblyCopyright("Copyright © Frandi Dwi 2015")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("1c09c222-dbe1-44b3-8983-d4116ec3e051")]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
7 changes: 7 additions & 0 deletions BUILD.md
@@ -0,0 +1,7 @@
# How to build TidyHtml5Managed

1. Clone the source code
2. Open the solution in Visual Studio
3. Select your target configuration and platform
4. Build the project
5. Copy the TidyHtml5Managed.dll from the output folder to your application project

0 comments on commit 8d4f5c0

Please sign in to comment.