c# – 如何在Windows机器上编译Linux的.NET Core应用程序
作者:互联网
我正在Windows 10计算机上开发.NET Core应用程序(使用Visual Studio 2015更新3 Microsoft .NET Core 1.0.1 VS 2015工具预览2),该应用程序应在Ubuntu 16计算机上发布.要做到这一点,我必须将我的源代码移动到最终机器并在那里编译,以使其运行.例如我无法在Windows上编译代码并在linux上运行它.问题:有没有办法在win机器上编译代码并在linux上运行它?
解决方法:
使用dotnet build命令,您可以指定–runtime标志
-r|–runtime < RUNTIME_IDENTIFIER >
Target runtime to build for. For a list of Runtime Identifiers (RIDs) you can use, see the 07001.
代表具体操作系统的RID通常遵循这种模式[os].[version] – [arch]
例如,为Ubuntu 16.04运行时使用构建项目及其依赖项:
dotnet build --runtime ubuntu.16.04-x64
标签:asp-net-core-webapi,linux,net-core,c-2 来源: https://codeday.me/bug/20191004/1852826.html