Skip to content

Commit 5fb3301

Browse files
committed
Update Start.cshtml
1 parent 79fc279 commit 5fb3301

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

MyApp/Pages/Start.cshtml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff 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 }

0 commit comments

Comments
 (0)