Skip to content

Commit 189e762

Browse files
committed
Cleaned up solution and project files
1 parent af63bfb commit 189e762

14 files changed

+20
-35
lines changed

SGMLReader.nuspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
<package >
33
<metadata>
44
<id>SgmlReader</id>
5-
<version>1.8.8</version>
5+
<version>1.8.9</version>
66
<authors>Chris Lovett, Steve Bjorg</authors>
77
<owners>Steve Bjorg, Andy Sherwood</owners>
88
<licenseUrl>https://github.com/MindTouch/SGMLReader/blob/master/license.txt</licenseUrl>
99
<projectUrl>https://github.com/MindTouch/SGMLReader</projectUrl>
1010
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1111
<summary>Converts SGML to XML via XmlReader API</summary>
12-
<description>SGMLReader is a versatile C# .NET library written by Chris Lovett for parsing HTML/SGML files. The original community around SGMLReader used to be hosted by GotDotNet, but this site was phased out (update: it appears the code has re-surfaced on MSDN Code Gallery, but without any updates). MindTouch Dream and MindTouch Core use the SGMLReader library extensively. Over the last few years we have made many improvements to this code; thereby, making us the de facto maintainers of this library. In the spirit of the original author, we're providing back these changes on the MindTouch Developer Center site.</description>
12+
<description>SgmlReader is a versatile C# .NET library written by Chris Lovett for parsing HTML/SGML files using the XmlReader API.</description>
1313
<tags>SGML XML</tags>
1414
<copyright>Copyright © 2002, Microsoft Corporation; Copyright © 2007-2013, MindTouch</copyright>
1515
</metadata>

SGMLTests/SGMLTests.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
<SchemaVersion>2.0</SchemaVersion>
88
<ProjectGuid>{9CC3FC29-375F-44F1-95BE-D52246CC7B3E}</ProjectGuid>
99
<OutputType>Library</OutputType>
10-
<RootNamespace>SGMLTests</RootNamespace>
11-
<AssemblyName>SGMLTests</AssemblyName>
10+
<RootNamespace>SgmlTests</RootNamespace>
11+
<AssemblyName>SgmlTests</AssemblyName>
1212
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
1313
<FileUpgradeFlags>
1414
</FileUpgradeFlags>

SgmlReader.sln

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11

22
Microsoft Visual Studio Solution File, Format Version 11.00
33
# Visual Studio 2010
4-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SgmlReader", "CommandLine\SgmlReader.csproj", "{606C348A-9A72-4179-9C55-4DD9914C22CC}"
4+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SgmlReader", "SgmlReader\SgmlReader.csproj", "{606C348A-9A72-4179-9C55-4DD9914C22CC}"
55
EndProject
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SgmlReaderDll", "sgmlreaderdll\SgmlReaderDll.csproj", "{499527FF-AE52-450F-B3E3-4AD53E1712AD}"
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SgmlReaderDll", "SgmlReaderDll\SgmlReaderDll.csproj", "{499527FF-AE52-450F-B3E3-4AD53E1712AD}"
77
EndProject
8-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SGMLTests", "SGMLTests\SGMLTests.csproj", "{9CC3FC29-375F-44F1-95BE-D52246CC7B3E}"
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SgmlTests", "SgmlTests\SgmlTests.csproj", "{9CC3FC29-375F-44F1-95BE-D52246CC7B3E}"
99
EndProject
1010
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{F0869BE5-15C0-4F2D-A94A-5534163302A1}"
1111
ProjectSection(SolutionItems) = preProject
@@ -14,7 +14,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1414
SGMLReader.nuspec = SGMLReader.nuspec
1515
license.txt = license.txt
1616
ReadMe.md = ReadMe.md
17-
Readme.htm = Readme.htm
17+
Demo.aspx = Demo.aspx
1818
EndProjectSection
1919
EndProject
2020
Global
@@ -44,7 +44,7 @@ Global
4444
GlobalSection(NestedProjects) = preSolution
4545
EndGlobalSection
4646
GlobalSection(MonoDevelopProperties) = preSolution
47-
StartupItem = CommandLine\SgmlReader.csproj
47+
StartupItem = SgmlReader\SgmlReader.csproj
4848
EndGlobalSection
4949
GlobalSection(SolutionProperties) = preSolution
5050
HideSolutionNode = FALSE
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

CommandLine/SgmlReader.csproj SgmlReader/SgmlReader.csproj

