繁体   English   中英

Visual Studio 2017 ASP.Net发布自包含的点网核心应用程序

[英]Visual Studio 2017 ASP.Net Publish Self-Contained Dot Net Core App

我在Visual Studio 2017中有一个.Net Core ASP.Net应用程序。我正在尝试对该应用程序进行独立部署。

如果我从CLI运行以下命令,它将完全按照我想要的方式工作并生成.exe

dotnet publish -c release -r win7-x64

但是,如果我从Visual Studio 2017发布,它不会生成.exe,而是生成.dll。

如何在Visual Studio 2017中复制dotnet publish命令的-r win7-x64?

这是我的.pubxml的内容

<?xml version="1.0" encoding="utf-8"?>
<!--
This file is used by the publish/package process of your Web project. You can customize the behavior of this process
by editing this MSBuild file. In order to learn more about this please visit https://go.microsoft.com/fwlink/?LinkID=208121. 
-->
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup>
    <WebPublishMethod>FileSystem</WebPublishMethod>
    <PublishProvider>FileSystem</PublishProvider>
    <LastUsedBuildConfiguration>Release</LastUsedBuildConfiguration>
    <LastUsedPlatform>Any CPU</LastUsedPlatform>
    <SiteUrlToLaunchAfterPublish />
    <LaunchSiteAfterPublish>True</LaunchSiteAfterPublish>
    <ExcludeApp_Data>False</ExcludeApp_Data>
    <PublishFramework>netcoreapp1.1</PublishFramework>
    <ProjectGuid>74bc47dd-6787-420d-804f-3f3d689d5ae5</ProjectGuid>
    <publishUrl>C:\Deploy\JLM.MS.LeadGen.Dealer</publishUrl>
    <DeleteExistingFiles>True</DeleteExistingFiles>
    <RuntimeIdentifiers>win7-x64</RuntimeIdentifiers>
  </PropertyGroup>
</Project>

此体验已添加到Visual Studio 2017 15.3版的发布窗口中(可在此处下载)

如果右键单击项目->发布->单击“摘要”下的“设置...”链接->转到“发布”窗口的“设置”选项卡,您应该会看到“目标运行时”下拉列表,您可以在其中选择平台您希望您的应用继续运行。 是我在说的屏幕截图。

确保在项目文件中包含要在<RuntimeIdentifiers><RuntimeIdentifier>选择的运行时,因为下拉列表会查找这些属性以填充其值。

您需要添加

<OutputType>Exe</OutputType>

到您的.csproj

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM