Skip to content

Commit 12ad144

Browse files
committed
Updated the build and changed to using NuGet
1 parent d16795a commit 12ad144

File tree

236 files changed

+222
-252971
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

236 files changed

+222
-252971
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ _ReSharper*
1717
*.bak
1818
*.orig
1919

20+
packages
21+
NuGet.exe
22+
23+
2024
TestResult.xml
2125
submit.xml
2226
src/tests/*

Stact.nuspec

+2-3
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,14 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
33
<metadata>
44
<id>Stact</id>
5-
<version>1.1.0</version>
5+
<version>1.1.1</version>
66
<authors>Chris Patterson</authors>
77
<description>Stact is an actor library and framework</description>
88
<language>en-US</language>
99
<licenseUrl>https://github.com/phatboyg/Stact/blob/master/LICENSE</licenseUrl>
1010
<projectUrl>https://github.com/phatboyg/Stact</projectUrl>
1111
<dependencies>
12-
<dependency id="log4net" version="2.0.0" />
13-
<dependency id="Magnum" version="2.1.0" />
12+
<dependency id="Magnum" version="2.1.1" />
1413
</dependencies>
1514
</metadata>
1615
<files>

build_support/BuildUtils.rb

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def initialize(command, working_directory, framework, flags)
1717
def run(assemblies)
1818
assemblies.each do |assem|
1919
file = File.expand_path("#{@working_directory}/#{assem}")
20-
sh "#{@cmd} \"#{file}\""
20+
Kernel::system("#{@cmd} \"#{file}\"")
2121
end
2222
end
2323
end
@@ -63,7 +63,7 @@ def self.runProjFile(attributes)
6363
targetsValue += " /t:#{target}"
6464
end
6565

66-
sh "#{msbuildFile} #{projFile} #{targetsValue} #{switchesValue}"
66+
Kernel::system("#{msbuildFile} #{projFile} #{targetsValue} #{switchesValue}")
6767
end
6868
end
6969

@@ -76,7 +76,7 @@ def self.compile(attributes)
7676
frameworkDir = File.join(ENV['windir'].dup, 'Microsoft.NET', 'Framework', 'v4.0.30319')
7777
aspNetCompiler = File.join(frameworkDir, 'aspnet_compiler.exe')
7878

79-
sh "#{aspNetCompiler} -nologo -errorstack -c -p #{webPhysDir} -v #{webVirDir}"
79+
Kernel::system("#{aspNetCompiler} -nologo -errorstack -c -p #{webPhysDir} -v #{webVirDir}")
8080
end
8181
end
8282

@@ -109,4 +109,4 @@ def write(file)
109109
file.puts erb.result(binding)
110110
end
111111
end
112-
end
112+
end

build_support/internalize.txt

-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
Stact.*
2-
log4net.dll

lib/ASP.NET MVC 2/System.Web.Mvc.dll

-367 KB
Binary file not shown.

lib/ASP.NET MVC 2/System.Web.Mvc.xml

-8,318
This file was deleted.

lib/Glee/GLEE SHARED SOURCE LICENSE (2006-8-22).rtf

-247
This file was deleted.

lib/Glee/Microsoft.GLEE.Drawing.dll

-72 KB
Binary file not shown.
-96 KB
Binary file not shown.

lib/Glee/Microsoft.GLEE.dll

-192 KB
Binary file not shown.

lib/Glee/README.doc

-28 KB
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 not shown.
Binary file not shown.

lib/Magnum/net-3.5/Magnum.Routing.dll

-26.5 KB
Binary file not shown.

lib/Magnum/net-3.5/Magnum.Routing.pdb

-102 KB
Binary file not shown.

lib/Magnum/net-3.5/Magnum.Routing.xml

-45
This file was deleted.

lib/Magnum/net-3.5/Magnum.dll

-2.01 MB
Binary file not shown.

lib/Magnum/net-3.5/Magnum.pdb

-4.19 MB
Binary file not shown.

0 commit comments

Comments
 (0)