albacore 2.4.3 → 2.5.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6ffa4abad9bf197d86c725a07a2b7d3e52b871c7
4
- data.tar.gz: e81f21ef482a36f64da60ec37faad4666817f1f5
3
+ metadata.gz: ed4e5ebd8a606482ca886f5c025967a793553061
4
+ data.tar.gz: b5713f0ccf76962f2871166a64d9afff26a1796e
5
5
  SHA512:
6
- metadata.gz: 7b97e9d2a9c4dc76ac2635a79c56d990affd8ff7ef447bebd50864aa29c711d94341cb398c9b7c4f1909674bcd3905457bf411947956c0ac9aa073a5519427a4
7
- data.tar.gz: 947336c3a138d82a7e8c36b3fb007bd6801818271ef03498ad4284e18ac636dea03c2b076b54ea387f98d1a922c0aee49034823fa25d018ae1f80a851eac225d
6
+ metadata.gz: 4c46556532c61b5957b31eea8b9858ac39b7f682e1c90822d13d5499cf16927396947c27def6b2e4c11ce0a67fe4fcbaec24595e9d9a1e55f9a0c185a10bbf3d
7
+ data.tar.gz: f0d6b2f76c60044fe3cb3b82d12bcb5caa1f3da6b390c98c2d965fb947d0bf5f9b3c573802b0d8c20ed9c9b97e19a187171572d5fd702fd73676c39bbabd8a1d
@@ -343,7 +343,7 @@ end})
343
343
  opts = Map.options(opts || {}).
