Развертывание ASP.NET

Ну, на самом деле вы можете использовать встроенный просмотр HTML из webview_flutter (ссылка https://github.com/flutter/flutter/issues/19030#issuecomment-437534853 )

    [ 114] Английская версия: "has $num"
  • Китайская версия: "有$num个"

Просто нужно быть осторожным с интерполяцией строк.

5
задан Joe Phillips 22 April 2009 в 14:14
поделиться

7 ответов

Consider using the Web Deployment Tool from Microsoft. It was specifically designed to help deploy web applications and updates to those web applications to production IIS 6 and 7 web servers and it does a better job of the task than MSI (Windows Installer), IMHO.

7
ответ дан 13 December 2019 в 05:42
поделиться

Basically you upload the files to the server, making sure that:

The destination folder is configured as an ASP.Net application folder The web.config file is not configured to work with debugging anymore The database is uploaded as well, and/or reachable by the application

(Anyways that's how I do it. Might exist a better solution, but it works.)

0
ответ дан 13 December 2019 в 05:42
поделиться

You can create an MSI (Microsoft Installer) file which will create the structure on another machine. I've covered this in a very similar question a few days ago.

Edit: See this link ASP.NET Application Deployment Question

1
ответ дан 13 December 2019 в 05:42
поделиться
3
ответ дан 13 December 2019 в 05:42
поделиться

You can use Web Deployment Projects. How to is explained here.

0
ответ дан 13 December 2019 в 05:42
поделиться

Xcopy

"Передача файлов в стиле Xcopy упрощает развертывание и обслуживание сайтов ASP.NET, поскольку вы не делаете записей реестра и не регистрируете никаких компонентов. Приложения Microsoft .NET самоописание, как правило, без зависимостей. С версионным сборкой вы можете даже скопировать новую копию DLL, которую приложение использует, не останавливая веб-сервер. "

Приведенный выше вариант создания MSI также хорош, если у вас есть передача операций для развертывания на нескольких машинах.

1
ответ дан 13 December 2019 в 05:42
поделиться
Другие вопросы по тегам:

Похожие вопросы: