Skip to content

Commit

Permalink
NuGet v1.2.7, more graceful handling of unknown HTTP status - thanks @…
Browse files Browse the repository at this point in the history
  • Loading branch information
jchristn committed Aug 26, 2017
1 parent bd3b891 commit aeb7081
Show file tree
Hide file tree
Showing 78 changed files with 136 additions and 110 deletions.
Binary file modified .vs/WatsonWebserver/v15/.suo
Binary file not shown.
26 changes: 26 additions & 0 deletions NuGet/Watson.1.2.7.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>Watson</id>
<version>1.2.7</version>
<title>Watson</title>
<authors>Joel Christner</authors>
<owners>Joel Christner</owners>
<licenseUrl>https://github.com/jchristn/WatsonWebserver/blob/master/LICENSE.txt</licenseUrl>
<projectUrl>https://github.com/jchristn/WatsonWebserver</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Simple async C# web server for handling REST requests.</description>
<summary>Simple async C# web server for handling REST requests.</summary>
<releaseNotes>More graceful handling of unknown status codes (thank you @mbcrawfo)</releaseNotes>
<copyright>(c) 2017 Marauder Software Inc</copyright>
<tags>web server rest restful http https async</tags>
<dependencies>
<dependency id="Newtonsoft.Json" version="9.0.1" />
<dependency id="RegexMatcher" version="1.0.0" />
</dependencies>
</metadata>
<files>
<file src="..\WatsonWebserver\bin\release\Watson.dll" target="lib\Watson.dll" />
<file src="..\WatsonWebserver\bin\release\Watson.pdb" target="lib\Watson.pdb" />
</files>
</package>
4 changes: 2 additions & 2 deletions TestContentRoutes/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.2.6.0")]
[assembly: AssemblyFileVersion("1.2.6.0")]
[assembly: AssemblyVersion("1.2.7.0")]
[assembly: AssemblyFileVersion("1.2.7.0")]
4 changes: 2 additions & 2 deletions TestDefault/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.2.6.0")]
[assembly: AssemblyFileVersion("1.2.6.0")]
[assembly: AssemblyVersion("1.2.7.0")]
[assembly: AssemblyFileVersion("1.2.7.0")]
Binary file modified TestDefault/bin/Debug/TestDefault.exe
Binary file not shown.
Binary file modified TestDefault/bin/Debug/TestDefault.pdb
Binary file not shown.
Binary file modified TestDefault/bin/Debug/Watson.dll
Binary file not shown.
Binary file modified TestDefault/bin/Debug/Watson.pdb
Binary file not shown.
Binary file modified TestDefault/bin/Release/TestDefault.exe
Binary file not shown.
Binary file modified TestDefault/bin/Release/TestDefault.pdb
Binary file not shown.
Binary file modified TestDefault/bin/Release/Watson.dll
Binary file not shown.
Binary file modified TestDefault/bin/Release/Watson.pdb
Binary file not shown.
2 changes: 1 addition & 1 deletion TestDefault/obj/Debug/CoreCompileInputs.cache
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1362df7198264575e115dd083f63573fa9da7ca7
559ba943ed73df8737244e5dffbf717b38016cb8
24 changes: 12 additions & 12 deletions TestDefault/obj/Debug/TestDefault.csproj.FileListAbsolute.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ D:\Code\Watson\WatsonWebserverDynRouting\TestDefault\bin\Debug\Newtonsoft.Json.x
D:\Code\Watson\WatsonWebserverDynRouting\TestDefault\obj\Debug\TestDefault.csprojResolveAssemblyReference.cache
D:\Code\Watson\WatsonWebserverDynRouting\TestDefault\obj\Debug\TestDefault.exe
D:\Code\Watson\WatsonWebserverDynRouting\TestDefault\obj\Debug\TestDefault.pdb
D:\Code\Watson\WatsonWebserver\TestDefault\bin\Debug\TestDefault.exe.config
D:\Code\Watson\WatsonWebserver\TestDefault\bin\Debug\TestDefault.exe
D:\Code\Watson\WatsonWebserver\TestDefault\bin\Debug\TestDefault.pdb
D:\Code\Watson\WatsonWebserver\TestDefault\bin\Debug\Watson.dll
D:\Code\Watson\WatsonWebserver\TestDefault\bin\Debug\RegexMatcher.dll
D:\Code\Watson\WatsonWebserver\TestDefault\bin\Debug\Newtonsoft.Json.dll
D:\Code\Watson\WatsonWebserver\TestDefault\bin\Debug\Watson.pdb
D:\Code\Watson\WatsonWebserver\TestDefault\bin\Debug\RegexMatcher.pdb
D:\Code\Watson\WatsonWebserver\TestDefault\bin\Debug\Newtonsoft.Json.xml
D:\Code\Watson\WatsonWebserver\TestDefault\obj\Debug\TestDefault.csprojResolveAssemblyReference.cache
D:\Code\Watson\WatsonWebserver\TestDefault\obj\Debug\TestDefault.exe
D:\Code\Watson\WatsonWebserver\TestDefault\obj\Debug\TestDefault.pdb
D:\code\watson\WatsonWebserver\TestDefault\bin\Debug\TestDefault.exe.config
D:\code\watson\WatsonWebserver\TestDefault\bin\Debug\TestDefault.exe
D:\code\watson\WatsonWebserver\TestDefault\bin\Debug\TestDefault.pdb
D:\code\watson\WatsonWebserver\TestDefault\bin\Debug\Watson.dll
D:\code\watson\WatsonWebserver\TestDefault\bin\Debug\RegexMatcher.dll
D:\code\watson\WatsonWebserver\TestDefault\bin\Debug\Newtonsoft.Json.dll
D:\code\watson\WatsonWebserver\TestDefault\bin\Debug\Watson.pdb
D:\code\watson\WatsonWebserver\TestDefault\bin\Debug\RegexMatcher.pdb
D:\code\watson\WatsonWebserver\TestDefault\bin\Debug\Newtonsoft.Json.xml
D:\code\watson\WatsonWebserver\TestDefault\obj\Debug\TestDefault.csprojResolveAssemblyReference.cache
D:\code\watson\WatsonWebserver\TestDefault\obj\Debug\TestDefault.exe
D:\code\watson\WatsonWebserver\TestDefault\obj\Debug\TestDefault.pdb
Binary file not shown.
Binary file modified TestDefault/obj/Debug/TestDefault.exe
Binary file not shown.
Binary file modified TestDefault/obj/Debug/TestDefault.pdb
Binary file not shown.
2 changes: 1 addition & 1 deletion TestDefault/obj/Release/CoreCompileInputs.cache
Original file line number Diff line number Diff line change
@@ -1 +1 @@
f48a310f656b16d3a296cc9bb9dbeb7fe369127f
b52f1e886109f1b16a52e8b886c2168b91b1c5c3
Binary file not shown.
24 changes: 12 additions & 12 deletions TestDefault/obj/Release/TestDefault.csproj.FileListAbsolute.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ D:\Code\Watson\WatsonWebserverDynRouting\TestDefault\obj\Release\TestDefault.exe
D:\Code\Watson\WatsonWebserverDynRouting\TestDefault\obj\Release\TestDefault.pdb
D:\Code\Watson\WatsonWebserverDynRouting\TestDefault\bin\Release\RegexMatcher.dll
D:\Code\Watson\WatsonWebserverDynRouting\TestDefault\bin\Release\RegexMatcher.pdb
D:\Code\Watson\WatsonWebserver\TestDefault\bin\Release\TestDefault.exe.config
D:\Code\Watson\WatsonWebserver\TestDefault\bin\Release\TestDefault.exe
D:\Code\Watson\WatsonWebserver\TestDefault\bin\Release\TestDefault.pdb
D:\Code\Watson\WatsonWebserver\TestDefault\bin\Release\Watson.dll
D:\Code\Watson\WatsonWebserver\TestDefault\bin\Release\RegexMatcher.dll
D:\Code\Watson\WatsonWebserver\TestDefault\bin\Release\Newtonsoft.Json.dll
D:\Code\Watson\WatsonWebserver\TestDefault\bin\Release\Watson.pdb
D:\Code\Watson\WatsonWebserver\TestDefault\bin\Release\RegexMatcher.pdb
D:\Code\Watson\WatsonWebserver\TestDefault\bin\Release\Newtonsoft.Json.xml
D:\Code\Watson\WatsonWebserver\TestDefault\obj\Release\TestDefault.csprojResolveAssemblyReference.cache
D:\Code\Watson\WatsonWebserver\TestDefault\obj\Release\TestDefault.exe
D:\Code\Watson\WatsonWebserver\TestDefault\obj\Release\TestDefault.pdb
D:\code\watson\WatsonWebserver\TestDefault\bin\Release\TestDefault.exe.config
D:\code\watson\WatsonWebserver\TestDefault\bin\Release\TestDefault.exe
D:\code\watson\WatsonWebserver\TestDefault\bin\Release\TestDefault.pdb
D:\code\watson\WatsonWebserver\TestDefault\bin\Release\Watson.dll
D:\code\watson\WatsonWebserver\TestDefault\bin\Release\RegexMatcher.dll
D:\code\watson\WatsonWebserver\TestDefault\bin\Release\Newtonsoft.Json.dll
D:\code\watson\WatsonWebserver\TestDefault\bin\Release\Watson.pdb
D:\code\watson\WatsonWebserver\TestDefault\bin\Release\RegexMatcher.pdb
D:\code\watson\WatsonWebserver\TestDefault\bin\Release\Newtonsoft.Json.xml
D:\code\watson\WatsonWebserver\TestDefault\obj\Release\TestDefault.csprojResolveAssemblyReference.cache
D:\code\watson\WatsonWebserver\TestDefault\obj\Release\TestDefault.exe
D:\code\watson\WatsonWebserver\TestDefault\obj\Release\TestDefault.pdb
Binary file not shown.
Binary file modified TestDefault/obj/Release/TestDefault.exe
Binary file not shown.
Binary file modified TestDefault/obj/Release/TestDefault.pdb
Binary file not shown.
4 changes: 2 additions & 2 deletions TestDynamicRoutes/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.2.6.0")]
[assembly: AssemblyFileVersion("1.2.6.0")]
[assembly: AssemblyVersion("1.2.7.0")]
[assembly: AssemblyFileVersion("1.2.7.0")]
Binary file modified TestDynamicRoutes/bin/Debug/TestDynamicRoutes.exe
Binary file not shown.
Binary file modified TestDynamicRoutes/bin/Debug/TestDynamicRoutes.pdb
Binary file not shown.
Binary file modified TestDynamicRoutes/bin/Debug/Watson.dll
Binary file not shown.
Binary file modified TestDynamicRoutes/bin/Debug/Watson.pdb
Binary file not shown.
Binary file modified TestDynamicRoutes/bin/Release/TestDynamicRoutes.exe
Binary file not shown.
Binary file modified TestDynamicRoutes/bin/Release/TestDynamicRoutes.pdb
Binary file not shown.
Binary file modified TestDynamicRoutes/bin/Release/Watson.dll
Binary file not shown.
Binary file modified TestDynamicRoutes/bin/Release/Watson.pdb
Binary file not shown.
2 changes: 1 addition & 1 deletion TestDynamicRoutes/obj/Debug/CoreCompileInputs.cache
Original file line number Diff line number Diff line change
@@ -1 +1 @@
458e733533612d05cb4472b8b974d6c787209141
5670dcd5fa6af3a335134b7900221e511aa0c31b
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ D:\Code\Watson\WatsonWebserverDynRouting\TestDynamicRoutes\bin\Debug\Newtonsoft.
D:\Code\Watson\WatsonWebserverDynRouting\TestDynamicRoutes\obj\Debug\TestDynamicRoutes.csprojResolveAssemblyReference.cache
D:\Code\Watson\WatsonWebserverDynRouting\TestDynamicRoutes\obj\Debug\TestDynamicRoutes.exe
D:\Code\Watson\WatsonWebserverDynRouting\TestDynamicRoutes\obj\Debug\TestDynamicRoutes.pdb
D:\Code\Watson\WatsonWebserver\TestDynamicRoutes\bin\Debug\TestDynamicRoutes.exe.config
D:\Code\Watson\WatsonWebserver\TestDynamicRoutes\bin\Debug\TestDynamicRoutes.exe
D:\Code\Watson\WatsonWebserver\TestDynamicRoutes\bin\Debug\TestDynamicRoutes.pdb
D:\Code\Watson\WatsonWebserver\TestDynamicRoutes\bin\Debug\Watson.dll
D:\Code\Watson\WatsonWebserver\TestDynamicRoutes\bin\Debug\RegexMatcher.dll
D:\Code\Watson\WatsonWebserver\TestDynamicRoutes\bin\Debug\Newtonsoft.Json.dll
D:\Code\Watson\WatsonWebserver\TestDynamicRoutes\bin\Debug\Watson.pdb
D:\Code\Watson\WatsonWebserver\TestDynamicRoutes\bin\Debug\RegexMatcher.pdb
D:\Code\Watson\WatsonWebserver\TestDynamicRoutes\bin\Debug\Newtonsoft.Json.xml
D:\Code\Watson\WatsonWebserver\TestDynamicRoutes\obj\Debug\TestDynamicRoutes.csprojResolveAssemblyReference.cache
D:\Code\Watson\WatsonWebserver\TestDynamicRoutes\obj\Debug\TestDynamicRoutes.exe
D:\Code\Watson\WatsonWebserver\TestDynamicRoutes\obj\Debug\TestDynamicRoutes.pdb
D:\code\watson\WatsonWebserver\TestDynamicRoutes\bin\Debug\TestDynamicRoutes.exe.config
D:\code\watson\WatsonWebserver\TestDynamicRoutes\bin\Debug\TestDynamicRoutes.exe
D:\code\watson\WatsonWebserver\TestDynamicRoutes\bin\Debug\TestDynamicRoutes.pdb
D:\code\watson\WatsonWebserver\TestDynamicRoutes\bin\Debug\Watson.dll
D:\code\watson\WatsonWebserver\TestDynamicRoutes\bin\Debug\RegexMatcher.dll
D:\code\watson\WatsonWebserver\TestDynamicRoutes\bin\Debug\Newtonsoft.Json.dll
D:\code\watson\WatsonWebserver\TestDynamicRoutes\bin\Debug\Watson.pdb
D:\code\watson\WatsonWebserver\TestDynamicRoutes\bin\Debug\RegexMatcher.pdb
D:\code\watson\WatsonWebserver\TestDynamicRoutes\bin\Debug\Newtonsoft.Json.xml
D:\code\watson\WatsonWebserver\TestDynamicRoutes\obj\Debug\TestDynamicRoutes.csprojResolveAssemblyReference.cache
D:\code\watson\WatsonWebserver\TestDynamicRoutes\obj\Debug\TestDynamicRoutes.exe
D:\code\watson\WatsonWebserver\TestDynamicRoutes\obj\Debug\TestDynamicRoutes.pdb
Binary file not shown.
Binary file modified TestDynamicRoutes/obj/Debug/TestDynamicRoutes.exe
Binary file not shown.
Binary file modified TestDynamicRoutes/obj/Debug/TestDynamicRoutes.pdb
Binary file not shown.
2 changes: 1 addition & 1 deletion TestDynamicRoutes/obj/Release/CoreCompileInputs.cache
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ccbe5093f002778490735a7839eccb6128a95bb8
acfaff6adef1186c4715cf6dabfd98e7fe73b384
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ D:\Code\Watson\WatsonWebserverDynRouting\TestDynamicRoutes\bin\Release\Newtonsof
D:\Code\Watson\WatsonWebserverDynRouting\TestDynamicRoutes\obj\Release\TestDynamicRoutes.csprojResolveAssemblyReference.cache
D:\Code\Watson\WatsonWebserverDynRouting\TestDynamicRoutes\obj\Release\TestDynamicRoutes.exe
D:\Code\Watson\WatsonWebserverDynRouting\TestDynamicRoutes\obj\Release\TestDynamicRoutes.pdb
D:\Code\Watson\WatsonWebserver\TestDynamicRoutes\bin\Release\TestDynamicRoutes.exe.config
D:\Code\Watson\WatsonWebserver\TestDynamicRoutes\bin\Release\TestDynamicRoutes.exe
D:\Code\Watson\WatsonWebserver\TestDynamicRoutes\bin\Release\TestDynamicRoutes.pdb
D:\Code\Watson\WatsonWebserver\TestDynamicRoutes\bin\Release\Watson.dll
D:\Code\Watson\WatsonWebserver\TestDynamicRoutes\bin\Release\RegexMatcher.dll
D:\Code\Watson\WatsonWebserver\TestDynamicRoutes\bin\Release\Newtonsoft.Json.dll
D:\Code\Watson\WatsonWebserver\TestDynamicRoutes\bin\Release\Watson.pdb
D:\Code\Watson\WatsonWebserver\TestDynamicRoutes\bin\Release\RegexMatcher.pdb
D:\Code\Watson\WatsonWebserver\TestDynamicRoutes\bin\Release\Newtonsoft.Json.xml
D:\Code\Watson\WatsonWebserver\TestDynamicRoutes\obj\Release\TestDynamicRoutes.csprojResolveAssemblyReference.cache
D:\Code\Watson\WatsonWebserver\TestDynamicRoutes\obj\Release\TestDynamicRoutes.exe
D:\Code\Watson\WatsonWebserver\TestDynamicRoutes\obj\Release\TestDynamicRoutes.pdb
D:\code\watson\WatsonWebserver\TestDynamicRoutes\bin\Release\TestDynamicRoutes.exe.config
D:\code\watson\WatsonWebserver\TestDynamicRoutes\bin\Release\TestDynamicRoutes.exe
D:\code\watson\WatsonWebserver\TestDynamicRoutes\bin\Release\TestDynamicRoutes.pdb
D:\code\watson\WatsonWebserver\TestDynamicRoutes\bin\Release\Watson.dll
D:\code\watson\WatsonWebserver\TestDynamicRoutes\bin\Release\RegexMatcher.dll
D:\code\watson\WatsonWebserver\TestDynamicRoutes\bin\Release\Newtonsoft.Json.dll
D:\code\watson\WatsonWebserver\TestDynamicRoutes\bin\Release\Watson.pdb
D:\code\watson\WatsonWebserver\TestDynamicRoutes\bin\Release\RegexMatcher.pdb
D:\code\watson\WatsonWebserver\TestDynamicRoutes\bin\Release\Newtonsoft.Json.xml
D:\code\watson\WatsonWebserver\TestDynamicRoutes\obj\Release\TestDynamicRoutes.csprojResolveAssemblyReference.cache
D:\code\watson\WatsonWebserver\TestDynamicRoutes\obj\Release\TestDynamicRoutes.exe
D:\code\watson\WatsonWebserver\TestDynamicRoutes\obj\Release\TestDynamicRoutes.pdb
Binary file not shown.
Binary file modified TestDynamicRoutes/obj/Release/TestDynamicRoutes.exe
Binary file not shown.
Binary file modified TestDynamicRoutes/obj/Release/TestDynamicRoutes.pdb
Binary file not shown.
4 changes: 2 additions & 2 deletions TestStaticRoutes/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.2.6.0")]
[assembly: AssemblyFileVersion("1.2.6.0")]
[assembly: AssemblyVersion("1.2.7.0")]
[assembly: AssemblyFileVersion("1.2.7.0")]
Binary file modified TestStaticRoutes/bin/Debug/TestStaticRoutes.exe
Binary file not shown.
Binary file modified TestStaticRoutes/bin/Debug/TestStaticRoutes.pdb
Binary file not shown.
Binary file modified TestStaticRoutes/bin/Debug/Watson.dll
Binary file not shown.
Binary file modified TestStaticRoutes/bin/Debug/Watson.pdb
Binary file not shown.
Binary file modified TestStaticRoutes/bin/Release/TestStaticRoutes.exe
Binary file not shown.
Binary file modified TestStaticRoutes/bin/Release/TestStaticRoutes.pdb
Binary file not shown.
Binary file modified TestStaticRoutes/bin/Release/Watson.dll
Binary file not shown.
Binary file modified TestStaticRoutes/bin/Release/Watson.pdb
Binary file not shown.
2 changes: 1 addition & 1 deletion TestStaticRoutes/obj/Debug/CoreCompileInputs.cache
Original file line number Diff line number Diff line change
@@ -1 +1 @@
bcb7d66975b8d392b2bb5688e19cd257aa944e5b
d9edb8bc9390cf2a6dc68e4e97c68e55d39028d1
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ D:\Code\Watson\WatsonWebserverDynRouting\TestStaticRoutes\bin\Debug\Newtonsoft.J
D:\Code\Watson\WatsonWebserverDynRouting\TestStaticRoutes\obj\Debug\TestStaticRoutes.csprojResolveAssemblyReference.cache
D:\Code\Watson\WatsonWebserverDynRouting\TestStaticRoutes\obj\Debug\TestStaticRoutes.exe
D:\Code\Watson\WatsonWebserverDynRouting\TestStaticRoutes\obj\Debug\TestStaticRoutes.pdb
D:\Code\Watson\WatsonWebserver\TestStaticRoutes\bin\Debug\TestStaticRoutes.exe.config
D:\Code\Watson\WatsonWebserver\TestStaticRoutes\bin\Debug\TestStaticRoutes.exe
D:\Code\Watson\WatsonWebserver\TestStaticRoutes\bin\Debug\TestStaticRoutes.pdb
D:\Code\Watson\WatsonWebserver\TestStaticRoutes\bin\Debug\Watson.dll
D:\Code\Watson\WatsonWebserver\TestStaticRoutes\bin\Debug\RegexMatcher.dll
D:\Code\Watson\WatsonWebserver\TestStaticRoutes\bin\Debug\Newtonsoft.Json.dll
D:\Code\Watson\WatsonWebserver\TestStaticRoutes\bin\Debug\Watson.pdb
D:\Code\Watson\WatsonWebserver\TestStaticRoutes\bin\Debug\RegexMatcher.pdb
D:\Code\Watson\WatsonWebserver\TestStaticRoutes\bin\Debug\Newtonsoft.Json.xml
D:\Code\Watson\WatsonWebserver\TestStaticRoutes\obj\Debug\TestStaticRoutes.csprojResolveAssemblyReference.cache
D:\Code\Watson\WatsonWebserver\TestStaticRoutes\obj\Debug\TestStaticRoutes.exe
D:\Code\Watson\WatsonWebserver\TestStaticRoutes\obj\Debug\TestStaticRoutes.pdb
D:\code\watson\WatsonWebserver\TestStaticRoutes\bin\Debug\TestStaticRoutes.exe.config
D:\code\watson\WatsonWebserver\TestStaticRoutes\bin\Debug\TestStaticRoutes.exe
D:\code\watson\WatsonWebserver\TestStaticRoutes\bin\Debug\TestStaticRoutes.pdb
D:\code\watson\WatsonWebserver\TestStaticRoutes\bin\Debug\Watson.dll
D:\code\watson\WatsonWebserver\TestStaticRoutes\bin\Debug\RegexMatcher.dll
D:\code\watson\WatsonWebserver\TestStaticRoutes\bin\Debug\Newtonsoft.Json.dll
D:\code\watson\WatsonWebserver\TestStaticRoutes\bin\Debug\Watson.pdb
D:\code\watson\WatsonWebserver\TestStaticRoutes\bin\Debug\RegexMatcher.pdb
D:\code\watson\WatsonWebserver\TestStaticRoutes\bin\Debug\Newtonsoft.Json.xml
D:\code\watson\WatsonWebserver\TestStaticRoutes\obj\Debug\TestStaticRoutes.csprojResolveAssemblyReference.cache
D:\code\watson\WatsonWebserver\TestStaticRoutes\obj\Debug\TestStaticRoutes.exe
D:\code\watson\WatsonWebserver\TestStaticRoutes\obj\Debug\TestStaticRoutes.pdb
Binary file not shown.
Binary file modified TestStaticRoutes/obj/Debug/TestStaticRoutes.exe
Binary file not shown.
Binary file modified TestStaticRoutes/obj/Debug/TestStaticRoutes.pdb
Binary file not shown.
2 changes: 1 addition & 1 deletion TestStaticRoutes/obj/Release/CoreCompileInputs.cache
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0903924f8c4fc843c0e4e179358f24d01a74c936
49a90d947a36932d337ff21b4ee0d79f33bfd4e4
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ D:\Code\Watson\WatsonWebserverDynRouting\TestStaticRoutes\bin\Release\Newtonsoft
D:\Code\Watson\WatsonWebserverDynRouting\TestStaticRoutes\obj\Release\TestStaticRoutes.csprojResolveAssemblyReference.cache
D:\Code\Watson\WatsonWebserverDynRouting\TestStaticRoutes\obj\Release\TestStaticRoutes.exe
D:\Code\Watson\WatsonWebserverDynRouting\TestStaticRoutes\obj\Release\TestStaticRoutes.pdb
D:\Code\Watson\WatsonWebserver\TestStaticRoutes\bin\Release\TestStaticRoutes.exe.config
D:\Code\Watson\WatsonWebserver\TestStaticRoutes\bin\Release\TestStaticRoutes.exe
D:\Code\Watson\WatsonWebserver\TestStaticRoutes\bin\Release\TestStaticRoutes.pdb
D:\Code\Watson\WatsonWebserver\TestStaticRoutes\bin\Release\Watson.dll
D:\Code\Watson\WatsonWebserver\TestStaticRoutes\bin\Release\RegexMatcher.dll
D:\Code\Watson\WatsonWebserver\TestStaticRoutes\bin\Release\Newtonsoft.Json.dll
D:\Code\Watson\WatsonWebserver\TestStaticRoutes\bin\Release\Watson.pdb
D:\Code\Watson\WatsonWebserver\TestStaticRoutes\bin\Release\RegexMatcher.pdb
D:\Code\Watson\WatsonWebserver\TestStaticRoutes\bin\Release\Newtonsoft.Json.xml
D:\Code\Watson\WatsonWebserver\TestStaticRoutes\obj\Release\TestStaticRoutes.csprojResolveAssemblyReference.cache
D:\Code\Watson\WatsonWebserver\TestStaticRoutes\obj\Release\TestStaticRoutes.exe
D:\Code\Watson\WatsonWebserver\TestStaticRoutes\obj\Release\TestStaticRoutes.pdb
D:\code\watson\WatsonWebserver\TestStaticRoutes\bin\Release\TestStaticRoutes.exe.config
D:\code\watson\WatsonWebserver\TestStaticRoutes\bin\Release\TestStaticRoutes.exe
D:\code\watson\WatsonWebserver\TestStaticRoutes\bin\Release\TestStaticRoutes.pdb
D:\code\watson\WatsonWebserver\TestStaticRoutes\bin\Release\Watson.dll
D:\code\watson\WatsonWebserver\TestStaticRoutes\bin\Release\RegexMatcher.dll
D:\code\watson\WatsonWebserver\TestStaticRoutes\bin\Release\Newtonsoft.Json.dll
D:\code\watson\WatsonWebserver\TestStaticRoutes\bin\Release\Watson.pdb
D:\code\watson\WatsonWebserver\TestStaticRoutes\bin\Release\RegexMatcher.pdb
D:\code\watson\WatsonWebserver\TestStaticRoutes\bin\Release\Newtonsoft.Json.xml
D:\code\watson\WatsonWebserver\TestStaticRoutes\obj\Release\TestStaticRoutes.csprojResolveAssemblyReference.cache
D:\code\watson\WatsonWebserver\TestStaticRoutes\obj\Release\TestStaticRoutes.exe
D:\code\watson\WatsonWebserver\TestStaticRoutes\obj\Release\TestStaticRoutes.pdb
Binary file not shown.
Binary file modified TestStaticRoutes/obj/Release/TestStaticRoutes.exe
Binary file not shown.
Binary file modified TestStaticRoutes/obj/Release/TestStaticRoutes.pdb
Binary file not shown.
4 changes: 2 additions & 2 deletions WatsonWebserver/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.2.6.0")]
[assembly: AssemblyFileVersion("1.2.6.0")]
[assembly: AssemblyVersion("1.2.7.0")]
[assembly: AssemblyFileVersion("1.2.7.0")]
6 changes: 3 additions & 3 deletions WatsonWebserver/WatsonWebserver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ private HttpResponse DefaultRouteProcessor(HttpListenerContext context, HttpRequ
break;

default:
Logging.Log("Unknown http status code " + status);
ret.Add("http_text", "Unknown Status");
break;
}

Expand Down Expand Up @@ -880,7 +880,7 @@ private HttpResponse DefaultRouteProcessor(HttpListenerContext context, HttpRequ
#endregion

default:
Logging.Log("Unknown http status code " + status);
ret.Add("http_text", "Unknown Status");
break;
}

Expand Down Expand Up @@ -994,7 +994,7 @@ private HttpResponse DefaultRouteProcessor(HttpListenerContext context, HttpRequ
break;

default:
Logging.Log("Unknown http status code " + status);
response.StatusDescription = "Unknown Status";
return;

This comment has been minimized.

Copy link
@mbcrawfo

mbcrawfo Aug 28, 2017

@jchristn this needs to be changed to a break to completely fix #8 :)

This comment has been minimized.

Copy link
@jchristn

jchristn Aug 28, 2017

Author Collaborator

Argh! Thank you, I'm fixing this now.

This comment has been minimized.

Copy link
@jchristn

jchristn Aug 28, 2017

Author Collaborator

Just committed 1.2.8 and published to NuGet. Thanks again!

}

Expand Down
Binary file modified WatsonWebserver/bin/Debug/Watson.dll
Binary file not shown.
Binary file modified WatsonWebserver/bin/Debug/Watson.pdb
Binary file not shown.
Binary file modified WatsonWebserver/bin/Release/Watson.dll
Binary file not shown.
Binary file modified WatsonWebserver/bin/Release/Watson.pdb
Binary file not shown.
2 changes: 1 addition & 1 deletion WatsonWebserver/obj/Debug/CoreCompileInputs.cache
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8daafdb2f22800cbbc3f1c1a70e63e50e17f637a
d6a4885a66f271c653c94095c09b6072edb01110
Binary file modified WatsonWebserver/obj/Debug/Watson.dll
Binary file not shown.
Binary file modified WatsonWebserver/obj/Debug/Watson.pdb
Binary file not shown.
Loading

0 comments on commit aeb7081

Please sign in to comment.