netcore-blueprint 0.0.57 → 0.0.59
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.
- package/bin/copy-module.js +6 -6
- package/package.json +1 -1
package/bin/copy-module.js
CHANGED
|
@@ -3,12 +3,6 @@
|
|
|
3
3
|
const fs = require('fs');
|
|
4
4
|
const path = require('path');
|
|
5
5
|
const { execSync } = require('child_process');
|
|
6
|
-
const hostApiProjectPath = path.join(
|
|
7
|
-
path.dirname(solutionFile),
|
|
8
|
-
'Host',
|
|
9
|
-
'HostAPI',
|
|
10
|
-
'HostAPI.csproj'
|
|
11
|
-
);
|
|
12
6
|
|
|
13
7
|
// =====================================================
|
|
14
8
|
// Param = Source Module Name (also base for new module)
|
|
@@ -59,6 +53,12 @@ console.log(` From: ${templateRoot}`);
|
|
|
59
53
|
console.log(` To: ${targetModuleRoot}`);
|
|
60
54
|
console.log(`🧩 Solution: ${solutionFile}`);
|
|
61
55
|
|
|
56
|
+
const hostApiProjectPath = path.join(
|
|
57
|
+
path.dirname(solutionFile),
|
|
58
|
+
'Host.API',
|
|
59
|
+
'Host.API.csproj'
|
|
60
|
+
);
|
|
61
|
+
|
|
62
62
|
// =====================================================
|
|
63
63
|
// 1. Create module root
|
|
64
64
|
// =====================================================
|