我用launchSettings.json创建了.net核心控制台应用程序:
{
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:5000/",
"sslPort": 0
}
},
"profiles": {
"Built-in ConsoleApp": {
"commandName": "IISExpress",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development",
"ASPNETCORE_URLS": "http://localhost:5000/"
}
},
"Standalone ConsoleApp": {
"commandName": "Project",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development",
"ASPNETCORE_URLS": "http://localhost:5000/"
}
}
}
}
在Visual Studio 2017中,我使用“Standalone ConsoleApp”配置文件和控制台应用程序打开.
将应用程序发布到其他计算机的正确方法是什么?
如何在发布应用后运行应用?
最佳答案 您可以使用
dotnet c:\path\MyPublishedFolder\MyPublishedProject.Dll
如果您需要可执行的.exe,您可以将net472或任何其他网络框架添加到您的csprof中
<TargetFrameworks>netcoreapp2.1;net472</TargetFrameworks>
或者您需要创建自包含的应用程序.加
<RuntimeIdentifiers>win10-x64</RuntimeIdentifiers>
或者只是使用
dotnet publish -c Release -r win10-x64