rake-dotnet 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.txt +4 -0
- data/Rakefile.rb +1 -1
- data/lib/rake_dotnet.rb +2 -2
- metadata +1 -1
data/History.txt
CHANGED
data/Rakefile.rb
CHANGED
@@ -5,7 +5,7 @@ require 'hoe'
|
|
5
5
|
require 'Pathname'
|
6
6
|
require 'rake/clean'
|
7
7
|
|
8
|
-
Hoe.new('rake-dotnet', '0.1.
|
8
|
+
Hoe.new('rake-dotnet', '0.1.4') do |p|
|
9
9
|
p.author = 'Peter Mounce'
|
10
10
|
p.description = 'Making a .NET build-automation dev\'s life easier, one angle-bracket at a time'
|
11
11
|
p.email = 'pete@neverrunwithscissors.com'
|
data/lib/rake_dotnet.rb
CHANGED
@@ -231,11 +231,11 @@ module Rake
|
|
231
231
|
end
|
232
232
|
|
233
233
|
task :fxcop,[:include_globs, :exclude_globs] do |t, args|
|
234
|
-
args.with_defaults(:include_globs => "#{@suites_dir}/**/*#{@product_name}*.dll")
|
234
|
+
args.with_defaults(:include_globs => ["#{@suites_dir}/**/*#{@product_name}*.dll", "#{@suites_dir}/**/*#{@product_name}*.exe"])
|
235
235
|
args.include_globs.each do |g|
|
236
236
|
@dll_list.include g
|
237
237
|
end
|
238
|
-
args.with_defaults(:exclude_globs => "#{@suites_dir}/*Tests*.dll")
|
238
|
+
args.with_defaults(:exclude_globs => ["#{@suites_dir}/*Tests*.dll", "#{@suites_dir}/*.vshost.exe"])
|
239
239
|
args.exclude_globs.each do |g|
|
240
240
|
@dll_list.exclude g
|
241
241
|
end
|