344
344
  apply({
345
345
  symbols: false,
346
- dotnet_version: 'net40',
346
+ dotnet_version: 'net45',
347
347
  known_projects: Set.new,
348
348
  configuration: 'Debug',
349
349
  project_dependencies: true,
@@ -1,3 +1,3 @@
1
1
  module Albacore
2
- VERSION = "2.4.3"
2
+ VERSION = "2.5.0"
3
3
  end
@@ -91,8 +91,8 @@ describe Albacore::NugetModel::Package, "from XML" do
91
91
  </dependencies>
92
92
  </metadata>
93
93
  <files>
94
- <file src="Full/bin/Debug/*.dll" target="lib/net40"/>
95
- <file src="Full/bin/Debug/*.pdb" target="lib/net40"/>
94
+ <file src="Full/bin/Debug/*.dll" target="lib/net45"/>
95
+ <file src="Full/bin/Debug/*.pdb" target="lib/net45"/>
96
96
  <file src="Silverlight/bin/Debug/*.dll" target="lib/sl40"/>
97
97
  <file src="Silverlight/bin/Debug/*.pdb" target="lib/sl40"/>
98
98
  <file src="**/*.cs" target="src"/>
@@ -192,8 +192,8 @@ describe "when reading xml from a fsproj file into Project/Metadata" do
192
192
  end
193
193
 
194
194
  has_file 'Library1.fs', 'src/Library1.fs'
195
- has_file 'bin/Debug/Project.dll', 'lib/net40'
196
- has_file 'bin/Debug/Project.pdb', 'lib/net40'
195
+ has_file 'bin/Debug/Project.dll', 'lib/net45'
196
+ has_file 'bin/Debug/Project.pdb', 'lib/net45'
197
197
  end
198
198
  end
199
199
 
@@ -290,8 +290,8 @@ describe "creating nuget (not symbols) from dependent proj file" do
290
290
  has_dep 'Newtonsoft.Json', '5.0.6'
291
291
 
292
292
  # actual nuspec contents
293
- has_file 'bin/Debug/Sample.Commands.dll', 'lib/net40'
294
- has_file 'bin/Debug/Sample.Commands.xml', 'lib/net40'
293
+ has_file 'bin/Debug/Sample.Commands.dll', 'lib/net45'
294
+ has_file 'bin/Debug/Sample.Commands.xml', 'lib/net45'
295
295
 
296
296
  describe 'when dotnet_version is set' do
297
297
  subject do
@@ -331,8 +331,8 @@ describe "creating nuget on dependent proj file" do
331
331
  has_dep 'Magnum', '2.1.0'
332
332
  has_dep 'MassTransit', '2.8.0'
333
333
  has_dep 'Newtonsoft.Json', '5.0.6'
334
- has_file 'bin/Debug/Sample.Commands.dll', 'lib/net40'
335
- has_file 'bin/Debug/Sample.Commands.xml', 'lib/net40'
334
+ has_file 'bin/Debug/Sample.Commands.dll', 'lib/net45'
335
+ has_file 'bin/Debug/Sample.Commands.xml', 'lib/net45'
336
336
  has_not_file 'Library.fs'
337
337
  end
338
338
 
@@ -349,8 +349,8 @@ describe "creating nuget on dependent proj file" do
349
349
  has_dep 'Magnum', '2.1.0'
350
350
  has_dep 'MassTransit', '2.8.0'
351
351
  has_dep 'Newtonsoft.Json', '5.0.6'
352
- has_file 'bin/Debug/Sample.Commands.dll', 'lib/net40'
353
- has_file 'bin/Debug/Sample.Commands.xml', 'lib/net40'
352
+ has_file 'bin/Debug/Sample.Commands.dll', 'lib/net45'
353
+ has_file 'bin/Debug/Sample.Commands.xml', 'lib/net45'
354
354
  has_not_file 'Library.fs'
355
355
 
356
356
  end
@@ -366,8 +366,8 @@ describe "creating nuget on dependent proj file" do
366
366
  has_not_dep 'Magnum'
367
367
  has_not_dep 'MassTransit'
368
368
  has_not_dep 'Newtonsoft.Json'
369
- has_file 'bin/Debug/Sample.Commands.dll', 'lib/net40'
370
- has_file 'bin/Debug/Sample.Commands.xml', 'lib/net40'
369
+ has_file 'bin/Debug/Sample.Commands.dll', 'lib/net45'
370
+ has_file 'bin/Debug/Sample.Commands.xml', 'lib/net45'
371
371
  has_not_file 'Library.fs'
372
372
  end
373
373
 
@@ -381,8 +381,8 @@ describe "creating nuget on dependent proj file" do
381
381
  has_dep 'Magnum', '2.1.0'
382
382
  has_dep 'MassTransit', '2.8.0'
383
383
  has_dep 'Newtonsoft.Json', '5.0.6'
384
- has_file 'bin/Debug/Sample.Commands.dll', 'lib/net40'
385
- has_file 'bin/Debug/Sample.Commands.xml', 'lib/net40'
384
+ has_file 'bin/Debug/Sample.Commands.dll', 'lib/net45'
385
+ has_file 'bin/Debug/Sample.Commands.xml', 'lib/net45'
386
386
  has_not_file 'Library.fs'
387
387
  end
388
388
 
@@ -397,8 +397,8 @@ describe "creating nuget on dependent proj file" do
397
397
  has_dep 'MassTransit', '2.8.0'
398
398
  has_dep 'Newtonsoft.Json', '5.0.6'
399
399
  has_not_file 'bin/Debug/Sample.Commands.xml'
400
- has_file 'bin/Debug/Sample.Commands.dll', 'lib/net40'
401
- has_file 'bin/Debug/Sample.Commands.pdb', 'lib/net40'
400
+ has_file 'bin/Debug/Sample.Commands.dll', 'lib/net45'
401
+ has_file 'bin/Debug/Sample.Commands.pdb', 'lib/net45'
402
402
  has_file 'Library.fs', 'src/Library.fs'
403
403
  end
404
404
 
@@ -416,6 +416,6 @@ describe "creating nuget on dependent proj file" do
416
416
  has_not_file 'bin/Debug/Sample.Commands.dll'
417
417
  has_not_file 'bin/Debug/EmptyProject.dll'
418
418
  has_not_file 'bin/Debug/EmptyProject.xml'
419
- has_file 'bin/Release/EmptyProject.dll', 'lib/net40'
419
+ has_file 'bin/Release/EmptyProject.dll', 'lib/net45'
420
420
  end
421
421
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: albacore
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.4.3
4
+ version: 2.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Henrik Feldt
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-07-22 00:00:00.000000000 Z
12
+ date: 2015-07-29 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake