<small id='zbOcm'></small><noframes id='zbOcm'>

    1. <legend id='zbOcm'><style id='zbOcm'><dir id='zbOcm'><q id='zbOcm'></q></dir></style></legend>
      • <bdo id='zbOcm'></bdo><ul id='zbOcm'></ul>
    2. <tfoot id='zbOcm'></tfoot>

        <i id='zbOcm'><tr id='zbOcm'><dt id='zbOcm'><q id='zbOcm'><span id='zbOcm'><b id='zbOcm'><form id='zbOcm'><ins id='zbOcm'></ins><ul id='zbOcm'></ul><sub id='zbOcm'></sub></form><legend id='zbOcm'></legend><bdo id='zbOcm'><pre id='zbOcm'><center id='zbOcm'></center></pre></bdo></b><th id='zbOcm'></th></span></q></dt></tr></i><div id='zbOcm'><tfoot id='zbOcm'></tfoot><dl id='zbOcm'><fieldset id='zbOcm'></fieldset></dl></div>

        该项目使用 Microsoft.NETCore.App 版本 2.1.0 恢复,但使用当前设置,将使用版本 2.1.0-

        The project was restored using Microsoft.NETCore.App version 2.1.0, but with current settings, version 2.1.0-rtm-26515-03 would be used instead(该项目使用 Microsoft.NETCore.App 版本 2.1.0 恢复,但使用当前设置,将使用版本 2.1.0-rtm-26515-03)

        1. <legend id='M5EOy'><style id='M5EOy'><dir id='M5EOy'><q id='M5EOy'></q></dir></style></legend>

          <tfoot id='M5EOy'></tfoot>

            <small id='M5EOy'></small><noframes id='M5EOy'>

                  <bdo id='M5EOy'></bdo><ul id='M5EOy'></ul>
                  <i id='M5EOy'><tr id='M5EOy'><dt id='M5EOy'><q id='M5EOy'><span id='M5EOy'><b id='M5EOy'><form id='M5EOy'><ins id='M5EOy'></ins><ul id='M5EOy'></ul><sub id='M5EOy'></sub></form><legend id='M5EOy'></legend><bdo id='M5EOy'><pre id='M5EOy'><center id='M5EOy'></center></pre></bdo></b><th id='M5EOy'></th></span></q></dt></tr></i><div id='M5EOy'><tfoot id='M5EOy'></tfoot><dl id='M5EOy'><fieldset id='M5EOy'></fieldset></dl></div>
                    <tbody id='M5EOy'></tbody>
                  本文介绍了该项目使用 Microsoft.NETCore.App 版本 2.1.0 恢复,但使用当前设置,将使用版本 2.1.0-rtm-26515-03的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  限时送ChatGPT账号..

                  目前我有一个用 c# 制作的微服务,带有 web api 和 net core 2.0

                  at the moment I have a microservice made in c # with web api and net core 2.0

                  在 nutget 包中,我已经找到了 2.1 版的 net core,我决定安装它,以更新我的应用程序.我改变了目标如下图

                  in the nutget packages I have already found a version 2.1 of net core and I have decided to install it, in order to update my app. I changed the target as shown below

                  但是当我尝试编译它时会产生这个错误

                  But when I try to compile it generates this bug

                  项目是使用 Microsoft.NETCore.App 版本 2.1.0 恢复的,但在当前设置下,将使用版本 2.1.0-rtm-26515-03.要解决此问题,请确保将相同的设置用于还原和后续操作(例如构建或发布).如果在构建或发布期间而不是在还原期间设置了 RuntimeIdentifier 属性,通常会出现此问题.

                  The project was restored using Microsoft.NETCore.App version 2.1.0, but with current settings, version 2.1.0-rtm-26515-03 would be used instead. To resolve this issue, make sure the same settings are used for restore and for subsequent operations such as build or publish. Typically this issue can occur if the RuntimeIdentifier property is set during build or publish but not during restore.

                  我的依赖关系仍然如此

                  推荐答案

                  使用 Microsoft.NETCore.App 版本 2.1.0 恢复项目,但在当前设置下,将使用版本 2.1.0-rtm-26515-03

                  The project was restored using Microsoft.NETCore.App version 2.1.0, but with current settings, version 2.1.0-rtm-26515-03 would be used instead

                  目前这是一个已知问题.要解决此问题,您可以尝试以下解决方法:

                  This is a known issue at this moment. To resolve this issue, you can try following workarounds:

                  • .csproj文件中添加TargetLatestRuntimePatch属性:

                  <PropertyGroup>
                    <TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
                  </PropertyGroup>
                  

                  或者

                  • .csproj中设置RuntimeFrameworkVersionRuntimeIdentifier文件:

                   <PropertyGroup>
                     <RuntimeFrameworkVersion>2.1.1</RuntimeFrameworkVersion>
                     <PlatformTarget>AnyCPU</PlatformTarget>
                     <RuntimeIdentifier>win-x64</RuntimeIdentifier>
                   </PropertyGroup>
                  

                  如果上述解决方法不适合您,请查看调查问题上的更多解决方法.

                  If above workaround not work for you, please check more workarounds on the investigation issue.

                  有关详细信息,请参阅自包含部署运行时前滚.

                  See Self-contained deployment runtime roll forward for more information.

                  这篇关于该项目使用 Microsoft.NETCore.App 版本 2.1.0 恢复,但使用当前设置,将使用版本 2.1.0-rtm-26515-03的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Force JsonConvert.SerializeXmlNode to serialize node value as an Integer or a Boolean(强制 JsonConvert.SerializeXmlNode 将节点值序列化为整数或布尔值)
                  Using JSON to Serialize/Deserialize TimeSpan(使用 JSON 序列化/反序列化 TimeSpan)
                  Could not determine JSON object type for type quot;Classquot;(无法确定类型“Class的 JSON 对象类型.)
                  How to deserialize a JSONP response (preferably with JsonTextReader and not a string)?(如何反序列化 JSONP 响应(最好使用 JsonTextReader 而不是字符串)?)
                  how to de-serialize JSON data in which Timestamp it-self contains fields?(如何反序列化时间戳本身包含字段的JSON数据?)
                  JSON.Net custom contract serialization and Collections(JSON.Net 自定义合约序列化和集合)
                      1. <i id='nA0Vv'><tr id='nA0Vv'><dt id='nA0Vv'><q id='nA0Vv'><span id='nA0Vv'><b id='nA0Vv'><form id='nA0Vv'><ins id='nA0Vv'></ins><ul id='nA0Vv'></ul><sub id='nA0Vv'></sub></form><legend id='nA0Vv'></legend><bdo id='nA0Vv'><pre id='nA0Vv'><center id='nA0Vv'></center></pre></bdo></b><th id='nA0Vv'></th></span></q></dt></tr></i><div id='nA0Vv'><tfoot id='nA0Vv'></tfoot><dl id='nA0Vv'><fieldset id='nA0Vv'></fieldset></dl></div>

                        <legend id='nA0Vv'><style id='nA0Vv'><dir id='nA0Vv'><q id='nA0Vv'></q></dir></style></legend>

                          <tbody id='nA0Vv'></tbody>

                        <small id='nA0Vv'></small><noframes id='nA0Vv'>

                          • <bdo id='nA0Vv'></bdo><ul id='nA0Vv'></ul>

                            <tfoot id='nA0Vv'></tfoot>