GleamTech.Core.NuGetOrg 3.9.0

Suggested Alternatives

GleamTech.Common

Additional Details

This package has been renamed to GleamTech.Common, please install the latest version of GleamTech.Common instead of this package.

The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package GleamTech.Core.NuGetOrg --version 3.9.0
NuGet\Install-Package GleamTech.Core.NuGetOrg -Version 3.9.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="GleamTech.Core.NuGetOrg" Version="3.9.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add GleamTech.Core.NuGetOrg --version 3.9.0
#r "nuget: GleamTech.Core.NuGetOrg, 3.9.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install GleamTech.Core.NuGetOrg as a Cake Addin
#addin nuget:?package=GleamTech.Core.NuGetOrg&version=3.9.0

// Install GleamTech.Core.NuGetOrg as a Cake Tool
#tool nuget:?package=GleamTech.Core.NuGetOrg&version=3.9.0

This package contains the core assembly which is shared by various GleamTech products. Product packages such as FileUltimate, ImageUltimate, VideoUltimate and DocumentUltimate depend on this package.

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated

## Version 3.9.0 - September 12, 2019

 - **Improved:** Performance and stability for zip feature:

   - The files generated by "Add to Zip" and "Download as Zip" actions will now include 3 file dates for folders because from now on,
 redundant folder entries will not be removed like in previous versions. Dates are UTC but fallbacks to non-utc lastmodified for
 old zip clients.

- For entry names, zip spec default IBM (OEM) Code Page 437 encoding will be used for main header but with an extra UTF8 FileName
 (and UTF8 Comment) header for zip clients that support it (e.g. Windows 8+ Explorer, 7zip, Winzip).
 In previous versions, UTF8 encoding was used for main header when necessary (if filename had unicode characters) but this caused
 old zip clients like "Windows 7 Explorer" to show mangled file names as they expect to read in zip spec default Code Page 437 for
 main header. While using Code Page 437, unicode characters  will be also replaced with "_" instead of "?" character so in old zip
 clients like "Windows 7 Explorer" can at least display and extract files (it hides filenames with "?" character as it's an illegal
 character for filenames on Windows). Note that "Windows 8 Explorer" and above already support extra UTF8 headers.

- We aimed maxium compatiblity for generated zip files, if you notice a strange problem let us know.

 - **Improved:** Performance and stability for file systems:

   - ArchiveFileSystem now supports reading TarLZip (tar.lz, tlz) and TarXz (tar.xz, txz) archive formats.

- Create and update nested zips without errors on all file systems.

   - Unified common errors for all file systems.

 - **Improved:** Handling of temporary files:

     - New property GleamTechConfiguration.TemporaryFolder for being able to use a different folder than the default system temporary
 folder. All GleamTech products will use the same folder (removed FileUltimateConfiguration.TemporaryPath property).
 When you change this property, some default folders for products will change automatically if they are subfolders of TemporaryFolder.
 You can set this property to have more control on temporary folder (adjusting permissions, observing size etc.).
 For example for web apps, you can set it to "~/App_Data/Temporary" to observe it more easily.

   - Under temporary folder, there will be no more subfolders for the products but there will be subfolders for the feature:

 "GleamTech.Core" -> "ResourceCache"
 "FileUltimate\ImageCache" -> "ImageCache"
 "FileUltimate\DocumentCache" -> "DocumentCache"
 "FileUltimate" -> removed
 "DocumentUltimate" -> removed
 "ImageUltimate" -> removed

 The old subfolders will be migrated automatically.

   - When accessing TemporaryFolder, detailed "Access Denied" error messages will be shown to troubleshoot insufficent
 permission issues. The error message will include the safe display path and current windows identity (and impersonation level).

   - Changed the default value of GleamTechConfiguration.LogFile property from "~/App_Data/GleamTech.log" to
 "[GleamTechConfiguration.TemporaryFolder]\GleamTech.log".

 - **Improved:** Preparation for NetCore/NetStandard DLL.

 - **Improved:** Updated libraries.