<bdo id='EBV8y'></bdo><ul id='EBV8y'></ul>
  • <legend id='EBV8y'><style id='EBV8y'><dir id='EBV8y'><q id='EBV8y'></q></dir></style></legend>

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

      1. <small id='EBV8y'></small><noframes id='EBV8y'>

        完整的 .NET Framework 上的 ASP.NET Core 2.1

        ASP.NET Core 2.1 on full .NET Framework(完整的 .NET Framework 上的 ASP.NET Core 2.1)

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

              1. <tfoot id='naFqU'></tfoot>
              2. <small id='naFqU'></small><noframes id='naFqU'>

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

                  本文介绍了完整的 .NET Framework 上的 ASP.NET Core 2.1的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  是否可以在使用 ASP.NET Core 2.1 的同时仍然在完整的 .NET Framework 4.7.1 上运行?

                  Is it possible to use ASP.NET Core 2.1 and still run on the full .NET Framework 4.7.1?

                  我目前在 .NET 4.7.1 上使用 ASP.NET Core 2.0,我还在 4.7.1 上使用 Azure Functions v1,并在 Functions 和 Web 项目之间共享类库.

                  I'm currently using ASP.NET Core 2.0 on .NET 4.7.1 and i'm also using Azure Functions v1 on 4.7.1 and share Class Librarys between the Functions- and the Web Projects.

                  考虑到 Azure Functions v2 的当前状态,升级到 Azure Functions v2 以全面使用 .NET Core 似乎有点太冒险了,所以我现在更愿意继续使用 .NET Framework.

                  Upgrading to Azure Functions v2 to go all-in on .NET Core seems a bit too risky given the current state of Azure Functions v2 so i would prefer staying on .NET Framework for now.

                  推荐答案

                  是的.

                  元包 Microsoft.AspNetCore.AppMicrosoft.AspNetCore.All 需要 netcoreapp,但它们只是其他包的集合安装.

                  The metapackages Microsoft.AspNetCore.App and Microsoft.AspNetCore.All require netcoreapp, but the they are just a collection of other packages to install.

                  如果您在元包中安装单个包,它会正常工作,就像您目前使用 2.0 一样

                  If you install the individual packages in the metapackage, it'll work fine, just like you currently have with 2.0

                  您的 .csproj 文件最终将与此类似...

                  Your .csproj file will end up looking similar to this...

                  <Project Sdk="Microsoft.NET.Sdk.Web">
                    <PropertyGroup>
                      <TargetFramework>net471</TargetFramework>
                    </PropertyGroup>
                    <ItemGroup>
                      <Folder Include="wwwroot" />
                    </ItemGroup>
                    <ItemGroup>
                      <PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="2.1.1" />
                      <PackageReference Include="Microsoft.AspNetCore" Version="2.1.1" />
                      <PackageReference Include="Microsoft.AspNetCore.Antiforgery" Version="2.1.1" />
                      <PackageReference Include="Microsoft.AspNetCore.Authentication" Version="2.1.1" />
                      ...
                  

                  请注意一些软件包,例如.Microsoft.AspNetCore.Http.Connections 标记为 2.1.1,因此您需要确保匹配元包约束中的版本.

                  Just notice that some packages, eg. Microsoft.AspNetCore.Http.Connections are not tagged to 2.1.1, so you need to make sure you match the versions from the metapackage constraints.

                  这篇关于完整的 .NET Framework 上的 ASP.NET Core 2.1的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                  相关文档推荐

                  Adding and removing users from Active Directory groups in .NET(在 .NET 中的 Active Directory 组中添加和删除用户)
                  How do you determine if two HashSets are equal (by value, not by reference)?(您如何确定两个 HashSet 是否相等(按值,而不是按引用)?)
                  Is there a quot;Setquot; data structure in .Net?(有没有“套路?.Net 中的数据结构?)
                  Collection that allows only unique items in .NET?(仅允许 .NET 中唯一项目的集合?)
                  Adding headers in ASP.NET MVC 3(在 ASP.NET MVC 3 中添加标头)
                  Response.Redirect strips Header Referrer - Possible to Add it Back?(Response.Redirect 剥离 Header Referrer - 可以将其添加回来吗?)
                    <bdo id='zyONZ'></bdo><ul id='zyONZ'></ul>

                        <tfoot id='zyONZ'></tfoot>
                        1. <legend id='zyONZ'><style id='zyONZ'><dir id='zyONZ'><q id='zyONZ'></q></dir></style></legend>
                        2. <i id='zyONZ'><tr id='zyONZ'><dt id='zyONZ'><q id='zyONZ'><span id='zyONZ'><b id='zyONZ'><form id='zyONZ'><ins id='zyONZ'></ins><ul id='zyONZ'></ul><sub id='zyONZ'></sub></form><legend id='zyONZ'></legend><bdo id='zyONZ'><pre id='zyONZ'><center id='zyONZ'></center></pre></bdo></b><th id='zyONZ'></th></span></q></dt></tr></i><div id='zyONZ'><tfoot id='zyONZ'></tfoot><dl id='zyONZ'><fieldset id='zyONZ'></fieldset></dl></div>

                              <tbody id='zyONZ'></tbody>

                          1. <small id='zyONZ'></small><noframes id='zyONZ'>