Skip to content

Commit

Permalink
Update .NET framework 4.6 -> 4.8 (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
Huib Piguillet authored Oct 8, 2021
1 parent 325250c commit d2a3e61
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Bynder/Sample/Bynder.Sample.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net5.0</TargetFramework>
<AssemblyVersion>2.0.0</AssemblyVersion>
<FileVersion>2.0.0</FileVersion>
<Company>Bynder</Company>
Expand Down
3 changes: 2 additions & 1 deletion Bynder/Sdk/Api/Converters/TagsOrderByConverter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ public bool CanConvert(Type typeToConvert)
/// <returns>converted string</returns>
public string Convert(object value)
{
switch (value) {
switch (value)
{
case TagsOrderBy.TagAscending:
return "tag asc";
case TagsOrderBy.TagDescending:
Expand Down
10 changes: 5 additions & 5 deletions Bynder/Sdk/Bynder.Sdk.csproj
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net46</TargetFrameworks>
<AssemblyVersion>2.2.4.0</AssemblyVersion>
<FileVersion>2.2.4.0</FileVersion>
<TargetFrameworks>netstandard2.1;net48</TargetFrameworks>
<AssemblyVersion>2.2.6.0</AssemblyVersion>
<FileVersion>2.2.6.0</FileVersion>
<Company>Bynder</Company>
<Product>Bynder.Sdk</Product>
<Copyright>Copyright © Bynder</Copyright>
<PackOnBuild>true</PackOnBuild>
<PackageVersion>2.2.5</PackageVersion>
<PackageVersion>2.2.6</PackageVersion>
<Authors>BynderDevops</Authors>
<Description>The main goal of this SDK is to speed up the integration of Bynder customers who use C# making it easier to connect to the Bynder API (http://docs.bynder.apiary.io/) and executing requests on it.</Description>
<PackageIconUrl>https://bynder.com/static/3.0/img/favicon-black.ico</PackageIconUrl>
Expand All @@ -16,7 +16,7 @@
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Owners>BynderDevops</Owners>
<PackageProjectUrl>https://github.com/Bynder/bynder-c-sharp-sdk</PackageProjectUrl>
<PackageReleaseNotes>Downgraded .NET standard from 2.1 back to 2.0, to ensure compatibility with .NET framework.</PackageReleaseNotes>
<PackageReleaseNotes>Added .NET framework as a separate target.</PackageReleaseNotes>
<Summary>The main goal of this SDK is to speed up the integration of Bynder customers who use C# making it easier to connect to the Bynder API (http://docs.bynder.apiary.io/) and executing requests on it.</Summary>
<PackageTags>Bynder API C# SDK</PackageTags>
<Title>Bynder.Sdk</Title>
Expand Down

0 comments on commit d2a3e61

Please sign in to comment.