JSON.NET 如何参考?

发布于 2025-01-07 13:47:11 字数 160 浏览 0 评论 0原文

我刚刚安装了 Json.Net 包,现在我想知道如何将其导入到我的项目中?我首先尝试“使用 Newtonsoft.Json;”但这还没有实现。我尝试通过首先添加对我的项目的引用来查找它,但我也无法在列表中找到它?我似乎也找不到任何其他人有这个问题或任何指示做一些快速的谷歌搜索。请告诉我这有多容易做到...

I just installed the Json.Net package and now I am wondering how I can import this to my project? I first tried "using Newtonsoft.Json;" but that's not coming up. I tried looking for it by adding a reference to my project first but I can't find it the list either? I also can't seem to find anyone else with this problem or any directions doing a few quick Google searches. Please tell me how easy this is to do...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

孤独难免 2025-01-14 13:47:11

右键单击您的项目并选择“管理 nuget 包”。将json放入搜索中,在列表中找到它并点击“安装”

right click on your project and select "manage nuget package". put json into the search, find it in the list and click "install"

给妤﹃绝世温柔 2025-01-14 13:47:11

如果您手动执行此操作,请右键单击项目解决方案树中的“Reference”文件夹。选择“添加参考”-> “浏览”选项卡,在您的计算机上找到 Newtonsoft.Json.dll(您必须先从互联网下载)并将其添加为您的项目的引用。

如果您使用 NuGet,请右键单击项目解决方案树中的“Reference”文件夹,然后选择“管理 NuGet 包”,选择“在线”选项卡,搜索 Json.Net 并单击“安装”。

If you are doing this manually, right click on the "Reference" folder in your project's solution tree. Choose "Add Reference" -> "Browse" tab, locate Newtonsoft.Json.dll on your computer(You have to download this from the internet first) and add it as a reference to your project.

If you are using NuGet, right click on the "Reference" folder in your project's solution tree and choose "Manage NuGet Packages", pick the "Online" tab, search for Json.Net and click "install".

╭⌒浅淡时光〆 2025-01-14 13:47:11

在解决方案资源管理器中右键单击您的项目并选择“管理 nuget 包”,然后单击导航栏中的“在线”,在搜索栏中输入 newtonsoft,在列表中找到它并单击“安装”

在此处输入图像描述

Right click on your project in solution explorer and select "manage nuget packages", then click Online in the navigation bar, type newtonsoft into the search bar, find it in the list and click "install"

enter image description here

叹梦 2025-01-14 13:47:11

检查 Json.net 是否已安装在您的项目中。

如果已经安装,请从“packages.config”文件中删除“package”条目。现在转到 NuGet“包管理器控制台”并使用以下命令安装新包:

PM> Install-Package Newtonsoft.Json {Your Project Name} 6.0.3 nuget.org

如果未安装,请转到 NuGet 并搜索 Json.Net,然后选择项目并单击安装。

Check to see if the Json.net is already install in your project.

If it is already installed go and remove the "package" entry from "packages.config" file. Now go to NuGet "Package Manager Console" and install the new package using the following command:

PM> Install-Package Newtonsoft.Json {Your Project Name} 6.0.3 nuget.org

If it is not installed, go to NuGet and search for JSon.Net and select the project and click install.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文