本文介绍了Service Fabric .net核心应用程序不是.net核心的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
每当您使用Visual Studio创建新的服务结构应用程序并指定使用.Net核心应用程序时,我们都在构建服务结构应用程序,并且遇到了一个问题.创建的api是.Net框架应用程序,而不是.Net核心.
We are in the process of building an service fabric application and have run into a bit of a issue, whenever you user Visual studio to create a new service fabric app and you specify to use a .Net core app, the app/api that is create is a .Net framework app and not .Net core.
<TargetFramework>net452</TargetFramework>
代替:
<TargetFramework>netcoreapp2.0</TargetFramework>
有人知道原因吗?还是这是预期的行为?
Does anyone know the reason for this, or is this intended behavior?
致谢
推荐答案
您需要使用预览工具来构建和运行.NET核心应用.
You need to use the preview tools to build and run .NET core apps.
- Visual Studio 2017预览(版本15.4.0预览4.0或更高版本)
- Service Fabric Tools 2.0预览版
更多信息此处.
这篇关于Service Fabric .net核心应用程序不是.net核心的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!