Skip to content

Commit

Permalink
update to std-uritemplate 0.0.40
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaTP committed Sep 7, 2023
1 parent aadf4c6 commit c654083
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Microsoft.Kiota.Abstractions.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
</PackageReference>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="[6.0,8.0)" />
<PackageReference Include="Std.UriTemplate" Version="0.0.38" />
<PackageReference Include="Std.UriTemplate" Version="0.0.40" />
</ItemGroup>

<PropertyGroup Condition="'$(TF_BUILD)' == 'true'">
Expand Down
3 changes: 1 addition & 2 deletions src/RequestInformation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
using System.Diagnostics;
using System.IO;
using System.Linq;
using stduritemplate;
using Microsoft.Kiota.Abstractions.Extensions;
using Microsoft.Kiota.Abstractions.Serialization;

Expand Down Expand Up @@ -63,7 +62,7 @@ public Uri URI
}
}

return new Uri(StdUriTemplate.Expand(UrlTemplate, substitutions));
return new Uri(Std.UriTemplate.Expand(UrlTemplate, substitutions));
}
}
}
Expand Down

0 comments on commit c654083

Please sign in to comment.