Skip to content

Commit

Permalink
Updated package, deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
phatboyg committed Apr 13, 2011
1 parent d3fa630 commit 063d950
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
10 changes: 9 additions & 1 deletion Topshelf.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,17 @@
<language>en-US</language>
<licenseUrl>https://github.com/Topshelf/Topshelf/blob/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/Topshelf/Topshelf</projectUrl>
<dependencies>
<dependency id="log4net" version="1.2.10" />
</dependencies>
</metadata>
<files>
<file src="build_output\**\*" target="lib" />
<file src="build_output\NET35\Topshelf.dll" target="lib\NET35" />
<file src="build_output\NET35\Topshelf.xml" target="lib\NET35" />
<file src="build_output\NET35\Topshelf.pdb" target="lib\NET35" />
<file src="build_output\NET40\Topshelf.dll" target="lib\NET40" />
<file src="build_output\NET40\Topshelf.xml" target="lib\NET40" />
<file src="build_output\NET40\Topshelf.pdb" target="lib\NET40" />
</files>
</package>

Binary file modified lib/NuGet.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion rakefile.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
BUILD_PLATFORM = ENV['BUILD_PLATFORM'] || 'x86' # we might want to vary this a little
TARGET_FRAMEWORK_VERSION = (BUILD_CONFIG_KEY == "NET40" ? "v4.0" : "v3.5")
MSB_USE = (BUILD_CONFIG_KEY == "NET40" ? :net4 : :net35)
OUTPUT_PATH = (BUILD_CONFIG_KEY == "NET40" ? 'net-4.0' : 'net-3.5')
OUTPUT_PATH = (BUILD_CONFIG_KEY == "NET40" ? 'NET40' : 'NET35')

props = {
:src => File.expand_path("src"),
Expand Down
2 changes: 1 addition & 1 deletion src/Topshelf/Dashboard/DashboardConnectionHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public void Send(ConnectionContext context)
context.Complete();
}, 30.Seconds(), () =>
{
context.Response.StatusCode = (int)HttpStatusCode.RequestTimeout;
context.Response.StatusCode = (int)HttpStatusCode.ServiceUnavailable;
context.Complete();
});
});
Expand Down

0 comments on commit 063d950

Please sign in to comment.