dotkit 0.0.23 → 0.0.24
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.
- checksums.yaml +4 -4
- data/lib/dotkit.rb +2 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b491cf4f60d81e2ee2073e19f71e9a480d6f5cd1c76d1a7671916b4236ecb8e6
|
4
|
+
data.tar.gz: 3ee79e3a34f3e5a684e58fa4bb42e7a5a28facabbf19fcccc09b1285938abb38
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 725fd8bfcdeab51cc57a7854becc65ea6b7e5b55c174c0bba9efb6c9b1e4cdfdfe3147bb0709e4baef8c14f22a2a5a61ec890179cc108f40ea9f962b41e08a0e
|
7
|
+
data.tar.gz: 798781c0c59a2a78d72719f49518fd4207c68418b4fb3ea974786442f9f0f813a5508ea1d456071e138973ff251ec16200966e4fb25b059c570c54cd33bd5018
|
data/lib/dotkit.rb
CHANGED
@@ -12,7 +12,8 @@ task :build do
|
|
12
12
|
if(text.include?('<GeneratePackageOnBuild>true</GeneratePackageOnBuild>'))
|
13
13
|
PROJECT.run("dotnet pack #{csproj} --configuration Release")
|
14
14
|
end
|
15
|
-
if(text.include?('<OutputType>Exe</OutputType>')
|
15
|
+
if(text.include?('<OutputType>Exe</OutputType>') ||
|
16
|
+
text.include?('<OutputType>WinExe</OutputType>'))
|
16
17
|
PROJECT.run("dotnet publish #{csproj} -c Release -f netcoreapp3.1 -r win-x64 /p:PublishSingleFile=true /p:UseAppHost=true")
|
17
18
|
end
|
18
19
|
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dotkit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.24
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lou Parslow
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-04-
|
11
|
+
date: 2020-04-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -108,7 +108,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
108
108
|
- !ruby/object:Gem::Version
|
109
109
|
version: '0'
|
110
110
|
requirements: []
|
111
|
-
rubygems_version: 3.
|
111
|
+
rubygems_version: 3.1.2
|
112
112
|
signing_key:
|
113
113
|
specification_version: 4
|
114
114
|
summary: ruby gem to support rake ci/cd tasks for dotnet
|