Merge branch 'vx/feature/unicore' of https://github.com/umbraco/Umbraco-CMS into vx/feature/unicore

This commit is contained in:
Lars-Erik Aabech
2019-05-20 16:48:22 +02:00
5 changed files with 3 additions and 7 deletions

View File

@@ -21,7 +21,7 @@ namespace Umbraco.Core
// been closed, the Semaphore system object is destroyed - so in any case
// an iisreset should clean up everything
//
internal class AsyncLock
public class AsyncLock
{
private readonly SemaphoreSlim _semaphore;
private readonly Semaphore _semaphore2;

View File

@@ -6,7 +6,7 @@ namespace Umbraco.Core
/// <summary>
/// Provides methods for encoding byte arrays into hexadecimal strings.
/// </summary>
internal static class HexEncoder
public static class HexEncoder
{
// LUT's that provide the hexadecimal representation of each possible byte value.
private static readonly char[] HexLutBase = new char[] { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' };

View File

@@ -3,7 +3,7 @@ using System.Threading.Tasks;
namespace Umbraco.Core
{
internal static class WaitHandleExtensions
public static class WaitHandleExtensions
{
// http://stackoverflow.com/questions/25382583/waiting-on-a-named-semaphore-with-waitone100-vs-waitone0-task-delay100

View File

@@ -117,7 +117,6 @@
</Compile>
-->
<Compile Include="AssemblyExtensions.cs" />
<Compile Include="AsyncLock.cs" />
<Compile Include="Cache\AppPolicedCacheDictionary.cs" />
<Compile Include="Compose\AuditEventsComponent.cs" />
<Compile Include="BindingRedirects.cs" />
@@ -345,7 +344,6 @@
<Compile Include="IO\IFileSystems.cs" />
<Compile Include="IO\IMediaFileSystem.cs" />
<Compile Include="GuidUtils.cs" />
<Compile Include="HexEncoder.cs" />
<Compile Include="IO\MediaPathSchemes\CombinedGuidsMediaPathScheme.cs" />
<Compile Include="IO\IMediaPathScheme.cs" />
<Compile Include="IO\MediaPathSchemes\OriginalMediaPathScheme.cs" />
@@ -594,7 +592,6 @@
<Compile Include="Dictionary\ICultureDictionaryFactory.cs" />
<Compile Include="Logging\DisposableTimer.cs" />
<Compile Include="EmailSender.cs" />
<Compile Include="Enum.cs" />
<Compile Include="EnumerableExtensions.cs" />
<Compile Include="Events\CancellableEventArgs.cs" />
<Compile Include="Events\CancellableObjectEventArgs.cs" />
@@ -1512,7 +1509,6 @@
<Compile Include="UpgradeableReadLock.cs" />
<Compile Include="UriExtensions.cs" />
<Compile Include="VersionExtensions.cs" />
<Compile Include="WaitHandleExtensions.cs" />
<Compile Include="WriteLock.cs" />
<Compile Include="XmlExtensions.cs" />
<Compile Include="PackageActions\IPackageAction.cs" />