rake-dotnet 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/History.txt +4 -0
  2. data/Rakefile.rb +1 -1
  3. data/lib/rake_dotnet.rb +2 -2
  4. metadata +1 -1
data/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ === 0.1.4 / 2009-06-23
2
+
3
+ * FIX: FxCop - support for running against .exe files instead of just DLLs. Exclude *.vshost.exe by default
4
+
1
5
  === 0.1.3 / 2009-06-23
2
6
 
3
7
  * NEW: MSBuild - support for building VB.NET and WiX projects
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.3') do |p|
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rake-dotnet
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter MouncePeter Mounce