Skip to content

Commit febfd0c

Browse files
committed
Updating nuspec
1 parent 7d3ef9a commit febfd0c

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/ScriptCs.WebApi/ScriptCs.WebApi.nuspec

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
44
<id>ScriptCs.WebApi2</id>
5-
<version>1.0</version>
5+
<version>$version$</version>
66
<title>ScriptCs.WebApi2</title>
77
<authors>Glenn Block</authors>
88
<owners>Glenn Block</owners>
@@ -16,7 +16,6 @@
1616
* The host is wired up to discover in-memory controllers.</description>
1717
<summary />
1818
<releaseNotes>1.0 - Updated to Web API 2.2
19-
0.5.0 - Added support for additional hosts and helper methods for formatters and handlers.
2019
</releaseNotes>
2120
<copyright>Copyright Glenn Block 2014</copyright>
2221
<tags>scriptcs webapi owin</tags>

src/ScriptCs.WebApi/WebApi.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
namespace ScriptCs.WebApi
2121
{
2222
/// <summary>
23-
/// Creates a web api either as a self hosetd server of a OWIN middleware component
23+
/// Creates a web api using an OWIN host
2424
/// </summary>
2525
public class WebApi : IScriptPackContext
2626
{
@@ -98,7 +98,6 @@ public IDisposable Start(string baseAddress)
9898
return WebApp.Start(baseAddress, appBuilder =>
9999
{
100100
appBuilder.UseWebApi(_config);
101-
102101
ApplyDefaultConfiguration(_config, _controllerTypes);
103102
_startupAction(appBuilder);
104103
});

0 commit comments

Comments
 (0)