bozo-scripts 0.16.3 → 0.17.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/lib/bozo/compilers/msbuild.rb +9 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5034530b59f4be050e3aef0c1d49b86f829bf347
|
4
|
+
data.tar.gz: 63599779b972a28af3509c15b241f996b046c067
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a8f9594378e20e52c6fc27f5e8e12b55766aba9531482029b3660e7819e5b85401e52e1ce77b33f7efc42bac73b94627529cfc257c0bf1ce4844643b6b6b6eb2
|
7
|
+
data.tar.gz: 196ea803db2ddb9eaa76b8b4db0ecc8e21723c26556dbea83267baa445bb92630db7ea4254ad67a768960d41b635130a509e6e619c39eb1ad7dfb4f8e2acc46d
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.
|
1
|
+
0.17.0
|
@@ -237,6 +237,15 @@ module Bozo::Compilers
|
|
237
237
|
config[:properties][:solutiondir] = windowsize_path(File.expand_path('.') + '//')
|
238
238
|
end
|
239
239
|
|
240
|
+
# We have dots in the part of the location for target framework.
|
241
|
+
# We can't have them for NuGet packages. We're doing this change
|
242
|
+
# only for class libraries since changing for other projects
|
243
|
+
# would break other stuff for them (like scheduled tasks)
|
244
|
+
def location
|
245
|
+
fx_version = framework_version.tr(".", "")
|
246
|
+
File.expand_path(File.join(temp_project_path, fx_version))
|
247
|
+
end
|
248
|
+
|
240
249
|
end
|
241
250
|
|
242
251
|
class WebProject2010 < Project
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bozo-scripts
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.17.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Garry Shutler
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2017-03-
|
12
|
+
date: 2017-03-30 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: nokogiri
|
@@ -144,7 +144,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
144
144
|
version: '0'
|
145
145
|
requirements: []
|
146
146
|
rubyforge_project: bozo-scripts
|
147
|
-
rubygems_version: 2.
|
147
|
+
rubygems_version: 2.6.10
|
148
148
|
signing_key:
|
149
149
|
specification_version: 4
|
150
150
|
summary: Zopa build system scripts
|