Skip to content

Commit d3cc123

Browse files
authored
Merge pull request #134521 from codemillmatt/send-req-entity-search-qs-rvw
reviewing for freshness
2 parents 55aa309 + 9b2aea3 commit d3cc123

File tree

1 file changed

+9
-10
lines changed
  • articles/cognitive-services/Bing-Entities-Search/quickstarts

1 file changed

+9
-10
lines changed

articles/cognitive-services/Bing-Entities-Search/quickstarts/csharp.md

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ manager: nitinme
99
ms.service: cognitive-services
1010
ms.subservice: bing-entity-search
1111
ms.topic: quickstart
12-
ms.date: 05/08/2020
12+
ms.date: 10/19/2020
1313
ms.author: aahi
1414
ms.custom: devx-track-csharp
1515
---
@@ -24,21 +24,20 @@ Although this application is written in C#, the API is a RESTful Web service com
2424
## Prerequisites
2525

2626
- Any edition of [Visual Studio 2017 or later](https://www.visualstudio.com/downloads/).
27-
28-
- The [Json.NET](https://www.newtonsoft.com/json) framework, available as a NuGet package. To install the NuGet package in Visual Studio:
29-
30-
1. Right-click your project in **Solution Explorer**.
31-
2. Select **Manage NuGet Packages**.
32-
3. Search for and select *Newtonsoft.Json*, and then install the package.
33-
34-
- If you're using Linux/MacOS, this application can be run by using [Mono](https://www.mono-project.com/).
27+
- Or if you're using Linux or MacOS, you can follow this quickstart using [Visual Studio Code](https://code.visualstudio.com/) and [.NET Core](/dotnet/core/install/macos)
28+
- [Free Azure account](https://azure.microsoft.com/free/dotnet)
3529

3630

3731
[!INCLUDE [cognitive-services-bing-news-search-signup-requirements](../../../../includes/cognitive-services-bing-entity-search-signup-requirements.md)]
3832

3933
## Create and initialize a project
4034

41-
1. Create a new C# console solution in Visual Studio. Then, add the following namespaces into the main code file:
35+
1. Create a new C# console solution in Visual Studio.
36+
1. Add the [Newtonsoft.Json](https://www.nuget.org/packages/Newtonsoft.Json/) NuGet package.
37+
1. Right-click your project in **Solution Explorer**.
38+
2. Select **Manage NuGet Packages**.
39+
3. Search for and select *Newtonsoft.Json*, and then install the package.
40+
1. Then, add the following namespaces into the main code file:
4241

4342
```csharp
4443
using Newtonsoft.Json;

0 commit comments

Comments
 (0)