File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -409,8 +409,7 @@ const App = {
409409
410410 <div class="mt-12 text-gray-500 flex flex-col items-center">
411411 <p class="my-4 text-center">
412- Alternatively create & restore this new custom Web App with the
413- <a class="text-indigo-600" href="https://docs.servicestack.net/dotnet-new">x dotnet tool</a>:
412+ Alternatively create & restore this new custom Web App with:
414413 </p>
415414 <CopyLine :text="mixTool" />
416415 </div>
@@ -450,7 +449,7 @@ const App = {
450449 }
451450
452451 const mixTool = computed (() =>
453- ` x new web ${ name .value || ' MyApp' } && cd ${ name .value || ' MyApp' }${ mixTags .value .length > 0 ? ' && x mix -f ' + mixTags .value .join (' ' ) : ' ' } ` )
452+ ` npx create-net web ${ name .value || ' MyApp' } && cd ${ name .value || ' MyApp' }${ mixTags .value .length > 0 ? ' && npx add-in -f ' + mixTags .value .join (' ' ) : ' ' } ` )
454453
455454 watch ([name, mixModel], () => {
456455 const args = { Name: name .value || undefined , Mix: mixTags .value .length ? mixTags .value .join (' ,' ) : undefined }
You can’t perform that action at this time.
0 commit comments