Skip to content

Commit

Permalink
- upgrades open.net
Browse files Browse the repository at this point in the history
Signed-off-by: Vincent Biret <vibiret@microsoft.com>
  • Loading branch information
baywet committed Feb 21, 2023
1 parent 5e98fca commit f8a3117
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Kiota.Builder/Kiota.Builder.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
<PackageReference Include="Microsoft.Kiota.Http.HttpClientLibrary" Version="1.0.0-rc.6" />
<PackageReference Include="Microsoft.Kiota.Serialization.Json" Version="1.0.0-rc.3" />
<PackageReference Include="Microsoft.Kiota.Serialization.Text" Version="1.0.0-rc.3" />
<PackageReference Include="Microsoft.OpenApi" Version="1.6.1" />
<PackageReference Include="Microsoft.OpenApi.Readers" Version="1.6.1" />
<PackageReference Include="Microsoft.OpenApi" Version="1.6.2" />
<PackageReference Include="Microsoft.OpenApi.Readers" Version="1.6.2" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
<PackageReference Include="YamlDotNet" Version="13.0.1" />
<ProjectReference Include="..\Kiota.Generated\KiotaGenerated.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
Expand Down
2 changes: 1 addition & 1 deletion src/Kiota.Builder/KiotaBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ ex is SecurityException ||
// couldn't parse the URL, it's probably a local file
}
var reader = new OpenApiStreamReader(settings);
var readResult = await reader.ReadAsync(input); //TODO pass the cancellation token when the library patch is out
var readResult = await reader.ReadAsync(input, cancellationToken);
stopwatch.Stop();
if (generating)
foreach (var warning in readResult.OpenApiDiagnostic.Warnings)
Expand Down

0 comments on commit f8a3117

Please sign in to comment.