Skip to content

Commit

Permalink
Changes azure extension namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
mzorec committed Oct 10, 2018
1 parent fea93fd commit fb27b08
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions FlubuCore.Azure/AzureExtension.cs
Expand Up @@ -3,7 +3,8 @@
using System.Text;
using FlubuCore.Context.FluentInterface.Interfaces;

namespace FlubuCore.Azure
// ReSharper disable once CheckNamespace
namespace FlubuCore.Context
{
public static class AzureExtension
{
Expand All @@ -12,9 +13,9 @@ public static class AzureExtension
/// </summary>
/// <param name="flubu"></param>
/// <returns></returns>
public static Azure Azure(this ITaskFluentInterface flubu)
public static Azure.Azure Azure(this ITaskFluentInterface flubu)
{
return new Azure();
return new Azure.Azure();
}
}
}

0 comments on commit fb27b08

Please sign in to comment.