Skip to content

Commit aa40573

Browse files
authored
publish public samples changes for 1.38.0 release. (#2428)
1 parent ae677a8 commit aa40573

File tree

164 files changed

+3135
-281
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

164 files changed

+3135
-281
lines changed

ci/build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- task: ms.vss-governance-buildtask.governance-build-task-component-detection.ComponentGovernanceComponentDetection@0
3939
displayName: Component Detection
4040
condition: >
41-
and(eq(variables['System.CollectionId'], '19422243-19b9-4d85-9ca6-bc961861d287'),
41+
and(eq(variables['System.CollectionId'], '26f8e8b1-373f-4f65-96fc-d17a59b38306'),
4242
eq(variables['System.DefinitionId'], '5400'),
4343
eq(variables['Build.SourceBranch'], 'refs/heads/master'),
4444
or(eq(variables['Build.Reason'], 'Schedule'), eq(variables['Build.Reason'], 'Manual')))
@@ -72,7 +72,7 @@ jobs:
7272
dependsOn: Pre
7373
timeoutInMinutes: 60
7474
pool:
75-
name: SkymanWS2022Compliant
75+
name: CarbonWS2022Compliant
7676
steps:
7777
- bash: 'perl ci/patch-samples.pl "$(SpeechSdkVersion)" . && git diff'
7878
displayName: Patch samples

quickstart/cpp/linux/from-microphone/README.md

-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ See the [accompanying article](https://docs.microsoft.com/azure/cognitive-servic
1717
sudo apt-get install build-essential libssl-dev libasound2 wget
1818
```
1919

20-
* On **Ubuntu 22.04 LTS** it is also required to download and install the latest **libssl1.1** package e.g. from http://security.ubuntu.com/ubuntu/pool/main/o/openssl/.
21-
2220
* On RHEL or CentOS, install these packages to build and run this sample:
2321

2422
```sh

quickstart/cpp/linux/text-to-speech/README.md

-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ See the [accompanying article](https://docs.microsoft.com/azure/cognitive-servic
1717
sudo apt-get install build-essential libssl-dev libasound2 wget
1818
```
1919

20-
* On **Ubuntu 22.04 LTS** it is also required to download and install the latest **libssl1.1** package e.g. from http://security.ubuntu.com/ubuntu/pool/main/o/openssl/.
21-
2220
* On RHEL or CentOS, install these packages to build and run this sample:
2321

2422
```sh

quickstart/cpp/windows/from-file/helloworld/helloworld.vcxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -170,12 +170,12 @@
170170
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
171171
<ImportGroup Label="ExtensionTargets">
172172
<!-- N.B. the .targets extensions must be spelled out here -->
173-
<Import Project="..\packages\Microsoft.CognitiveServices.Speech.1.34.0\build\native\Microsoft.CognitiveServices.Speech.targets" Condition="Exists('..\packages\Microsoft.CognitiveServices.Speech.1.34.0\build\native\Microsoft.CognitiveServices.Speech.targets')" />
173+
<Import Project="..\packages\Microsoft.CognitiveServices.Speech.1.38.0\build\native\Microsoft.CognitiveServices.Speech.targets" Condition="Exists('..\packages\Microsoft.CognitiveServices.Speech.1.38.0\build\native\Microsoft.CognitiveServices.Speech.targets')" />
174174
</ImportGroup>
175175
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
176176
<PropertyGroup>
177177
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
178178
</PropertyGroup>
179-
<Error Condition="!Exists('..\packages\Microsoft.CognitiveServices.Speech.1.34.0\build\native\Microsoft.CognitiveServices.Speech.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.CognitiveServices.Speech.1.34.0\build\native\Microsoft.CognitiveServices.Speech.targets'))" />
179+
<Error Condition="!Exists('..\packages\Microsoft.CognitiveServices.Speech.1.38.0\build\native\Microsoft.CognitiveServices.Speech.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.CognitiveServices.Speech.1.38.0\build\native\Microsoft.CognitiveServices.Speech.targets'))" />
180180
</Target>
181181
</Project>
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Microsoft.CognitiveServices.Speech" version="1.34.0" targetFramework="native" />
3+
<package id="Microsoft.CognitiveServices.Speech" version="1.38.0" targetFramework="native" />
44
</packages>

quickstart/cpp/windows/from-microphone/helloworld/helloworld.vcxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -166,12 +166,12 @@
166166
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
167167
<ImportGroup Label="ExtensionTargets">
168168
<!-- N.B. the .targets extensions must be spelled out here -->
169-
<Import Project="..\packages\Microsoft.CognitiveServices.Speech.1.34.0\build\native\Microsoft.CognitiveServices.Speech.targets" Condition="Exists('..\packages\Microsoft.CognitiveServices.Speech.1.34.0\build\native\Microsoft.CognitiveServices.Speech.targets')" />
169+
<Import Project="..\packages\Microsoft.CognitiveServices.Speech.1.38.0\build\native\Microsoft.CognitiveServices.Speech.targets" Condition="Exists('..\packages\Microsoft.CognitiveServices.Speech.1.38.0\build\native\Microsoft.CognitiveServices.Speech.targets')" />
170170
</ImportGroup>
171171
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
172172
<PropertyGroup>
173173
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
174174
</PropertyGroup>
175-
<Error Condition="!Exists('..\packages\Microsoft.CognitiveServices.Speech.1.34.0\build\native\Microsoft.CognitiveServices.Speech.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.CognitiveServices.Speech.1.34.0\build\native\Microsoft.CognitiveServices.Speech.targets'))" />
175+
<Error Condition="!Exists('..\packages\Microsoft.CognitiveServices.Speech.1.38.0\build\native\Microsoft.CognitiveServices.Speech.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.CognitiveServices.Speech.1.38.0\build\native\Microsoft.CognitiveServices.Speech.targets'))" />
176176
</Target>
177177
</Project>
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Microsoft.CognitiveServices.Speech" version="1.34.0" targetFramework="native" />
3+
<package id="Microsoft.CognitiveServices.Speech" version="1.38.0" targetFramework="native" />
44
</packages>

quickstart/cpp/windows/intent-recognition/helloworld/helloworld.vcxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -166,12 +166,12 @@
166166
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
167167
<ImportGroup Label="ExtensionTargets">
168168
<!-- N.B. the .targets extensions must be spelled out here -->
169-
<Import Project="..\packages\Microsoft.CognitiveServices.Speech.1.34.0\build\native\Microsoft.CognitiveServices.Speech.targets" Condition="Exists('..\packages\Microsoft.CognitiveServices.Speech.1.34.0\build\native\Microsoft.CognitiveServices.Speech.targets')" />
169+
<Import Project="..\packages\Microsoft.CognitiveServices.Speech.1.38.0\build\native\Microsoft.CognitiveServices.Speech.targets" Condition="Exists('..\packages\Microsoft.CognitiveServices.Speech.1.38.0\build\native\Microsoft.CognitiveServices.Speech.targets')" />
170170
</ImportGroup>
171171
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
172172
<PropertyGroup>
173173
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
174174
</PropertyGroup>
175-
<Error Condition="!Exists('..\packages\Microsoft.CognitiveServices.Speech.1.34.0\build\native\Microsoft.CognitiveServices.Speech.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.CognitiveServices.Speech.1.34.0\build\native\Microsoft.CognitiveServices.Speech.targets'))" />
175+
<Error Condition="!Exists('..\packages\Microsoft.CognitiveServices.Speech.1.38.0\build\native\Microsoft.CognitiveServices.Speech.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.CognitiveServices.Speech.1.38.0\build\native\Microsoft.CognitiveServices.Speech.targets'))" />
176176
</Target>
177177
</Project>
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Microsoft.CognitiveServices.Speech" version="1.34.0" targetFramework="native" />
3+
<package id="Microsoft.CognitiveServices.Speech" version="1.38.0" targetFramework="native" />
44
</packages>

quickstart/cpp/windows/multi-device-conversation/helloworld/helloworld.vcxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -158,12 +158,12 @@
158158
</ItemGroup>
159159
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
160160
<ImportGroup Label="ExtensionTargets">
161-
<Import Project="..\packages\Microsoft.CognitiveServices.Speech.1.34.0\build\native\Microsoft.CognitiveServices.Speech.targets" Condition="Exists('..\packages\Microsoft.CognitiveServices.Speech.1.34.0\build\native\Microsoft.CognitiveServices.Speech.targets')" />
161+
<Import Project="..\packages\Microsoft.CognitiveServices.Speech.1.38.0\build\native\Microsoft.CognitiveServices.Speech.targets" Condition="Exists('..\packages\Microsoft.CognitiveServices.Speech.1.38.0\build\native\Microsoft.CognitiveServices.Speech.targets')" />
162162
</ImportGroup>
163163
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
164164
<PropertyGroup>
165165
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
166166
</PropertyGroup>
167-
<Error Condition="!Exists('..\packages\Microsoft.CognitiveServices.Speech.1.34.0\build\native\Microsoft.CognitiveServices.Speech.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.CognitiveServices.Speech.1.34.0\build\native\Microsoft.CognitiveServices.Speech.targets'))" />
167+
<Error Condition="!Exists('..\packages\Microsoft.CognitiveServices.Speech.1.38.0\build\native\Microsoft.CognitiveServices.Speech.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.CognitiveServices.Speech.1.38.0\build\native\Microsoft.CognitiveServices.Speech.targets'))" />
168168
</Target>
169169
</Project>
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Microsoft.CognitiveServices.Speech" version="1.34.0" targetFramework="native" />
3+
<package id="Microsoft.CognitiveServices.Speech" version="1.38.0" targetFramework="native" />
44
</packages>

quickstart/cpp/windows/speaker-recognition/helloworld/helloworld.vcxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -175,12 +175,12 @@
175175
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
176176
<ImportGroup Label="ExtensionTargets">
177177
<!-- N.B. the .targets extensions must be spelled out here -->
178-
<Import Project="..\packages\Microsoft.CognitiveServices.Speech.1.34.0\build\native\Microsoft.CognitiveServices.Speech.targets" Condition="Exists('..\packages\Microsoft.CognitiveServices.Speech.1.34.0\build\native\Microsoft.CognitiveServices.Speech.targets')" />
178+
<Import Project="..\packages\Microsoft.CognitiveServices.Speech.1.38.0\build\native\Microsoft.CognitiveServices.Speech.targets" Condition="Exists('..\packages\Microsoft.CognitiveServices.Speech.1.38.0\build\native\Microsoft.CognitiveServices.Speech.targets')" />
179179
</ImportGroup>
180180
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
181181
<PropertyGroup>
182182
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
183183
</PropertyGroup>
184-
<Error Condition="!Exists('..\packages\Microsoft.CognitiveServices.Speech.1.34.0\build\native\Microsoft.CognitiveServices.Speech.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.CognitiveServices.Speech.1.34.0\build\native\Microsoft.CognitiveServices.Speech.targets'))" />
184+
<Error Condition="!Exists('..\packages\Microsoft.CognitiveServices.Speech.1.38.0\build\native\Microsoft.CognitiveServices.Speech.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.CognitiveServices.Speech.1.38.0\build\native\Microsoft.CognitiveServices.Speech.targets'))" />
185185
</Target>
186186
</Project>
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Microsoft.CognitiveServices.Speech" version="1.34.0" targetFramework="native" />
3+
<package id="Microsoft.CognitiveServices.Speech" version="1.38.0" targetFramework="native" />
44
</packages>

quickstart/cpp/windows/text-to-speech/helloworld/helloworld.vcxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -166,12 +166,12 @@
166166
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
167167
<ImportGroup Label="ExtensionTargets">
168168
<!-- N.B. the .targets extensions must be spelled out here -->
169-
<Import Project="..\packages\Microsoft.CognitiveServices.Speech.1.34.0\build\native\Microsoft.CognitiveServices.Speech.targets" Condition="Exists('..\packages\Microsoft.CognitiveServices.Speech.1.34.0\build\native\Microsoft.CognitiveServices.Speech.targets')" />
169+
<Import Project="..\packages\Microsoft.CognitiveServices.Speech.1.38.0\build\native\Microsoft.CognitiveServices.Speech.targets" Condition="Exists('..\packages\Microsoft.CognitiveServices.Speech.1.38.0\build\native\Microsoft.CognitiveServices.Speech.targets')" />
170170
</ImportGroup>
171171
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
172172
<PropertyGroup>
173173
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
174174
</PropertyGroup>
175-
<Error Condition="!Exists('..\packages\Microsoft.CognitiveServices.Speech.1.34.0\build\native\Microsoft.CognitiveServices.Speech.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.CognitiveServices.Speech.1.34.0\build\native\Microsoft.CognitiveServices.Speech.targets'))" />
175+
<Error Condition="!Exists('..\packages\Microsoft.CognitiveServices.Speech.1.38.0\build\native\Microsoft.CognitiveServices.Speech.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.CognitiveServices.Speech.1.38.0\build\native\Microsoft.CognitiveServices.Speech.targets'))" />
176176
</Target>
177177
</Project>
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Microsoft.CognitiveServices.Speech" version="1.34.0" targetFramework="native" />
3+
<package id="Microsoft.CognitiveServices.Speech" version="1.38.0" targetFramework="native" />
44
</packages>

quickstart/cpp/windows/translate-speech-to-text/helloworld/helloworld.vcxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -167,12 +167,12 @@
167167
</ItemGroup>
168168
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
169169
<ImportGroup Label="ExtensionTargets">
170-
<Import Project="..\packages\Microsoft.CognitiveServices.Speech.1.34.0\build\native\Microsoft.CognitiveServices.Speech.targets" Condition="Exists('..\packages\Microsoft.CognitiveServices.Speech.1.34.0\build\native\Microsoft.CognitiveServices.Speech.targets')" />
170+
<Import Project="..\packages\Microsoft.CognitiveServices.Speech.1.38.0\build\native\Microsoft.CognitiveServices.Speech.targets" Condition="Exists('..\packages\Microsoft.CognitiveServices.Speech.1.38.0\build\native\Microsoft.CognitiveServices.Speech.targets')" />
171171
</ImportGroup>
172172
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
173173
<PropertyGroup>
174174
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
175175
</PropertyGroup>
176-
<Error Condition="!Exists('..\packages\Microsoft.CognitiveServices.Speech.1.34.0\build\native\Microsoft.CognitiveServices.Speech.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.CognitiveServices.Speech.1.34.0\build\native\Microsoft.CognitiveServices.Speech.targets'))" />
176+
<Error Condition="!Exists('..\packages\Microsoft.CognitiveServices.Speech.1.38.0\build\native\Microsoft.CognitiveServices.Speech.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.CognitiveServices.Speech.1.38.0\build\native\Microsoft.CognitiveServices.Speech.targets'))" />
177177
</Target>
178178
</Project>
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Microsoft.CognitiveServices.Speech" version="1.34.0" targetFramework="native" />
3+
<package id="Microsoft.CognitiveServices.Speech" version="1.38.0" targetFramework="native" />
44
</packages>

quickstart/csharp/dotnet/conversation-transcription/helloworld/helloworld.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
</ItemGroup>
103103
<ItemGroup>
104104
<PackageReference Include="Microsoft.CognitiveServices.Speech">
105-
<Version>1.34.0</Version>
105+
<Version>1.38.0</Version>
106106
</PackageReference>
107107
<PackageReference Include="Newtonsoft.Json">
108108
<Version>13.0.1</Version>

quickstart/csharp/dotnet/from-file/helloworld/helloworld.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
</ItemGroup>
9696
<ItemGroup>
9797
<PackageReference Include="Microsoft.CognitiveServices.Speech">
98-
<Version>1.34.0</Version>
98+
<Version>1.38.0</Version>
9999
</PackageReference>
100100
</ItemGroup>
101101
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Microsoft.CognitiveServices.Speech" version="1.34.0" targetFramework="net462" />
3+
<package id="Microsoft.CognitiveServices.Speech" version="1.38.0" targetFramework="net462" />
44
</packages>

quickstart/csharp/dotnet/from-microphone/helloworld/helloworld.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
</ItemGroup>
9696
<ItemGroup>
9797
<PackageReference Include="Microsoft.CognitiveServices.Speech">
98-
<Version>1.34.0</Version>
98+
<Version>1.38.0</Version>
9999
</PackageReference>
100100
</ItemGroup>
101101
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Microsoft.CognitiveServices.Speech" version="1.34.0" targetFramework="net462" />
3+
<package id="Microsoft.CognitiveServices.Speech" version="1.38.0" targetFramework="net462" />
44
</packages>

quickstart/csharp/dotnet/intent-recognition/helloworld/helloworld.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
</ItemGroup>
9898
<ItemGroup>
9999
<PackageReference Include="Microsoft.CognitiveServices.Speech">
100-
<Version>1.34.0</Version>
100+
<Version>1.38.0</Version>
101101
</PackageReference>
102102
</ItemGroup>
103103
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Microsoft.CognitiveServices.Speech" version="1.34.0" targetFramework="net462" />
3+
<package id="Microsoft.CognitiveServices.Speech" version="1.38.0" targetFramework="net462" />
44
</packages>

quickstart/csharp/dotnet/meeting-transcription/helloworld/helloworld.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
</ItemGroup>
111111
<ItemGroup>
112112
<PackageReference Include="Microsoft.CognitiveServices.Speech">
113-
<Version>1.34.0</Version>
113+
<Version>1.38.0</Version>
114114
</PackageReference>
115115
<PackageReference Include="Newtonsoft.Json">
116116
<Version>13.0.1</Version>

quickstart/csharp/dotnet/multi-device-conversation/helloworld/helloworld.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
</ItemGroup>
7575
<ItemGroup>
7676
<PackageReference Include="Microsoft.CognitiveServices.Speech">
77-
<Version>1.34.0</Version>
77+
<Version>1.38.0</Version>
7878
</PackageReference>
7979
</ItemGroup>
8080
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Microsoft.CognitiveServices.Speech" version="1.34.0" targetFramework="net472" />
3+
<package id="Microsoft.CognitiveServices.Speech" version="1.38.0" targetFramework="net472" />
44
</packages>

quickstart/csharp/dotnet/speaker-recognition/helloworld/helloworld.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
</ItemGroup>
106106
<ItemGroup>
107107
<PackageReference Include="Microsoft.CognitiveServices.Speech">
108-
<Version>1.34.0</Version>
108+
<Version>1.38.0</Version>
109109
</PackageReference>
110110
</ItemGroup>
111111
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Microsoft.CognitiveServices.Speech" version="1.34.0" targetFramework="net462" />
3+
<package id="Microsoft.CognitiveServices.Speech" version="1.38.0" targetFramework="net462" />
44
</packages>

quickstart/csharp/dotnet/text-to-speech/helloworld/helloworld.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
</ItemGroup>
9595
<ItemGroup>
9696
<PackageReference Include="Microsoft.CognitiveServices.Speech">
97-
<Version>1.34.0</Version>
97+
<Version>1.38.0</Version>
9898
</PackageReference>
9999
</ItemGroup>
100100
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Microsoft.CognitiveServices.Speech" version="1.34.0" targetFramework="net462" />
3+
<package id="Microsoft.CognitiveServices.Speech" version="1.38.0" targetFramework="net462" />
44
</packages>

0 commit comments

Comments
 (0)