Skip to content

Commit

Permalink
Fix nuget package
Browse files Browse the repository at this point in the history
  • Loading branch information
olivierapivideo authored Jul 19, 2024
1 parent f07db4d commit d32b31b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Changelog
All changes to this project will be documented in this file.

## [1.5.0] - 2024-07-19
- fix nuget package (closes

## [1.4.0] - 2024-06-11
- .net 5.0 support

Expand Down
13 changes: 5 additions & 8 deletions src/ApiVideo.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,15 @@ The version of the OpenAPI document: 1
<OutputType>Library</OutputType>
<PackOnBuild>true</PackOnBuild>
<PackageId>ApiVideo</PackageId>
<PackageVersion>1.4.0</PackageVersion>
<PackageVersion>1.5.0</PackageVersion>
<Authors>api.video</Authors>
<Description>api.video csharp API client</Description>
<DevelopmentDependency>true</DevelopmentDependency>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/apivideo/api.video-csharp-client</PackageProjectUrl>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<AssemblyTitle>api.video API client</AssemblyTitle>
<Company>api.video</Company>
<Product>ApiVideoApiCLient</Product>
<Product>ApiVideoApiClient</Product>
<Copyright>No Copyright</Copyright>
<AssemblyVersion>1.0.0</AssemblyVersion>
<FileVersion>1.0.0</FileVersion>
Expand All @@ -42,12 +41,10 @@ The version of the OpenAPI document: 1
<PackageReference Include="JsonSubTypes" Version="1.8.0" />
<PackageReference Include="NuGet.Build.Tasks.Pack">
<Version>5.9.1</Version>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
</Project>

2 changes: 1 addition & 1 deletion src/Client/ApiClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public ApiClient(IRestClient client) {
private void Initialize(IRestClient client)
{
this.RestClient = client;
setName("AV-Origin-Client", "csharp", "1.4.0");
setName("AV-Origin-Client", "csharp", "1.5.0");
}

/// <summary>
Expand Down

0 comments on commit d32b31b

Please sign in to comment.