Skip to content

Commit 8b96141

Browse files
committed
Remove Microsoft from assembly names
This change updates the following assembly names: Microsoft.Git.CredentialManager --> gcmcore Microsoft.Git.CredentialManager.UI --> gcmcoreui Microsoft.Git.CredentialManager.UI.Avalonia --> gcmcoreuiavn Shared.UI.Windows --> gcmcoreuiwpf It also updates the corresponding xaml/iss files with the new names.
1 parent 3183fdb commit 8b96141

File tree

17 files changed

+23
-21
lines changed

17 files changed

+23
-21
lines changed

src/osx/SignFiles.Mac/SignFiles.Mac.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
$(OutDir)\GitHub.UI.dll;
2929
$(OutDir)\GitHub.UI.Shared.dll;
3030
$(OutDir)\Microsoft.AzureRepos.dll;
31-
$(OutDir)\Microsoft.Git.CredentialManager.dll;">
31+
$(OutDir)\gcmcore.dll;">
3232
<Authenticode>Microsoft400</Authenticode>
3333
<InProject>false</InProject>
3434
</FilesToSign>

src/shared/GitHub.UI.Avalonia/Views/CredentialsView.axaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
55
xmlns:controls="clr-namespace:GitHub.UI.Controls"
66
xmlns:vm="clr-namespace:GitHub.UI.ViewModels;assembly=GitHub.UI.Shared"
7-
xmlns:converters="clr-namespace:Microsoft.Git.CredentialManager.UI.Converters;assembly=Microsoft.Git.CredentialManager.UI.Avalonia"
7+
xmlns:converters="clr-namespace:Microsoft.Git.CredentialManager.UI.Converters;assembly=gcmcoreuiavn"
88
mc:Ignorable="d" d:DesignWidth="420"
99
x:Class="GitHub.UI.Views.CredentialsView">
1010
<Design.DataContext>

src/shared/Microsoft.Git.CredentialManager.UI.Avalonia/Assets/Controls.axaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Styles xmlns="https://github.com/avaloniaui"
22
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
3-
<StyleInclude Source="avares://Microsoft.Git.CredentialManager.UI.Avalonia/Assets/ButtonHyperlink.axaml"/>
3+
<StyleInclude Source="avares://gcmcoreuiavn/Assets/ButtonHyperlink.axaml"/>
44
<Style Selector="TextBox.monospace">
55
<Setter Property="FontFamily" Value="SF Mono, Courier New, Courier, monospace" />
66
</Style>

src/shared/Microsoft.Git.CredentialManager.UI.Avalonia/AvaloniaApp.axaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
Name="Git Credential Manager">
55
<Application.Styles>
66
<FluentTheme Mode="Light"/>
7-
<StyleInclude Source="avares://Microsoft.Git.CredentialManager.UI.Avalonia/Assets/Controls.axaml"/>
7+
<StyleInclude Source="avares://gcmcoreuiavn/Assets/Controls.axaml"/>
88
</Application.Styles>
99
<Application.Resources>
1010
<ResourceDictionary>
1111
<ResourceDictionary.MergedDictionaries>
12-
<ResourceInclude Source="avares://Microsoft.Git.CredentialManager.UI.Avalonia/Assets/LightBase.axaml"/>
12+
<ResourceInclude Source="avares://gcmcoreuiavn/Assets/LightBase.axaml"/>
1313
</ResourceDictionary.MergedDictionaries>
1414
</ResourceDictionary>
1515
</Application.Resources>

src/shared/Microsoft.Git.CredentialManager.UI.Avalonia/Controls/AboutWindow.axaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010
<Window.Resources>
1111
<ResourceDictionary>
1212
<ResourceDictionary.MergedDictionaries>
13-
<ResourceInclude Source="avares://Microsoft.Git.CredentialManager.UI.Avalonia/Assets/Images.axaml"/>
13+
<ResourceInclude Source="gcmcoreuiavn/Assets/Images.axaml"/>
1414
</ResourceDictionary.MergedDictionaries>
1515
</ResourceDictionary>
1616
</Window.Resources>
1717
<Window.Styles>
18-
<StyleInclude Source="avares://Microsoft.Git.CredentialManager.UI.Avalonia/Assets/Controls.axaml"/>
18+
<StyleInclude Source="avares://gcmcoreuiavn/Assets/Controls.axaml"/>
1919
</Window.Styles>
2020
<StackPanel Margin="20">
2121
<Image HorizontalAlignment="Center"

src/shared/Microsoft.Git.CredentialManager.UI.Avalonia/Controls/DialogWindow.axaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
33
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
44
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
5-
xmlns:vm="clr-namespace:Microsoft.Git.CredentialManager.UI.ViewModels;assembly=Microsoft.Git.CredentialManager.UI"
5+
xmlns:vm="clr-namespace:Microsoft.Git.CredentialManager.UI.ViewModels;assembly=gcmcoreui"
66
xmlns:converters="clr-namespace:Microsoft.Git.CredentialManager.UI.Converters"
77
mc:Ignorable="d" d:DesignWidth="420" d:DesignHeight="520"
88
x:Class="Microsoft.Git.CredentialManager.UI.Controls.DialogWindow"

src/shared/Microsoft.Git.CredentialManager.UI.Avalonia/Microsoft.Git.CredentialManager.UI.Avalonia.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>net5.0</TargetFramework>
5+
<AssemblyName>gcmcoreuiavn</AssemblyName>
56
<RootNamespace>Microsoft.Git.CredentialManager.UI</RootNamespace>
67
</PropertyGroup>
78

src/shared/Microsoft.Git.CredentialManager.UI/Microsoft.Git.CredentialManager.UI.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
5+
<AssemblyName>gcmcoreui</AssemblyName>
56
<RootNamespace>Microsoft.Git.CredentialManager.UI</RootNamespace>
67
</PropertyGroup>
78

src/shared/Microsoft.Git.CredentialManager/Microsoft.Git.CredentialManager.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFrameworks>netstandard2.0</TargetFrameworks>
55
<TargetFrameworks Condition="'$(OSPlatform)'=='windows'">netstandard2.0;net472</TargetFrameworks>
6-
<AssemblyName>Microsoft.Git.CredentialManager</AssemblyName>
6+
<AssemblyName>gcmcore</AssemblyName>
77
<RootNamespace>Microsoft.Git.CredentialManager</RootNamespace>
88
<IsTestProject>false</IsTestProject>
99
<LangVersion>latest</LangVersion>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
22
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
33
<ResourceDictionary.MergedDictionaries>
4-
<ResourceDictionary Source="pack://application:,,,/Microsoft.Git.CredentialManager.UI.Windows;component/Assets/Styles.xaml"/>
4+
<ResourceDictionary Source="pack://application:,,,/gcmcoreuiwpf;component/Assets/Styles.xaml"/>
55
</ResourceDictionary.MergedDictionaries>
66
</ResourceDictionary>

0 commit comments

Comments
 (0)