File tree Expand file tree Collapse file tree 5 files changed +48
-4
lines changed Expand file tree Collapse file tree 5 files changed +48
-4
lines changed Original file line number Diff line number Diff line change
1
+
2
+ 1.1.0 / 2017-11-21
3
+ ==================
4
+
5
+ # The CloudinaryDotNet now supports .net core and standard libraries.
6
+
7
+ The library has been split to a shared project, a Core project and Standard (Foundation) project.
8
+ The standard library is fully backwards compatible with the previous version.
9
+
10
+ New functionality
11
+ -----------------
12
+
13
+ * Search API
14
+ * Implemented async methods and tests.
15
+ * Added ` access_mode ` to RawUploadParams.
16
+ * AppVeyor CI
17
+ * Added ` quality_override ` param and cover test
18
+
19
+ Other Changes
20
+ -------------
21
+
22
+ * Upgrade project structure to VS 2017 and prepare version 1.1.0-rc1
23
+ * Update Nuget.exe
24
+ * Remove nupkg from git
25
+ * Fix http timeout
26
+ * Rearrange tests to enable ` TestListResourcesByPublicIds `
27
+ * Implemented auto width params for transformation
28
+ * Fixed setter fo "All" parameter in delResParams class
29
+ * Gitignore fix
30
+ * Fixed test for upload mappings - removed unnecessary check.
31
+ * Fix typos and tests
32
+ * Fix ` .gitignore `
33
+ * Update Readme to point to HTTPS URLs of cloudinary.com
34
+ * Added support for different resource_types in Rename and Tag
35
+ * Fixed setter for "all" property in DelResParam class.
36
+ * Removed test user credentials from appveyor configuration.
37
+ * Updated readme file.
38
+ * Create LICENSE
39
+ * Added ` nuget.config `
40
+ * AppVeyor configuration.
41
+ * Added lock files.
42
+ * project structure rebuild to support netcore platform
43
+ * Implemented custom configuration section for cloudinary settings.
44
+
1
45
1.0.31 / 2017-05-04
2
46
===================
3
47
Original file line number Diff line number Diff line change 17
17
<RepositoryUrl >https://github.com/cloudinary/CloudinaryDotNet</RepositoryUrl >
18
18
<PackageIconUrl >http://res.cloudinary.com/cloudinary/image/upload/c_scale,w_64/v1/logo/for_white_bg/cloudinary_icon_for_white_bg.png</PackageIconUrl >
19
19
<PackageLicenseUrl >https://github.com/cloudinary/CloudinaryDotNet/blob/master/LICENSE</PackageLicenseUrl >
20
- <Version >1.1.0-rc1 </Version >
20
+ <Version >1.1.0</Version >
21
21
<PackageTags >Image Video Responsive Web Utility CDN Performance Resize Crop Rotate Quality Watermark Gif Jpg Jpeg Bitmap PNG Tiff Webp Webm mp4 avi Filter Effect</PackageTags >
22
22
<FileVersion >1.1.0</FileVersion >
23
23
</PropertyGroup >
Original file line number Diff line number Diff line change 2
2
<package xmlns =" http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd" >
3
3
<metadata >
4
4
<id >CloudinaryDotNet</id >
5
- <version >1.1.0-rc1 </version >
5
+ <version >1.1.0</version >
6
6
<title >Cloudinary DotNet Library</title >
7
7
<authors >Cloudinary</authors >
8
8
<owners >Cloudinary</owners >
Original file line number Diff line number Diff line change 9
9
<GenerateAssemblyProductAttribute >false</GenerateAssemblyProductAttribute >
10
10
<RootNamespace >CloudinaryDotNet</RootNamespace >
11
11
<Authors >Cloudinary</Authors >
12
- <Version >1.1.0-rc2 </Version >
12
+ <Version >1.1.0</Version >
13
13
<GeneratePackageOnBuild >false</GeneratePackageOnBuild >
14
14
<Description >Official client library for easily integrating with the Cloudinary service</Description >
15
15
<PackageTags >Image Video Responsive Web Utility CDN Performance Resize Crop Rotate Quality Watermark Gif Jpg Jpeg Bitmap PNG Tiff Webp Webm mp4 avi Filter Effect</PackageTags >
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ $regKey = "HKLM:\software\Microsoft\MSBuild\ToolsVersions\$dotNetVersion"
5
5
$regProperty = " MSBuildToolsPath"
6
6
7
7
$msbuildExe = join-path - path (Get-ItemProperty $regKey ).$regProperty - childpath " msbuild.exe"
8
-
8
+ $msbuildExe = ' C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\MSBuild\15.0\Bin\MSBuild.exe '
9
9
& $msbuildExe Cloudinary\Cloudinary.csproj / t:" Build" / p:" Configuration=" Release" ;TargetFrameworkVersion=" v4.0 " ;Sign=" $sign " "
10
10
dotnet build -- configuration Release .\Core\CloudinaryDotNet.Core.csproj
11
11
.nuget\NuGet.exe pack CloudinaryDotNet.nuspec
You can’t perform that action at this time.
0 commit comments