简体   繁体   中英

How to find the highest version of a nuget package to ensure its dependencies contain a specific framework version?

I'm about to download WireMock.net , but I need to use this package in a project with version 4.5 framework, and the latest version of WireMock.net does not support net45, and I don't know which higher version supports net45? How to find it? Is there any command to look for? I can only click one by one to view it.

By the way, Is .net's mock server best practice WireMock.net?

The lowest .NET Full Framework which is supported by WireMock.Net is indeed 4.5.1 .

These frameworks are supported:

  • net451
  • net452
  • net46
  • net461
  • netstandard1.3
  • netstandard2.0
  • netstandard2.1
  • netcoreapp3.1
  • net5.0
  • net6.0

So you need to upgrade your test project to one of these versions, there is no need to upgrade your main project.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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