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

Commit 4ffb4bc

Browse files
Merge pull request #244 from microsoft/staging
Release - 10/17/23
2 parents 8f275c3 + 7876c48 commit 4ffb4bc

File tree

296 files changed

+421
-400
lines changed

Some content is hidden

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

296 files changed

+421
-400
lines changed

.github/workflows/GitHubExt-CI.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ jobs:
5454
Add-Content $env:GITHUB_ENV "VSDevCmd=$VSDevCmd"
5555
5656
- name: Restore dependencies
57-
run: dotnet restore GITServices.sln -p:PublishReadyToRun=true
57+
run: dotnet restore GitHubExtension.sln -p:PublishReadyToRun=true
5858

5959
- name: Build_DevHomeGitHubExtension
60-
run: cmd /c "$env:VSDevCmd" "&" msbuild /p:Configuration=${{ matrix.configuration }},Platform=${{ matrix.platform }} /restore GITServices.sln
60+
run: cmd /c "$env:VSDevCmd" "&" msbuild /p:Configuration=${{ matrix.configuration }},Platform=${{ matrix.platform }} /restore GitHubExtension.sln
6161

6262
- name: Find vstest.console.exe
6363
if: ${{ matrix.platform != 'arm64' }}
@@ -69,4 +69,4 @@ jobs:
6969
7070
- name: DevHome UnitTests
7171
if: ${{ matrix.platform != 'arm64' }}
72-
run: cmd /c "$env:VSDevTestCmd" /Platform:${{ matrix.platform }} /TestCaseFilter:"TestCategory!=LiveData" BuildOutput\\${{ matrix.configuration }}\\${{ matrix.platform }}\\GitHubPlugin.Test\\GitHubPlugin.Test.dll
72+
run: cmd /c "$env:VSDevTestCmd" /Platform:${{ matrix.platform }} /TestCaseFilter:"TestCategory!=LiveData" BuildOutput\\${{ matrix.configuration }}\\${{ matrix.platform }}\\GitHubExtension.Test\\GitHubExtension.Test.dll

GITServices.sln renamed to GitHubExtension.sln

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 17
44
VisualStudioVersion = 17.3.32901.215
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GITServices.UITest", "test\UITest\GITServices.UITest.csproj", "{E9F49E1C-C15D-4B87-92CA-9003C1C31DB5}"
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GitHubExtension.UITest", "test\UITest\GitHubExtension.UITest.csproj", "{E9F49E1C-C15D-4B87-92CA-9003C1C31DB5}"
77
EndProject
8-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GitHubPlugin.TestConsole", "test\Console\GitHubPlugin.TestConsole.csproj", "{90991D71-5740-4C75-B79B-6092F4D75BF4}"
8+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GitHubExtension.TestConsole", "test\Console\GitHubExtension.TestConsole.csproj", "{90991D71-5740-4C75-B79B-6092F4D75BF4}"
99
EndProject
10-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GitHubPlugin", "src\GithubPlugin\GitHubPlugin.csproj", "{FFC1FC71-6386-4D30-A6A9-2401121BEEE3}"
10+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GitHubExtension", "src\GitHubExtension\GitHubExtension.csproj", "{FFC1FC71-6386-4D30-A6A9-2401121BEEE3}"
1111
EndProject
12-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GitHubPluginServer", "src\GithubPluginServer\GitHubPluginServer.csproj", "{9AEDC455-CF92-43A7-8E89-C6CA50DEC536}"
12+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GitHubExtensionServer", "src\GitHubExtensionServer\GitHubExtensionServer.csproj", "{9AEDC455-CF92-43A7-8E89-C6CA50DEC536}"
1313
EndProject
14-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GITServices.Telemetry", "src\Telemetry\GITServices.Telemetry.csproj", "{8E1764CB-2FFC-4F23-9FC0-BDE84E519319}"
14+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GitHubExtension.Telemetry", "src\Telemetry\GitHubExtension.Telemetry.csproj", "{8E1764CB-2FFC-4F23-9FC0-BDE84E519319}"
1515
EndProject
1616
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{5BDF2709-4299-49C3-B971-B10747F2925D}"
1717
EndProject
@@ -38,7 +38,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "scripts", "scripts", "{A371
3838
build\scripts\Unstub.ps1 = build\scripts\Unstub.ps1
3939
EndProjectSection
4040
EndProject
41-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GitHubPlugin.Test", "test\GitHubPlugin\GitHubPlugin.Test.csproj", "{D8EFDB34-7019-4807-AE97-1B50891F345D}"
41+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GitHubExtension.Test", "test\GitHubExtension\GitHubExtension.Test.csproj", "{D8EFDB34-7019-4807-AE97-1B50891F345D}"
4242
EndProject
4343
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DevHome.Logging", "src\Logging\DevHome.Logging.csproj", "{FEEEDA62-F746-4160-A3A8-1EE74137F8AB}"
4444
EndProject

build/azure-pipelines.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ parameters:
2323
- release
2424

2525
variables:
26-
MSIXVersion: '0.501'
27-
solution: '**/GITServices.sln'
26+
MSIXVersion: '0.600'
27+
solution: '**/GitHubExtension.sln'
2828
appxPackageDir: 'AppxPackages'
2929
testOutputArtifactDir: 'TestResults'
3030

@@ -123,7 +123,7 @@ stages:
123123
ArtifactName: LocOutput
124124

125125
- task: PowerShell@2
126-
displayName: Build GITServices Extension
126+
displayName: Build GitHub Extension
127127
retryCountOnTaskFailure: 2
128128
inputs:
129129
filePath: 'build/scripts/Build.ps1'

build/scripts/Build.ps1

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Syntax:
2121
Build.cmd [options]
2222
2323
Description:
24-
Builds GIT services for Windows.
24+
Builds GitHubExtension for Windows.
2525
2626
Options:
2727
@@ -58,7 +58,7 @@ $env:msix_version = build\Scripts\CreateBuildInfo.ps1 -Version $Version -IsAzure
5858
$isAdmin = ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] 'Administrator')
5959

6060
# Set GitHub OAuth Client App configuration if build-time parameters are present
61-
$OAuthConfigFilePath = (Join-Path $env:Build_RootDirectory "src\GithubPlugin\Configuration\OAuthConfiguration.cs")
61+
$OAuthConfigFilePath = (Join-Path $env:Build_RootDirectory "src\GitHubExtension\Configuration\OAuthConfiguration.cs")
6262
if (![string]::IsNullOrWhitespace($ClientId)) {
6363
(Get-Content $OAuthConfigFilePath).Replace("%BUILD_TIME_GITHUB_CLIENT_ID_PLACEHOLDER%", $ClientId) | Set-Content $OAuthConfigFilePath
6464
}
@@ -117,7 +117,7 @@ Try {
117117
$uapAppExtension = [System.Xml.Linq.XName]::Get("{http://schemas.microsoft.com/appx/manifest/uap/windows10/3}AppExtension");
118118

119119
# Update the appxmanifest
120-
$appxmanifestPath = (Join-Path $env:Build_RootDirectory "src\GithubPluginServer\Package.appxmanifest")
120+
$appxmanifestPath = (Join-Path $env:Build_RootDirectory "src\GitHubExtensionServer\Package.appxmanifest")
121121
$appxmanifest = [System.Xml.Linq.XDocument]::Load($appxmanifestPath)
122122
$appxmanifest.Root.Element($xIdentity).Attribute("Version").Value = $env:msix_version
123123
if (-not ([string]::IsNullOrEmpty($newPackageName))) {
@@ -148,22 +148,22 @@ Try {
148148
foreach ($platform in $env:Build_Platform.Split(",")) {
149149
foreach ($configuration in $env:Build_Configuration.Split(",")) {
150150
$appxPackageDir = (Join-Path $env:Build_RootDirectory "AppxPackages\$configuration")
151-
$solutionPath = (Join-Path $env:Build_RootDirectory "GITServices.sln")
151+
$solutionPath = (Join-Path $env:Build_RootDirectory "GitHubExtension.sln")
152152
$msbuildArgs = @(
153153
($solutionPath),
154154
("/p:platform="+$platform),
155155
("/p:configuration="+$configuration),
156156
("/restore"),
157-
("/binaryLogger:GITServices.$platform.$configuration.binlog"),
158-
("/p:AppxPackageOutput=$appxPackageDir\GITServices-$platform.msix"),
157+
("/binaryLogger:GitHubExtension.$platform.$configuration.binlog"),
158+
("/p:AppxPackageOutput=$appxPackageDir\GitHubExtension-$platform.msix"),
159159
("/p:AppxPackageSigningEnabled=false"),
160160
("/p:GenerateAppxPackageOnBuild=true"),
161161
("/p:BuildRing=$buildRing")
162162
)
163163

164164
& $msbuildPath $msbuildArgs
165165
if (-not($IsAzurePipelineBuild) -And $isAdmin) {
166-
Invoke-SignPackage "$appxPackageDir\GITServices-$platform.msix"
166+
Invoke-SignPackage "$appxPackageDir\GitHubExtension-$platform.msix"
167167
}
168168
}
169169
}
@@ -193,9 +193,9 @@ Try {
193193

194194
if (($BuildStep -ieq "all") -Or ($BuildStep -ieq "msixbundle")) {
195195
foreach ($configuration in $env:Build_Configuration.Split(",")) {
196-
.\build\scripts\Create-AppxBundle.ps1 -InputPath (Join-Path $env:Build_RootDirectory "AppxPackages\$configuration") -ProjectName GITServices -BundleVersion ([version]$env:msix_version) -OutputPath (Join-Path $env:Build_RootDirectory ("AppxBundles\$configuration\GITServices_" + $env:msix_version + "_8wekyb3d8bbwe.msixbundle"))
196+
.\build\scripts\Create-AppxBundle.ps1 -InputPath (Join-Path $env:Build_RootDirectory "AppxPackages\$configuration") -ProjectName GitHubExtension -BundleVersion ([version]$env:msix_version) -OutputPath (Join-Path $env:Build_RootDirectory ("AppxBundles\$configuration\GitHubExtension_" + $env:msix_version + "_8wekyb3d8bbwe.msixbundle"))
197197
if (-not($IsAzurePipelineBuild) -And $isAdmin) {
198-
Invoke-SignPackage ("AppxBundles\$configuration\GITServices_" + $env:msix_version + "_8wekyb3d8bbwe.msixbundle")
198+
Invoke-SignPackage ("AppxBundles\$configuration\GitHubExtension_" + $env:msix_version + "_8wekyb3d8bbwe.msixbundle")
199199
}
200200
}
201201
}
@@ -219,7 +219,7 @@ WARNING: Cert signing requires admin privileges. To sign, run the following in
219219
foreach ($configuration in $env:Build_Configuration.Split(",")) {
220220
$appxPackageDir = (Join-Path $env:Build_RootDirectory "AppxPackages\$configuration")
221221
Write-Host @"
222-
powershell -command "& { . build\scripts\CertSignAndInstall.ps1; Invoke-SignPackage $appxPackageDir\GITServices-$platform.msix }"
222+
powershell -command "& { . build\scripts\CertSignAndInstall.ps1; Invoke-SignPackage $appxPackageDir\GitHubExtension-$platform.msix }"
223223
"@ -ForegroundColor GREEN
224224
}
225225
}

build/scripts/CertSignAndInstall.ps1

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ function Invoke-SignPackage([string]$Path) {
99
return
1010
}
1111

12-
$certName = "Microsoft.GITServices"
12+
$certName = "Microsoft.GitHubExtension"
1313
$cert = Get-ChildItem 'Cert:\CurrentUser\My' | Where-Object {$_.FriendlyName -match $certName} | Select-Object -First 1
1414

1515
if ($cert) {
@@ -31,14 +31,14 @@ function Invoke-SignPackage([string]$Path) {
3131
SignTool sign /fd SHA256 /sha1 $($cert.Thumbprint) $Path
3232

3333
if (-not(Test-Path Cert:\LocalMachine\TrustedPeople\$($cert.Thumbprint))) {
34-
Export-Certificate -Cert $cert -FilePath "$($PSScriptRoot)\Microsoft.GITServices.cer" -Type CERT
35-
Import-Certificate -FilePath "$($PSScriptRoot)\Microsoft.GITServices.cer" -CertStoreLocation Cert:\LocalMachine\TrustedPeople
36-
Remove-Item -Path "$($PSScriptRoot)\Microsoft.GITServices.cer"
34+
Export-Certificate -Cert $cert -FilePath "$($PSScriptRoot)\$($certName).cer" -Type CERT
35+
Import-Certificate -FilePath "$($PSScriptRoot)\$($certName).cer" -CertStoreLocation Cert:\LocalMachine\TrustedPeople
36+
Remove-Item -Path "$($PSScriptRoot)\$($certName).cer"
3737
(Get-ChildItem Cert:\LocalMachine\TrustedPeople\$($cert.Thumbprint)).FriendlyName = $certName
3838
}
3939
}
4040

41-
function Remove-GITServiceseCertificates() {
42-
Get-ChildItem 'Cert:\CurrentUser\My' | Where-Object {$_.FriendlyName -match 'Microsoft.GITServices'} | Remove-Item
43-
Get-ChildItem 'Cert:\LocalMachine\TrustedPeople' | Where-Object {$_.FriendlyName -match 'Microsoft.GITServices'} | Remove-Item
41+
function Remove-GitHubExtensionCertificates() {
42+
Get-ChildItem 'Cert:\CurrentUser\My' | Where-Object {$_.FriendlyName -match 'Microsoft.GitHubExtension'} | Remove-Item
43+
Get-ChildItem 'Cert:\LocalMachine\TrustedPeople' | Where-Object {$_.FriendlyName -match 'Microsoft.GitHubExtension'} | Remove-Item
4444
}

build/scripts/CreateBuildInfo.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Param(
55
)
66

77
$Major = "0"
8-
$Minor = "5"
8+
$Minor = "6"
99
$Patch = "99" # default to 99 for local builds
1010

1111
$versionSplit = $Version.Split(".");
-970 Bytes
Binary file not shown.

build/scripts/Test.ps1

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Syntax:
1616
Test.cmd [options]
1717
1818
Description:
19-
Runs GITServices tests.
19+
Runs GitHubExtension tests.
2020
2121
Options:
2222
@@ -68,25 +68,25 @@ Try {
6868
foreach ($configuration in $env:Build_Configuration.Split(",")) {
6969
# TODO: UI tests are currently disabled in pipeline until signing is solved
7070
if (-not($IsAzurePipelineBuild)) {
71-
$Package = Get-AppPackage "GITServices"
71+
$Package = Get-AppPackage "GitHubExtension"
7272
if ($Package) {
73-
Write-Host "Uninstalling old GITServices"
73+
Write-Host "Uninstalling old GitHubExtension"
7474
Remove-AppPackage -Package $Package.PackageFullName
7575
}
76-
Write-Host "Installing GITServices"
77-
Add-AppPackage "AppxPackages\$platform\$configuration\GITServices.msix"
76+
Write-Host "Installing GitHubExtension"
77+
Add-AppPackage "AppxPackages\$platform\$configuration\GitHubExtension.msix"
7878
}
7979

8080
$vstestArgs = @(
8181
("/Platform:$platform"),
82-
("/Logger:trx;LogFileName=GitHubPlugin.Test-$platform-$configuration.trx"),
82+
("/Logger:trx;LogFileName=GitHubExtension.Test-$platform-$configuration.trx"),
8383
("/TestCaseFilter:""TestCategory=Unit"""),
84-
("BuildOutput\$configuration\$platform\GitHubPlugin.Test\GitHubPlugin.Test.dll")
84+
("BuildOutput\$configuration\$platform\GitHubExtension.Test\GitHubExtension.Test.dll")
8585
)
8686
$winAppTestArgs = @(
8787
("/Platform:$platform"),
88-
("/Logger:trx;LogFileName=GITServices.UITest-$platform-$configuration.trx"),
89-
("BuildOutput\$configuration\$platform\GITServices.UITest\GITServices.UITest.dll")
88+
("/Logger:trx;LogFileName=GitHubExtension.UITest-$platform-$configuration.trx"),
89+
("BuildOutput\$configuration\$platform\GitHubExtension.UITest\GitHubExtension.UITest.dll")
9090
)
9191

9292
& $vstestPath $vstestArgs

build/scripts/Unstub.ps1

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

33
Remove-Item "$($PSScriptRoot)\..\..\src\Telemetry\TelemetryEventSource.cs"
44

5-
$projFile = "$($PSScriptRoot)\..\..\src\Telemetry\GITServices.Telemetry.csproj"
5+
$projFile = "$($PSScriptRoot)\..\..\src\Telemetry\GitHubExtension.Telemetry.csproj"
66
$projFileContent = Get-Content $projFile -Encoding UTF8 -Raw
77

88
if ($projFileContent.Contains('Microsoft.Telemetry.Inbox.Managed')) {

docs/readme.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,16 @@ Once you've discussed your proposed feature/fix/etc. with a team member, and you
3636
- if it's not a code fix that effects the end user, the issue can be closed (for example a fix in the build or a code refactoring and so on).
3737
-->
3838

39-
## Compiling GITServices
39+
## Compiling GitHubExtension
4040

4141
### Compiling Source Code
4242

4343
There are two ways to compile locally.
4444

4545
- Open the Developer Command Prompt for Visual Studio
46-
- Run `Build` from GITServices's root directory. You can pass in a list of platforms/configurations
47-
- The GITServices MSIX will be in your repo under `AppxPackages\x64\debug`
46+
- Run `Build` from GitHubExtension's root directory. You can pass in a list of platforms/configurations
47+
- The GitHubExtension MSIX will be in your repo under `AppxPackages\x64\debug`
4848

4949
Alternatively
5050

51-
- Open `GITServices.sln` in Visual Studio, in the `Solutions Configuration` drop-down menu select `Release` or `Debug`, from the `Build` menu choose `Build Solution`.
51+
- Open `GitHubExtension.sln` in Visual Studio, in the `Solutions Configuration` drop-down menu select `Release` or `Debug`, from the `Build` menu choose `Build Solution`.

src/GithubPlugin/Client/Exceptions.cs renamed to src/GitHubExtension/Client/Exceptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft Corporation and Contributors
22
// Licensed under the MIT license.
33

4-
namespace GitHubPlugin.Client;
4+
namespace GitHubExtension.Client;
55
public class InvalidUrlException : Exception
66
{
77
public InvalidUrlException()

src/GithubPlugin/Client/GithubClientProvider.cs renamed to src/GitHubExtension/Client/GithubClientProvider.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
// Licensed under the MIT license.
33

44
using DevHome.Logging.Helpers;
5-
using GitHubPlugin.DeveloperId;
5+
using GitHubExtension.DeveloperId;
66
using Microsoft.Windows.DevHome.SDK;
77
using Octokit;
88

9-
namespace GitHubPlugin.Client;
9+
namespace GitHubExtension.Client;
1010

1111
public class GitHubClientProvider
1212
{

src/GithubPlugin/Client/Validation.cs renamed to src/GitHubExtension/Client/Validation.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Copyright (c) Microsoft Corporation and Contributors
22
// Licensed under the MIT license.
3-
using GitHubPlugin.DataModel;
3+
using GitHubExtension.DataModel;
44

5-
namespace GitHubPlugin.Client;
5+
namespace GitHubExtension.Client;
66

77
// Validation layer to help parsing GitHub URL.
88
public static class Validation

src/GithubPlugin/Configuration/DeveloperOAuthConfiguration.cs renamed to src/GitHubExtension/Configuration/DeveloperOAuthConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft Corporation and Contributors
22
// Licensed under the MIT license.
33

4-
namespace GitHubPlugin;
4+
namespace GitHubExtension;
55
internal static class DeveloperOAuthConfiguration
66
{
77
//// Follow this link https://docs.github.com/en/developers/apps/building-oauth-apps/creating-an-oauth-app

src/GithubPlugin/Configuration/OAuthConfiguration.cs renamed to src/GitHubExtension/Configuration/OAuthConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft Corporation and Contributors
22
// Licensed under the MIT license.
33

4-
namespace GitHubPlugin;
4+
namespace GitHubExtension;
55
internal static class OauthConfiguration
66
{
77
// This redirect url has to be configured into the OAuth app. This package has "devhome://"

src/GithubPlugin/Constants.cs renamed to src/GitHubExtension/Constants.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft Corporation and Contributors
22
// Licensed under the MIT license.
33

4-
namespace GitHubPlugin;
4+
namespace GitHubExtension;
55
internal class Constants
66
{
77
#pragma warning disable SA1310 // Field names should not contain underscore

src/GithubPlugin/DataManager/DataManagerUpdateEventArgs.cs renamed to src/GitHubExtension/DataManager/DataManagerUpdateEventArgs.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft Corporation and Contributors
22
// Licensed under the MIT license.
33

4-
namespace GitHubPlugin.DataManager;
4+
namespace GitHubExtension.DataManager;
55

66
public delegate void DataManagerUpdateEventHandler(object? source, DataManagerUpdateEventArgs e);
77

src/GithubPlugin/DataManager/DataStoreOperationParameters.cs renamed to src/GitHubExtension/DataManager/DataStoreOperationParameters.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
// Copyright (c) Microsoft Corporation and Contributors
22
// Licensed under the MIT license.
33

4-
using GitHubPlugin.DeveloperId;
4+
using GitHubExtension.DeveloperId;
55
using Microsoft.Windows.DevHome.SDK;
66

7-
namespace GitHubPlugin;
7+
namespace GitHubExtension;
88
public class DataStoreOperationParameters
99
{
1010
// parameters for updating the data store.

src/GithubPlugin/DataManager/DataUpdater.cs renamed to src/GitHubExtension/DataManager/DataUpdater.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft Corporation and Contributors
22
// Licensed under the MIT license.
33

4-
namespace GitHubPlugin.DataManager;
4+
namespace GitHubExtension.DataManager;
55
public class DataUpdater : IDisposable
66
{
77
// This is the default interval the timer will run. It is not the interval that we necessarily do work.

src/GithubPlugin/DataManager/Enums/SearchCategory.cs renamed to src/GitHubExtension/DataManager/Enums/SearchCategory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft Corporation and Contributors
22
// Licensed under the MIT license.
33

4-
namespace GitHubPlugin.DataManager;
4+
namespace GitHubExtension.DataManager;
55

66
public enum SearchCategory
77
{

src/GithubPlugin/DataManager/Exceptions.cs renamed to src/GitHubExtension/DataManager/Exceptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft Corporation and Contributors
22
// Licensed under the MIT license.
33

4-
namespace GitHubPlugin;
4+
namespace GitHubExtension;
55
public class RepositoryNotFoundException : ApplicationException
66
{
77
public RepositoryNotFoundException()

src/GithubPlugin/DataManager/GitHubDataManager.cs renamed to src/GitHubExtension/DataManager/GitHubDataManager.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
// Copyright (c) Microsoft Corporation and Contributors
22
// Licensed under the MIT license.
33

4-
using GitHubPlugin.Client;
5-
using GitHubPlugin.DataManager;
6-
using GitHubPlugin.DataModel;
7-
using GitHubPlugin.Helpers;
4+
using GitHubExtension.Client;
5+
using GitHubExtension.DataManager;
6+
using GitHubExtension.DataModel;
7+
using GitHubExtension.Helpers;
88
using Windows.Storage;
99

10-
namespace GitHubPlugin;
10+
namespace GitHubExtension;
1111
public partial class GitHubDataManager : IGitHubDataManager, IDisposable
1212
{
1313
public static event DataManagerUpdateEventHandler? OnUpdate;

src/GithubPlugin/DataManager/GitHubDataManagerUpdate.cs renamed to src/GitHubExtension/DataManager/GitHubDataManagerUpdate.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
// Copyright (c) Microsoft Corporation and Contributors
22
// Licensed under the MIT license.
33

4-
using GitHubPlugin.DataManager;
5-
using GitHubPlugin.DataModel;
4+
using GitHubExtension.DataManager;
5+
using GitHubExtension.DataModel;
66

7-
namespace GitHubPlugin;
7+
namespace GitHubExtension;
88
public partial class GitHubDataManager
99
{
1010
// This is how frequently the DataStore update occurs.

0 commit comments

Comments
 (0)