Skip to content

Commit e146375

Browse files
committed
Misc fixes to build process
1 parent e66178b commit e146375

File tree

3 files changed

+27
-4
lines changed

3 files changed

+27
-4
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
.DS_Store
12
*.nupkg
23
*csproj.user
34
*.suo

build/Gemfile.lock

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
albacore (1.0.0)
5+
nokogiri (~> 1.5)
6+
rake (~> 10.0)
7+
rubyzip (~> 1.0)
8+
mini_portile2 (2.0.0)
9+
nokogiri (1.6.7.2-x86-mingw32)
10+
mini_portile2 (~> 2.0.0.rc2)
11+
rake (10.5.0)
12+
rubyzip (1.2.0)
13+
14+
PLATFORMS
15+
x86-mingw32
16+
17+
DEPENDENCIES
18+
albacore (~> 1.0)
19+
nokogiri
20+
21+
BUNDLED WITH
22+
1.12.5

build/Rakefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ require 'openssl'
99
project_name = "DbUp.Support.SqlServer.Scripting"
1010
project_copyright = "Copyright #{DateTime.now.strftime('%Y')}"
1111

12-
version_info = File.read('version.txt').split(':')
12+
version_info = open("version.txt").gets.split(':')
1313
version_number = version_info[0]
1414
version_notes = version_info[1]
1515

@@ -20,17 +20,17 @@ task :restore do |t|
2020
end
2121
end
2222

23-
task :build => [:version] do |t|
23+
task :build do |t|
2424
build :build => [:restore] do |b|
25-
b.sln = 'DbUp.Support.SqlServer.Scripting.sln'
25+
b.sln = '..\\DbUp.Support.SqlServer.Scripting.sln'
2626
b.target = ['Clean', 'Rebuild']
2727
b.prop 'Configuration', 'Release'
2828
end
2929
end
3030

3131
task :package => [:build] do |t, args|
3232
desc "copy lib"
33-
sh "xcopy /Y /S /EXCLUDE:exclude.txt ..\\#{project_name}\\bin\\Release\\net35 .\\pack\\lib\\net35\\"
33+
sh "xcopy /Y /S /EXCLUDE:exclude.txt ..\\#{project_name}\\bin\\Release\\#{project_name}* .\\pack\\lib\\net35\\"
3434
desc "create the nuget package"
3535
sh "nuget.exe pack .\\pack\\#{project_name}.nuspec -Properties \"version=#{version_number};notes=v#{version_number} - #{version_notes};copyright=#{project_copyright}\""
3636
end

0 commit comments

Comments
 (0)