netcore-blueprint 0.0.95 → 0.0.96
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/create-assistant.js +3 -2
- package/package.json +1 -1
package/bin/create-assistant.js
CHANGED
|
@@ -136,7 +136,7 @@ if (fs.existsSync(defaultFile)) {
|
|
|
136
136
|
const assistantTemplate = path.join(
|
|
137
137
|
templateRoot,
|
|
138
138
|
"Assistants",
|
|
139
|
-
|
|
139
|
+
assistantName
|
|
140
140
|
);
|
|
141
141
|
|
|
142
142
|
if (fs.existsSync(assistantTemplate)) {
|
|
@@ -177,7 +177,8 @@ execSync(`dotnet build "${solutionFile}"`, { stdio: 'inherit' });
|
|
|
177
177
|
addProjectReferencesToCsproj(hostApiProjectPath, [
|
|
178
178
|
`..\\..\\Modules\\${sourceModuleName}\\Engine\\${sourceModuleName}.API\\${sourceModuleName}.API.csproj`,
|
|
179
179
|
`..\\..\\Modules\\${sourceModuleName}\\Engine\\${sourceModuleName}.Core\\${sourceModuleName}.Core.csproj`,
|
|
180
|
-
`..\\..\\Modules\\${sourceModuleName}\\Engine\\${sourceModuleName}.Infrastructure\\${sourceModuleName}.Infrastructure.csproj
|
|
180
|
+
`..\\..\\Modules\\${sourceModuleName}\\Engine\\${sourceModuleName}.Infrastructure\\${sourceModuleName}.Infrastructure.csproj`,
|
|
181
|
+
`..\\..\\Modules\\${sourceModuleName}\\Assistants\\${assistantName}\\${assistantName}.csproj`
|
|
181
182
|
]);
|
|
182
183
|
|
|
183
184
|
console.log(`🎉 DONE`);
|