Skip to content

Commit

Permalink
Rebuilt dependencies, fixed merge, added latest Spark for 3.5/4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
phatboyg committed Apr 6, 2011
1 parent 103769a commit d3fa630
Show file tree
Hide file tree
Showing 74 changed files with 43,882 additions and 32,650 deletions.
251 changes: 0 additions & 251 deletions NDepend.xml

This file was deleted.

4 changes: 2 additions & 2 deletions Topshelf.nuspec
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<package>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>Topshelf</id>
<version>2.2.1.0</version>
<version>2.2.1.1</version>
<authors>Chris Patterson, Dru Sellers, Travis Smith</authors>
<description>Topshelf is a service library and hosting framework for .NET</description>
<language>en-US</language>
Expand Down
7 changes: 4 additions & 3 deletions build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@

echo Building for .NET 3.5
call rake BUILD_CONFIG_KEY=NET35
IF NOT %ERRORLEVEL% == 0 goto FAILED

echo Building for .NET 4.0
call rake unclean

echo Creating NU package
lib\nuget pack Topshelf.nuspec /OutputDirectory build_artifacts
IF NOT %ERRORLEVEL% == 0 goto FAILED

echo Create ZIP package
call rake package

:FAILED
8 changes: 6 additions & 2 deletions build_support/ilmerge.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,14 @@ class ILMerge
include Albacore::RunCommand
include Configuration::ILMerge

attr_accessor :assembly, :output, :debug, :target, :allow_dupes, :log, :internalize
attr_accessor :assembly, :output, :debug, :target, :allow_dupes, :log, :internalize, :no_docs, :union
attr_array :references

def initialize
@debug = true
@allow_dupes = true
@no_docs = false
@union = false

self.use :net4
# @platform_version = "v4"
Expand All @@ -27,7 +29,9 @@ def execute
params << "/log:#{@log}" unless @log.nil?
params << "/internalize:#{@internalize}" unless @internalize.nil?
params << "/target:#{@target}" unless @target.nil?
params << "/allowDup" unless @allow_dupes.nil?
params << "/allowDup" if @allow_dupes
params << "/xmldocs" unless @no_docs
params << "/union" if @union
params << "/ndebug" unless @debug
params << "/targetplatform:#{@platform_version},#{@platform_directory}" unless @platform_version.nil?
#params << @platform_version unless @platform_version.nil?
Expand Down
Binary file removed lib/Magnum/Ionic.Zip.dll
Binary file not shown.
Binary file removed lib/Magnum/Magnum.FileSystem.dll
Binary file not shown.
Binary file removed lib/Magnum/Magnum.FileSystem.pdb
Binary file not shown.
Binary file removed lib/Magnum/Magnum.TestFramework.dll
Binary file not shown.
Binary file removed lib/Magnum/Magnum.TestFramework.pdb
Binary file not shown.
12,388 changes: 0 additions & 12,388 deletions lib/Magnum/Magnum.XML

This file was deleted.

Binary file removed lib/Magnum/Magnum.dll
Binary file not shown.
Binary file removed lib/Magnum/Magnum.pdb
Binary file not shown.
Binary file removed lib/Magnum/System.Threading.dll
Binary file not shown.
19,811 changes: 0 additions & 19,811 deletions lib/Magnum/System.Threading.xml

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added lib/Magnum/net-3.5/Magnum.Routing.dll
Binary file not shown.
Binary file added lib/Magnum/net-3.5/Magnum.Routing.pdb
Binary file not shown.
45 changes: 45 additions & 0 deletions lib/Magnum/net-3.5/Magnum.Routing.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added lib/Magnum/net-3.5/Magnum.dll
Binary file not shown.
Binary file added lib/Magnum/net-3.5/Magnum.pdb
Binary file not shown.
Loading

0 comments on commit d3fa630

Please sign in to comment.