Skip to content

Commit e7a8807

Browse files
committed
Remove Microsoft from/generally update namespaces
Updated the following namespaces: TestInfrastructure --> GitCredentialManager.Tests Microsoft.Git.CredentialManager --> GitCredentialManager Microsoft.Git.CredentialManager.Tests --> GitCredentialManager.Tests Microsoft.Git.CredentialManager.UI --> GitCredentialManager.UI Microsoft.Git.CredentialManager.UI.Avalonia --> GitCredentialManager.UI Shared.UI.Windows --> GitCredentialManager.UI Git-Credential-Manager --> GitCredentialManager
1 parent 8b96141 commit e7a8807

File tree

295 files changed

+482
-481
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

295 files changed

+482
-481
lines changed

src/shared/Atlassian.Bitbucket.Tests/BitbucketHostProviderTest.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
using Microsoft.Git.CredentialManager;
2-
using Microsoft.Git.CredentialManager.Authentication.OAuth;
3-
using Microsoft.Git.CredentialManager.Tests.Objects;
1+
using GitCredentialManager;
2+
using GitCredentialManager.Authentication.OAuth;
3+
using GitCredentialManager.Tests.Objects;
44
using Moq;
55
using System;
66
using System.Collections.Generic;

src/shared/Atlassian.Bitbucket.UI.Avalonia/Commands/CredentialsCommandImpl.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
using System.Threading.Tasks;
33
using Atlassian.Bitbucket.UI.ViewModels;
44
using Atlassian.Bitbucket.UI.Views;
5-
using Microsoft.Git.CredentialManager;
6-
using Microsoft.Git.CredentialManager.UI;
5+
using GitCredentialManager;
6+
using GitCredentialManager.UI;
77

88
namespace Atlassian.Bitbucket.UI.Commands
99
{

src/shared/Atlassian.Bitbucket.UI.Avalonia/Commands/OAuthCommandImpl.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
using System.Threading.Tasks;
33
using Atlassian.Bitbucket.UI.ViewModels;
44
using Atlassian.Bitbucket.UI.Views;
5-
using Microsoft.Git.CredentialManager;
6-
using Microsoft.Git.CredentialManager.UI;
5+
using GitCredentialManager;
6+
using GitCredentialManager.UI;
77

88
namespace Atlassian.Bitbucket.UI.Commands
99
{

src/shared/Atlassian.Bitbucket.UI.Avalonia/Controls/TesterWindow.axaml.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
using Avalonia.Controls;
55
using Avalonia.Interactivity;
66
using Avalonia.Markup.Xaml;
7-
using Microsoft.Git.CredentialManager;
8-
using Microsoft.Git.CredentialManager.Interop.Linux;
9-
using Microsoft.Git.CredentialManager.Interop.MacOS;
10-
using Microsoft.Git.CredentialManager.Interop.Posix;
11-
using Microsoft.Git.CredentialManager.Interop.Windows;
12-
using Microsoft.Git.CredentialManager.UI.Controls;
7+
using GitCredentialManager;
8+
using GitCredentialManager.Interop.Linux;
9+
using GitCredentialManager.Interop.MacOS;
10+
using GitCredentialManager.Interop.Posix;
11+
using GitCredentialManager.Interop.Windows;
12+
using GitCredentialManager.UI.Controls;
1313

1414
namespace Atlassian.Bitbucket.UI.Controls
1515
{

src/shared/Atlassian.Bitbucket.UI.Avalonia/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
using Atlassian.Bitbucket.UI.Commands;
55
using Atlassian.Bitbucket.UI.Controls;
66
using Avalonia;
7-
using Microsoft.Git.CredentialManager;
8-
using Microsoft.Git.CredentialManager.UI;
7+
using GitCredentialManager;
8+
using GitCredentialManager.UI;
99

1010
namespace Atlassian.Bitbucket.UI
1111
{

src/shared/Atlassian.Bitbucket.UI.Avalonia/Views/CredentialsView.axaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Atlassian.Bitbucket.UI.ViewModels;
22
using Avalonia.Controls;
33
using Avalonia.Markup.Xaml;
4-
using Microsoft.Git.CredentialManager.UI.Controls;
4+
using GitCredentialManager.UI.Controls;
55

66
namespace Atlassian.Bitbucket.UI.Views
77
{

src/shared/Atlassian.Bitbucket.UI.Avalonia/Views/OAuthView.axaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Avalonia;
22
using Avalonia.Controls;
33
using Avalonia.Markup.Xaml;
4-
using Microsoft.Git.CredentialManager.UI.Controls;
4+
using GitCredentialManager.UI.Controls;
55

66
namespace Atlassian.Bitbucket.UI.Views
77
{

src/shared/Atlassian.Bitbucket.UI/Commands/CredentialsCommand.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
using System.Threading;
66
using System.Threading.Tasks;
77
using Atlassian.Bitbucket.UI.ViewModels;
8-
using Microsoft.Git.CredentialManager;
9-
using Microsoft.Git.CredentialManager.UI;
8+
using GitCredentialManager;
9+
using GitCredentialManager.UI;
1010

1111
namespace Atlassian.Bitbucket.UI.Commands
1212
{

src/shared/Atlassian.Bitbucket.UI/Commands/OAuthCommand.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
using System.Threading;
55
using System.Threading.Tasks;
66
using Atlassian.Bitbucket.UI.ViewModels;
7-
using Microsoft.Git.CredentialManager;
8-
using Microsoft.Git.CredentialManager.UI;
7+
using GitCredentialManager;
8+
using GitCredentialManager.UI;
99

1010
namespace Atlassian.Bitbucket.UI.Commands
1111
{

src/shared/Atlassian.Bitbucket.UI/ViewModels/CredentialsViewModel.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using System.ComponentModel;
22
using System.Windows.Input;
3-
using Microsoft.Git.CredentialManager;
4-
using Microsoft.Git.CredentialManager.UI;
5-
using Microsoft.Git.CredentialManager.UI.ViewModels;
3+
using GitCredentialManager;
4+
using GitCredentialManager.UI;
5+
using GitCredentialManager.UI.ViewModels;
66

77
namespace Atlassian.Bitbucket.UI.ViewModels
88
{

0 commit comments

Comments
 (0)