Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.

Commit 518dbd9

Browse files
committed
Move code to core repository
1 parent 3a1a065 commit 518dbd9

15 files changed

+13
-177
lines changed

.gitmodules

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
[submodule "msgraph-cli-core"]
22
path = msgraph-cli-core
33
url = https://github.com/microsoftgraph/msgraph-cli-core.git
4+
branch = chore/refactor

src/Authentication/AuthenticationServiceFactory.cs

Lines changed: 0 additions & 58 deletions
This file was deleted.

src/Authentication/AuthenticationStrategy.cs

Lines changed: 0 additions & 11 deletions
This file was deleted.

src/Authentication/DeviceCodeLoginService.cs

Lines changed: 0 additions & 20 deletions
This file was deleted.

src/Authentication/ILoginService.cs

Lines changed: 0 additions & 7 deletions
This file was deleted.

src/Authentication/LoginServiceBase.cs

Lines changed: 0 additions & 30 deletions
This file was deleted.

src/Authentication/LogoutService.cs

Lines changed: 0 additions & 12 deletions
This file was deleted.

src/Commands/Authentication/LoginCommand.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
using Microsoft.Extensions.DependencyInjection;
22
using Microsoft.Extensions.Hosting;
33
using Microsoft.Extensions.Options;
4-
using Microsoft.Graph.Cli.Authentication;
4+
using Microsoft.Graph.Cli.Core.Authentication;
55
using Microsoft.Graph.Cli.Configuration;
6-
using Microsoft.Graph.Cli.Utils;
6+
using Microsoft.Graph.Cli.Core.Utils;
77
using System.CommandLine;
88
using System.CommandLine.Invocation;
99

src/Commands/Authentication/LogoutCommand.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
using Microsoft.Graph.Cli.Authentication;
2-
using Microsoft.Graph.Cli.Utils;
1+
using Microsoft.Graph.Cli.Core.Authentication;
2+
using Microsoft.Graph.Cli.Core.Utils;
33
using System.CommandLine;
44
using System.CommandLine.Invocation;
55

0 commit comments

Comments
 (0)