@@ -34,19 +34,17 @@ task :default => 'build:all'
34
34
35
35
namespace :ci do
36
36
task :run_ci_build => [
37
- 'ripple',
38
37
'build:all',
39
38
'docs:build',
40
39
'package:all',
41
40
]
42
41
end
43
42
44
43
namespace :ripple do
45
- desc 'using ripple. yay!'
46
- ripple = Platform.runtime("buildsupport/ripple.exe")
47
- args = "restore"
48
- sh "#{ripple} #{args}"
49
- end
44
+ ripple = Platform.runtime("buildsupport/ripple.exe")
45
+ args = "restore"
46
+ sh "#{ripple} #{args}"
47
+ end
50
48
51
49
namespace :source do
52
50
desc 'Update assembly info with latest version number'
@@ -56,7 +54,7 @@ namespace :source do
56
54
asm.version = get_version
57
55
asm.company_name = 'http://fluentnhibernate.org'
58
56
asm.product_name = 'FluentNHibernate'
59
- asm.copyright = ' Copyright 2008-2013 James Gregory and contributors (Paul Batum, Hudson Akridge et al). All rights reserved.'
57
+ asm.copyright = " Copyright 2008-#{Time.new.year} James Gregory and contributors (Paul Batum, Hudson Akridge et al). All rights reserved."
60
58
asm.namespaces = ['System.Security']
61
59
asm.custom_attributes :AllowPartiallyTrustedCallers => nil
62
60
@@ -170,7 +168,7 @@ namespace :package do
170
168
nu.language = 'en-US'
171
169
nu.licenseUrl = 'http://github.com/jagregory/fluent-nhibernate/raw/master/LICENSE.txt'
172
170
nu.projectUrl = 'http://fluentnhibernate.org'
173
- nu.dependency 'NHibernate', '[3.3.1.4000,4)'
171
+ nu.dependency 'NHibernate', '[3.3.1.4000,4.0 )'
174
172
nu.working_directory = 'build'
175
173
nu.output_file = 'fluentnhibernate.nuspec'
176
174
nu.file 'FluentNHibernate.dll', 'lib'
0 commit comments