Skip to content

Commit

Permalink
fix: invalid url when providing example (#24)
Browse files Browse the repository at this point in the history
* fix: invalid url when providing example

* wip
  • Loading branch information
brianhdk authored Nov 18, 2024
1 parent a1daae4 commit dc9c17e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Relewise.Client.Extensions/Builders.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ private static string ProvideExample(string sectionName)

var configuration = new Dictionary<string, JsonConfiguration>
{
{ sectionName, new JsonConfiguration { DatasetId = Guid.Empty, ApiKey = "<ApiKey>", Timeout = TimeSpan.FromSeconds(3), ServerUrl = new Uri("<ServerUrl>")} }
{ sectionName, new JsonConfiguration { DatasetId = Guid.Empty, ApiKey = "<ApiKey>", Timeout = TimeSpan.FromSeconds(3), ServerUrl = new Uri("https://ServerUrl")} }
};

return @$"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<PackageProjectUrl>https://github.com/Relewise/relewise-sdk-csharp-extensions</PackageProjectUrl>
<RepositoryUrl>https://github.com/Relewise/relewise-sdk-csharp-extensions</RepositoryUrl>
<PackageId>Relewise.Client.Extensions</PackageId>
<PackageVersion>1.6.0</PackageVersion>
<PackageVersion>1.6.1</PackageVersion>
<Authors>Relewise</Authors>
<Company>Relewise</Company>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand Down

0 comments on commit dc9c17e

Please sign in to comment.