Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
deepchoudhery committed Apr 22, 2021
1 parent a632db1 commit 2aaad2c
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 11 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.Linq;
using System.Threading.Tasks;
using Azure.Core;
using Microsoft.DotNet.MSIdentity.AuthenticationParameters;
using Microsoft.DotNet.MSIdentity.Tool;
using Microsoft.Graph;

namespace Microsoft.DotNet.MSIdentity.MicrosoftIdentityPlatformApplication
Expand Down Expand Up @@ -217,7 +217,7 @@ internal async Task<bool> UpdateApplication(TokenCredential tokenCredential, App
updateStatus = true;
}
//TODO update exception
catch (Exception e)
catch (Exception)
{
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
using Newtonsoft.Json.Linq;
using Directory = System.IO.Directory;
using File = System.IO.File;
using ProjectDescription = Microsoft.DotNet.MsIdentity.Project.ProjectDescription;
using ProjectDescription = Microsoft.DotNet.MSIdentity.Project.ProjectDescription;

namespace Microsoft.DotNet.MSIdentity
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Microsoft.DotNet.MSIdentity
namespace Microsoft.DotNet.MSIdentity.Tool
{
public class Commands
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
using System.Threading.Tasks;
using Microsoft.DotNet.MSIdentity.AuthenticationParameters;

namespace Microsoft.DotNet.MSIdentity
namespace Microsoft.DotNet.MSIdentity.Tool
{
public interface IMsAADTool
{
Task<ApplicationParameters?> Run();
}
}
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Text.Json;

namespace Microsoft.DotNet.MsIdentity.Tool
namespace Microsoft.DotNet.MSIdentity.Tool
{
internal class JsonResponse
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
using Microsoft.DotNet.MSIdentity.AuthenticationParameters;
using Microsoft.DotNet.MSIdentity.DeveloperCredentials;
using Microsoft.DotNet.MSIdentity.MicrosoftIdentityPlatformApplication;
using Microsoft.DotNet.MSIdentity.Tool;
using Microsoft.Graph;
namespace Microsoft.DotNet.MSIdentity

namespace Microsoft.DotNet.MSIdentity.Tool
{
internal class MsAADTool : IMsAADTool
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Collections.Generic;
using Microsoft.DotNet.MSIdentity.DeveloperCredentials;

namespace Microsoft.DotNet.MSIdentity
namespace Microsoft.DotNet.MSIdentity.Tool
{
public class ProvisioningToolOptions : IDeveloperCredentialsOptions
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
using System.Threading.Tasks;
using Microsoft.DotNet.MSIdentity.DeveloperCredentials;
using Microsoft.DotNet.MSIdentity.MicrosoftIdentityPlatformApplication;
using Microsoft.DotNet.MSIdentity.Tool;
using Moq;
using Xunit;

Expand Down

0 comments on commit 2aaad2c

Please sign in to comment.