+4-7
Original file line numberDiff line numberDiff line change
@@ -41,16 +41,16 @@
4141
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
4242
</PropertyGroup>
4343
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
44-
<OutputPath>bin\debug\</OutputPath>
44+
<OutputPath>bin\Debug\</OutputPath>
4545
<BaseAddress>285212672</BaseAddress>
4646
<ConfigurationOverrideFile>
4747
</ConfigurationOverrideFile>
4848
<DefineConstants>DEBUG;TRACE</DefineConstants>
4949
<DocumentationFile>
5050
</DocumentationFile>
51-
<DebugSymbols>true</DebugSymbols>
51+
<DebugSymbols>True</DebugSymbols>
5252
<FileAlignment>4096</FileAlignment>
53-
<Optimize>false</Optimize>
53+
<Optimize>False</Optimize>
5454
<RegisterForComInterop>false</RegisterForComInterop>
5555
<RemoveIntegerChecks>false</RemoveIntegerChecks>
5656
<WarningLevel>4</WarningLevel>
@@ -66,7 +66,7 @@
6666
<DocumentationFile>
6767
</DocumentationFile>
6868
<FileAlignment>4096</FileAlignment>
69-
<Optimize>true</Optimize>
69+
<Optimize>True</Optimize>
7070
<RegisterForComInterop>false</RegisterForComInterop>
7171
<RemoveIntegerChecks>false</RemoveIntegerChecks>
7272
<WarningLevel>4</WarningLevel>
@@ -82,9 +82,6 @@
8282
</Reference>
8383
</ItemGroup>
8484
<ItemGroup>
85-
<Content Include="..\Readme.htm">
86-
<Link>Readme.htm</Link>
87-
</Content>
8885
<Content Include="App.ico" />
8986
<Compile Include="AssemblyInfo.cs">
9087
<SubType>Code</SubType>
File renamed without changes.

download.gif

-151 Bytes
Binary file not shown.

mindtouch.build.xml

-12
This file was deleted.

sgmlreaderdll/SgmlReaderDll.csproj

+7-7
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
</FileUpgradeFlags>
2323
<UpgradeBackupLocation>
2424
</UpgradeBackupLocation>
25-
<SignAssembly>true</SignAssembly>
25+
<SignAssembly>True</SignAssembly>
2626
<OldToolsVersion>3.5</OldToolsVersion>
2727
<PublishUrl>publish\</PublishUrl>
2828
<Install>true</Install>
@@ -42,32 +42,32 @@
4242
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
4343
</PropertyGroup>
4444
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
45-
<OutputPath>bin\debug\</OutputPath>
45+
<OutputPath>bin\Debug\</OutputPath>
4646
<BaseAddress>285212672</BaseAddress>
4747
<ConfigurationOverrideFile>
4848
</ConfigurationOverrideFile>
4949
<DefineConstants>DEBUG;TRACE</DefineConstants>
5050
<DocumentationFile>
5151
</DocumentationFile>
52-
<DebugSymbols>true</DebugSymbols>
52+
<DebugSymbols>True</DebugSymbols>
5353
<FileAlignment>4096</FileAlignment>
54-
<Optimize>false</Optimize>
54+
<Optimize>False</Optimize>
5555
<RegisterForComInterop>false</RegisterForComInterop>
5656
<RemoveIntegerChecks>false</RemoveIntegerChecks>
5757
<WarningLevel>4</WarningLevel>
5858
<DebugType>full</DebugType>
5959
<ErrorReport>prompt</ErrorReport>
6060
</PropertyGroup>
6161
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
62-
<OutputPath>bin\release\</OutputPath>
62+
<OutputPath>bin\Release\</OutputPath>
6363
<BaseAddress>285212672</BaseAddress>
6464
<ConfigurationOverrideFile>
6565
</ConfigurationOverrideFile>
6666
<DefineConstants>TRACE</DefineConstants>
6767
<DocumentationFile>
6868
</DocumentationFile>
6969
<FileAlignment>4096</FileAlignment>
70-
<Optimize>true</Optimize>
70+
<Optimize>True</Optimize>
7171
<RegisterForComInterop>false</RegisterForComInterop>
7272
<RemoveIntegerChecks>false</RemoveIntegerChecks>
7373
<WarningLevel>4</WarningLevel>
@@ -92,7 +92,7 @@
9292
<Compile Include="SgmlReader.cs">
9393
<SubType>Code</SubType>
9494
</Compile>
95-
<EmbeddedResource Include="..\CommandLine\Html.dtd">
95+
<EmbeddedResource Include="..\SgmlReader\Html.dtd">
9696
<Link>Html.dtd</Link>
9797
<SubType>Code</SubType>
9898
</EmbeddedResource>

0 commit comments

Comments
 (0)