You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. Choose a directory to which the Speech SDK files should be extracted, and set the `SPEECHSDK_ROOT` environment variable to point to that directory. This variable makes it easy to refer to the directory in future commands. For example, if you want to use the directory `speechsdk` in your home directory, use a command like the following:
25
+
1. Choose a directory to which the Speech SDK files should be extracted, and set the `SPEECHSDK_ROOT` environment variable to point to that directory. This variable makes it easy to refer to the directory in future commands.
26
+
27
+
For example, if you want to use the directory `speechsdk` in your home directory, use a command like the following:
26
28
27
29
```sh
28
30
export SPEECHSDK_ROOT="$HOME/speechsdk"
29
31
```
30
32
31
-
1. Create the directory if it doesn't exist yet.
33
+
1. Create the directory if it doesn't exist yet:
32
34
33
35
```sh
34
36
mkdir -p "$SPEECHSDK_ROOT"
35
37
```
36
38
37
-
1. Download and extract the `.zip` archive containing the Speech SDK xcframework:
39
+
1. Download and extract the .zip archive that contains the Speech SDK XCFramework:
Copy file name to clipboardExpand all lines: articles/cognitive-services/Speech-Service/includes/quickstarts/platform/cpp-windows.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: 'Quickstart: Speech SDK for C++ (Windows) platform setup - Speech service'
3
3
titleSuffix: Azure Cognitive Services
4
-
description: Use this guide to set up your platform for C++ on Windows Desktop with the Speech service SDK.
4
+
description: Use this guide to set up your platform for C++ on Windows desktop operating systems by using the Speech SDK.
5
5
services: cognitive-services
6
6
author: markamos
7
7
manager: nitinme
@@ -13,16 +13,16 @@ ms.author: eur
13
13
ms.custom: ignite-fall-2021
14
14
---
15
15
16
-
This guide shows how to install the [Speech SDK](~/articles/cognitive-services/speech-service/speech-sdk.md) for C++ on Windows Desktop.
16
+
This guide shows how to install the [Speech SDK](~/articles/cognitive-services/speech-service/speech-sdk.md) for C++ on Windows desktop operating systems.
*On Windows, you need the [Microsoft Visual C++ Redistributable for Visual Studio 2019](https://support.microsoft.com/topic/the-latest-supported-visual-c-downloads-2647da03-1eea-4433-9aff-95f26a218cc0) for your platform. Installing this for the first time may require a restart.
25
-
*[Visual Studio 2019](https://visualstudio.microsoft.com/downloads/)
24
+
*[Microsoft Visual C++ Redistributable for Visual Studio 2019](https://support.microsoft.com/topic/the-latest-supported-visual-c-downloads-2647da03-1eea-4433-9aff-95f26a218cc0) for the Windows platform. Installing it for the first time might require a restart.
25
+
*[Visual Studio 2019](https://visualstudio.microsoft.com/downloads/).
26
26
27
27
## Create a Visual Studio project and install the Speech SDK
description: 'Use this guide to set up your platform for C# under .NET Framework for Windows with the Speech service SDK.'
4
+
description: 'Use this guide to set up your platform for C# under the .NET Framework for Windows with the Speech service SDK.'
5
5
services: cognitive-services
6
6
author: markamos
7
7
manager: nitinme
@@ -13,70 +13,70 @@ ms.author: eur
13
13
ms.custom: devx-track-dotnet, ignite-fall-2021
14
14
---
15
15
16
-
This guide shows how to install the [Speech SDK](~/articles/cognitive-services/speech-service/speech-sdk.md) for .NET Framework (Windows). If you just want the package name to get started on your own, run `Install-Package Microsoft.CognitiveServices.Speech` in the NuGet console.
16
+
This guide shows how to install the [Speech SDK](~/articles/cognitive-services/speech-service/speech-sdk.md) for the .NET Framework (Windows). If you just want the package name to get started on your own, run `Install-Package Microsoft.CognitiveServices.Speech` in the NuGet console.
*On Windows, you need the [Microsoft Visual C++ Redistributable for Visual Studio 2019](https://support.microsoft.com/topic/the-latest-supported-visual-c-downloads-2647da03-1eea-4433-9aff-95f26a218cc0) for your platform. Installing this for the first time may require a restart.
25
-
*[Visual Studio 2019](https://visualstudio.microsoft.com/downloads/)
24
+
*[Microsoft Visual C++ Redistributable for Visual Studio 2019](https://support.microsoft.com/topic/the-latest-supported-visual-c-downloads-2647da03-1eea-4433-9aff-95f26a218cc0) for the Windows platform. Installing it for the first time might require a restart.
25
+
*[Visual Studio 2019](https://visualstudio.microsoft.com/downloads/).
26
26
27
27
## Create a Visual Studio project and install the Speech SDK
28
28
29
-
You'll need to install the [Speech SDK NuGet package](https://aka.ms/csspeech/nuget) so you can reference it in your code. To do that, you may first need to create a **helloworld** project. If you already have a project with the **.NET desktop development** workload available, you can use that project and skip to [Use NuGet Package Manager to install the Speech SDK](#use-nuget-package-manager-to-install-the-speech-sdk).
29
+
You need to install the [Speech SDK NuGet package](https://aka.ms/csspeech/nuget) so you can reference it in your code. To do that, you might first need to create a **helloworld** project. If you already have a project with the **.NET desktop development** workload available, you can use that project and skip to [Use NuGet Package Manager to install the Speech SDK](#use-nuget-package-manager-to-install-the-speech-sdk).
30
30
31
-
### Create helloworld project
31
+
### Create a helloworld project
32
32
33
33
1. Open Visual Studio 2019.
34
34
35
-
1. In the Start window, select **Create a new project**.
35
+
1. In the **Start** window, select **Create a new project**.
36
36
37
37
1. In the **Create a new project** window, choose **Console App (.NET Framework)**, and then select **Next**.
38
38
39
-
1. In the **Configure your new project** window, enter *helloworld* in **Project name**, choose or create the directory path in **Location**, and then select **Create**.
39
+
1. In the **Configure your new project** window, enter **helloworld** in **Project name**, choose or create the directory path in **Location**, and then select **Create**.
40
40
41
-
1. From the Visual Studio menu bar, select **Tools** > **Get Tools and Features**, which opens Visual Studio Installer and displays the **Modifying** dialog box.
41
+
1. From the Visual Studio menu bar, select **Tools** > **Get Tools and Features**. This step opens Visual Studio Installer and displays the **Modifying** dialog.
42
42
43
-
1. Check whether the **.NET desktop development** workload is available. If the workload hasn't been installed, select the check box next to it, and then select **Modify** to start the installation. It may take a few minutes to download and install.
43
+
1. Check whether the **.NET desktop development** workload is available. If the workload hasn't been installed, select the check box next to it, and then select **Modify** to start the installation. It might take a few minutes to download and install.
44
44
45
-
If the check box next to **.NET desktop development** is already selected, select **Close** to exit the dialog box.
45
+
If the check box next to **.NET desktop development** is already selected, select **Close** to close the dialog.
1. In the upper-right corner, find the **Package Source** drop-down box, and make sure that **nuget.org** is selected.
56
56
57
-
1. In the upper-right corner, find the **Package Source** drop-down box, and make sure that **`nuget.org`** is selected.
57
+

58
58
59
59
1. In the upper-left corner, select **Browse**.
60
60
61
-
1. In the search box, type *Microsoft.CognitiveServices.Speech* and select **Enter**.
61
+
1. In the search box, type **Microsoft.CognitiveServices.Speech** and select **Enter**.
62
62
63
63
1. From the search results, select the **Microsoft.CognitiveServices.Speech** package, and then select **Install** to install the latest stable version.

66
66
67
67
1. Accept all agreements and licenses to start the installation.
68
68
69
69
After the package is installed, a confirmation appears in the **Package Manager Console** window.
70
70
71
71
### Choose target architecture
72
72
73
-
To build and run the console application, create a platform configuration matching your computer's architecture.
73
+
To build and run the console application, create a platform configuration that matches your computer's architecture.
74
74
75
-
1. From the menu bar, select **Build** > **Configuration Manager**. The **Configuration Manager** dialog box appears.
75
+
1. From the menu bar, select **Build** > **Configuration Manager**. The **Configuration Manager** dialog appears.
1. In the **Active solution platform** drop-down box, select **New**. The **New Solution Platform** dialog appears.
78
78
79
-
1. In the **Active solution platform** drop-down box, select **New**. The **New Solution Platform**dialogbox appears.
79
+

80
80
81
81
1. In the **Type or select the new platform** drop-down box:
82
82
- If you're running 64-bit Windows, select **x64**.
Copy file name to clipboardExpand all lines: articles/cognitive-services/Speech-Service/includes/quickstarts/platform/csharp-dotnetcore-windows.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,9 +24,9 @@ This guide shows how to install the [Speech SDK](~/articles/cognitive-services/s
24
24
25
25
This quickstart requires:
26
26
27
-
*On Windows, you need the [Microsoft Visual C++ Redistributable for Visual Studio 2019](https://support.microsoft.com/topic/the-latest-supported-visual-c-downloads-2647da03-1eea-4433-9aff-95f26a218cc0) for your platform. Installing this for the first time may require a restart.
*[Visual Studio 2017](https://visualstudio.microsoft.com/downloads/) or later
27
+
*[Microsoft Visual C++ Redistributable for Visual Studio 2019](https://support.microsoft.com/topic/the-latest-supported-visual-c-downloads-2647da03-1eea-4433-9aff-95f26a218cc0) for the Windows platform. Installing it for the first time might require a restart.
This guide shows how to install the [Speech SDK](~/articles/cognitive-services/speech-service/speech-sdk.md) for [Unity](https://unity3d.com/).
17
17
18
18
> [!NOTE]
19
-
> The Speech SDK for Unity supports Windows Desktop (x86 and x64) or Universal Windows Platform (x86, x64, ARM/ARM64), Android (x86, ARM32/64), iOS (x64 simulator and ARM64) and Mac (x64).
19
+
> The Speech SDK for Unity supports Windows Desktop (x86 and x64) or Universal Windows Platform (x86, x64, ARM/ARM64), Android (x86, ARM32/64), iOS (x64 simulator and ARM64), and Mac (x64).
-On Windows, you need the [Microsoft Visual C++ Redistributable for Visual Studio 2019](https://support.microsoft.com/topic/the-latest-supported-visual-c-downloads-2647da03-1eea-4433-9aff-95f26a218cc0) for your platform. Installing this for the first time may require a restart.
27
+
-[Microsoft Visual C++ Redistributable for Visual Studio 2019](https://support.microsoft.com/topic/the-latest-supported-visual-c-downloads-2647da03-1eea-4433-9aff-95f26a218cc0) for the Windows platform. Installing it for the first time might require a restart.
28
28
-[Unity 2018.3 or later](https://store.unity.com/) with [Unity 2019.1 adding support for UWP ARM64](https://blogs.unity3d.com/2019/04/16/introducing-unity-2019-1/#universal).
29
-
-[Visual Studio 2019](https://visualstudio.microsoft.com/downloads/). Version 15.9 or higher of Visual Studio 2017 is also acceptable.
30
-
- For Windows ARM64 support, install the [optional build tools for ARM64, and the Windows 10 SDK for ARM64](https://blogs.windows.com/buildingapps/2018/11/15/official-support-for-windows-10-on-arm-development/).
31
-
- On Android, you need an ARM-based Android device (API 23: Android 6.0 Marshmallow or higher) enabled for development with a working microphone.
32
-
- On iOS, you need an iOS device (ARM64) enabled for development with a working microphone.
33
-
- On macOS, you need Mac device (x64) and the latest LTS version of Unity 2019 (or higher) for integrated support for microphone access in Unity Player settings.
29
+
-[Visual Studio 2019](https://visualstudio.microsoft.com/downloads/). Version 15.9 or later of Visual Studio 2017 is also acceptable.
30
+
- For Windows ARM64 support, installation of the [optional build tools for ARM64 and the Windows 10 SDK for ARM64](https://blogs.windows.com/buildingapps/2018/11/15/official-support-for-windows-10-on-arm-development/).
31
+
- On Android, an ARM-based Android device (API 23: Android 6.0 Marshmallow or later) enabled for development with a working microphone.
32
+
- On iOS, an iOS device (ARM64) enabled for development with a working microphone.
33
+
- On macOS, a Mac device (x64) and the latest LTS version of Unity 2019 (or later) for integrated support for microphone access in Unity Player settings.
34
34
35
35
## Install the Speech SDK
36
36
37
37
To install the Speech SDK for Unity, follow these steps:
38
38
39
-
1. Download and open the [Speech SDK for Unity](https://aka.ms/csspeech/unitypackage), which is packaged as a Unity asset package (.unitypackage), and should already be associated with Unity. When the asset package is opened, the **Import Unity Package** dialog box appears. You may need to create and open an empty project for this step to work.
39
+
1. Download and open the [Speech SDK for Unity](https://aka.ms/csspeech/unitypackage). It's packaged as a Unity asset package (.unitypackage) and should already be associated with Unity. When the asset package is opened, the **Import Unity Package** dialog appears. You might need to create and open an empty project for this step to work.
40
40
41
-
[](~/articles/cognitive-services/speech-service/media/sdk/qs-csharp-unity-01-import.png#lightbox)
41
+
1. Ensure that all files are selected, and then select **Import**. After a few moments, the Unity asset package is imported into your project.
42
42
43
-
1. Ensure that all files are selected, and select **Import**. After a few moments, the Unity asset package is imported into your project.
43
+
[](~/articles/cognitive-services/speech-service/media/sdk/qs-csharp-unity-01-import.png#lightbox)
44
44
45
45
For more information about importing asset packages into Unity, see the [Unity documentation](https://docs.unity3d.com/Manual/AssetPackages.html).
0 commit comments