raykit 0.0.486 → 0.0.488
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/raykit/dotnet.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 419c8c95e7743572984410147be5c27a51e5efbab648c36c15039f55c71e3680
|
4
|
+
data.tar.gz: 38c27712233ceea33999798d2a5de54d7f0278d2514104666995f0324e76e5dd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 51e0eb145cd8bbfb84b7b0f0931efebf745e862b38a38e5dc2dc06fdc38e69ed231040083ed15c5a861d766f101e66e54809073e7b5241bf69010a81a640fd5d
|
7
|
+
data.tar.gz: 938c0e423b54c7d0195392aa1f7bf314a55d5dad1483905962fb94aaccfc0c6c67eae06711e242e541ac92eadc7c223ef4d773699ac96af1d427b416209663c1
|
data/lib/raykit/dotnet.rb
CHANGED
@@ -164,7 +164,7 @@ module Raykit
|
|
164
164
|
# create a solution of the specified name and add all projects in the current directory
|
165
165
|
def self.create_solution(name)
|
166
166
|
PROJECT.run("dotnet new sln --name #{name}")
|
167
|
-
Dir.glob("
|
167
|
+
Dir.glob("**/*.csproj").each do |project|
|
168
168
|
PROJECT.run("dotnet sln #{name}.sln add #{project}")
|
169
169
|
end
|
170
170
|
end
|