Skip to content

Commit

Permalink
move class Logger and its deps to their own namespace (#200)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yvand authored Feb 13, 2024
1 parent 9c9aa87 commit 91edeca
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
using Microsoft.SharePoint.Administration;
using Microsoft.SharePoint.Administration.Claims;
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using Yvand.LdapClaimsProvider.Logging;

namespace Yvand.LdapClaimsProvider
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
using System.Linq;
using System.Web.UI.WebControls;
using Yvand.LdapClaimsProvider.Configuration;
using Yvand.LdapClaimsProvider.Logging;
using AuthenticationTypes = System.DirectoryServices.AuthenticationTypes;
using DirectoryConnection = Yvand.LdapClaimsProvider.Configuration.DirectoryConnection;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
using System.Security.Claims;
using System.Web.UI;
using Yvand.LdapClaimsProvider.Configuration;
using Yvand.LdapClaimsProvider.Logging;

namespace Yvand.LdapClaimsProvider.Administration
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
using System.Linq;
using System.Reflection;
using System.Web;
using Yvand.LdapClaimsProvider.Configuration;
using Yvand.LdapClaimsProvider.Logging;
using WIF4_5 = System.Security.Claims;

namespace Yvand.LdapClaimsProvider.Configuration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
using System.DirectoryServices;
using System.DirectoryServices.ActiveDirectory;
using System.Reflection;
using Yvand.LdapClaimsProvider.Logging;

namespace Yvand.LdapClaimsProvider.Configuration
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Security.Cryptography.X509Certificates;
using WIF4_5 = System.Security.Claims;
using Yvand.LdapClaimsProvider.Logging;

namespace Yvand.LdapClaimsProvider.Configuration
{
Expand Down
1 change: 1 addition & 0 deletions Yvand.LDAPCPSE/Yvand.LdapClaimsProvider/LDAPCPSE.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
using System.Linq;
using System.Threading;
using Yvand.LdapClaimsProvider.Configuration;
using Yvand.LdapClaimsProvider.Logging;
using WIF4_5 = System.Security.Claims;

namespace Yvand.LdapClaimsProvider
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
using System.Diagnostics;
using System.DirectoryServices;
using System.DirectoryServices.AccountManagement;
using System.DirectoryServices.ActiveDirectory;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Yvand.LdapClaimsProvider.Configuration;
using Yvand.LdapClaimsProvider.Logging;
using WIF4_5 = System.Security.Claims;

namespace Yvand.LdapClaimsProvider
Expand Down
3 changes: 1 addition & 2 deletions Yvand.LDAPCPSE/Yvand.LdapClaimsProvider/Logger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@
using System.DirectoryServices;
using System.IO;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Text;

namespace Yvand.LdapClaimsProvider
namespace Yvand.LdapClaimsProvider.Logging
{
public enum TraceCategory
{
Expand Down
3 changes: 1 addition & 2 deletions Yvand.LDAPCPSE/Yvand.LdapClaimsProvider/Utils.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
using Microsoft.SharePoint.Administration;
using Microsoft.SharePoint.Administration.Claims;
using Microsoft.SharePoint.WebControls;
using Microsoft.Web.Hosting.Administration;
using System;
using System.Collections.Generic;
using System.DirectoryServices;
Expand All @@ -10,6 +8,7 @@
using System.Security.Principal;
using System.Text;
using System.Text.RegularExpressions;
using Yvand.LdapClaimsProvider.Logging;

namespace Yvand.LdapClaimsProvider.Configuration
{
Expand Down

0 comments on commit 91edeca

Please sign in to comment.