fastlane-plugin-msbuild 0.1.2 → 0.1.3
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d2af588c45a85e577082f5f7ad5f2ca4ed54d2d1
|
4
|
+
data.tar.gz: 005ca940f056c3f217f376d30a09ce071760a30d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0ce1789d2f6ab389f3defa81354e84d7f58881b312eae27d9d6608a2d4450a225f673495270a5307068ad979aae6d9301776a738b1e8ad6a6a901f066b9a1c43
|
7
|
+
data.tar.gz: 036b146726d6fdd65d133cb8d742f092a8dd75ac74e5dc42bebe2b270527e903f0e3df8d5eccb869653045db29b5601f34760f1935cd71d0452b9665859fc3d5
|
@@ -7,13 +7,13 @@ module Fastlane
|
|
7
7
|
solution = params[:solution]
|
8
8
|
|
9
9
|
msbuild = params[:msbuild_path] ? File.join(params[:msbuild_path], "msbuild") : "msbuild"
|
10
|
-
command = "#{msbuild} #{solution}"
|
10
|
+
command = "#{msbuild} \"#{solution}\""
|
11
11
|
params[:targets].each do |target|
|
12
|
-
command << " /t
|
12
|
+
command << " /t:\"#{target}\""
|
13
13
|
end
|
14
|
-
command << " /p:Configuration
|
15
|
-
command << " /p:Platform
|
16
|
-
command << " /p:AndroidSdkDirectory
|
14
|
+
command << " /p:Configuration=\"#{configuration}\""
|
15
|
+
command << " /p:Platform=\"#{platform}\"" if platform
|
16
|
+
command << " /p:AndroidSdkDirectory=\"#{params[:android_home]}\"" if params[:android_home]
|
17
17
|
params[:additional_arguments].each do |param|
|
18
18
|
command << " #{param}"
|
19
19
|
end
|