Skip to content

Commit ee0d163

Browse files
committed
correct and clarify CPP QS
1 parent 1f81681 commit ee0d163

File tree

3 files changed

+5
-5
lines changed
  • articles/cognitive-services/Speech-Service/includes/quickstarts

3 files changed

+5
-5
lines changed

articles/cognitive-services/Speech-Service/includes/quickstarts/speech-to-text-basics/cpp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ The Speech SDK is available as a [NuGet package](https://www.nuget.org/packages/
3131

3232
Follow these steps to create a new console application and install the Speech SDK.
3333

34-
1. Create a new C++ console project in Visual Studio.
34+
1. Create a new C++ console project in Visual Studio Community 2022 named `SpeechRecognition`.
3535
1. Install the Speech SDK in your new project with the NuGet package manager.
3636
```powershell
3737
Install-Package Microsoft.CognitiveServices.Speech
3838
```
39-
1. Replace the contents of `main.cpp` with the following code:
39+
1. Replace the contents of `SpeechRecognition.cpp` with the following code:
4040
4141
```cpp
4242
#include <iostream>

articles/cognitive-services/Speech-Service/includes/quickstarts/speech-translation-basics/cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The Speech SDK is available as a [NuGet package](https://www.nuget.org/packages/
2525

2626
Follow these steps to create a new console application and install the Speech SDK.
2727

28-
1. Create a new C++ console project in Visual Studio named `SpeechTranslation`.
28+
1. Create a new C++ console project in Visual Studio Community 2022 named `SpeechTranslation`.
2929
1. Install the Speech SDK in your new project with the NuGet package manager.
3030
```powershell
3131
Install-Package Microsoft.CognitiveServices.Speech

articles/cognitive-services/Speech-Service/includes/quickstarts/text-to-speech-basics/cpp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ The Speech SDK is available as a [NuGet package](https://www.nuget.org/packages/
3131

3232
Follow these steps to create a new console application and install the Speech SDK.
3333

34-
1. Create a new C++ console project in Visual Studio.
34+
1. Create a new C++ console project in Visual Studio Community 2022 named `SpeechSynthesis`.
3535
1. Install the Speech SDK in your new project with the NuGet package manager.
3636
```powershell
3737
Install-Package Microsoft.CognitiveServices.Speech
3838
```
39-
1. Replace the contents of `main.cpp` with the following code:
39+
1. Replace the contents of `SpeechSynthesis.cpp` with the following code:
4040
4141
```cpp
4242
#include <iostream>

0 commit comments

Comments
 (0)