File tree 3 files changed +27
-4
lines changed
3 files changed +27
-4
lines changed Original file line number Diff line number Diff line change
1
+ .DS_Store
1
2
* .nupkg
2
3
* csproj.user
3
4
* .suo
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ require 'openssl'
9
9
project_name = "DbUp.Support.SqlServer.Scripting"
10
10
project_copyright = "Copyright #{ DateTime . now . strftime ( '%Y' ) } "
11
11
12
- version_info = File . read ( ' version.txt' ) . split ( ':' )
12
+ version_info = open ( " version.txt" ) . gets . split ( ':' )
13
13
version_number = version_info [ 0 ]
14
14
version_notes = version_info [ 1 ]
15
15
@@ -20,17 +20,17 @@ task :restore do |t|
20
20
end
21
21
end
22
22
23
- task :build => [ :version ] do |t |
23
+ task :build do |t |
24
24
build :build => [ :restore ] do |b |
25
- b . sln = 'DbUp.Support.SqlServer.Scripting.sln'
25
+ b . sln = '..\\ DbUp.Support.SqlServer.Scripting.sln'
26
26
b . target = [ 'Clean' , 'Rebuild' ]
27
27
b . prop 'Configuration' , 'Release'
28
28
end
29
29
end
30
30
31
31
task :package => [ :build ] do |t , args |
32
32
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\\ "
34
34
desc "create the nuget package"
35
35
sh "nuget.exe pack .\\ pack\\ #{ project_name } .nuspec -Properties \" version=#{ version_number } ;notes=v#{ version_number } - #{ version_notes } ;copyright=#{ project_copyright } \" "
36
36
end
You can’t perform that action at this time.
0 commit comments