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.
@@ -136,7 +136,7 @@ if (fs.existsSync(defaultFile)) {
136
136
  const assistantTemplate = path.join(
137
137
  templateRoot,
138
138
  "Assistants",
139
- "__ASSISTANT_NAME__"
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`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "netcore-blueprint",
3
- "version": "0.0.95",
3
+ "version": "0.0.96",
4
4
  "description": "A custom project blueprint",
5
5
  "main": "create.js",
6
6
  "bin": {