Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed missing namespaces in some Helper classes #58

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions Imagekit.UnitTests/ImageKitTestCasesNonAsync.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
using System.Net.Http;
using Xunit;
using Newtonsoft.Json.Linq;
using Imagekit.Helper;

namespace Imagekit.UnitTests.FileVersion
{
Expand Down Expand Up @@ -751,8 +752,4 @@ public void AuthenticationParamNullCheck()
Assert.IsType<String>(authParams.signature);
}
}
}




}
3 changes: 2 additions & 1 deletion Imagekit/Helper/ImagekitBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ namespace Imagekit
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Text.RegularExpressions;
using global::Imagekit.Helper;

[ExcludeFromCodeCoverage]
public abstract partial class BaseImagekit<T>
Expand Down Expand Up @@ -80,4 +81,4 @@ public Imagekit(
{
}
}
}
}
4 changes: 3 additions & 1 deletion Imagekit/Helper/ImagekitParams.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

namespace Imagekit
{
using global::Imagekit.Helper;

public partial class BaseImagekit<T>
{
public T Path(string value)
Expand Down Expand Up @@ -70,4 +72,4 @@ public T Add(string key, object value)
return (T)this;
}
}
}
}
Loading