Skip to content

Commit 22ed477

Browse files
committed
chore: update src/c#/ paths to src/ to match GeneralUpdate refactor
Sync path references after GeneralUpdate repo flattened src/c#/ -> src/: - Run.ps1: auto-detect path and example - Releaselog docs (en, zh-Hans, en translated)
1 parent 398333e commit 22ed477

4 files changed

Lines changed: 27 additions & 27 deletions

File tree

src/Run.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
.EXAMPLE
1616
.\Run.ps1 # Normal use
1717
.\Run.ps1 -BuildLibs # Rebuild DLLs after component code changes
18-
.\Run.ps1 -BuildLibs -GeneralUpdateSrc "D:\repos\GeneralUpdate\src\c#"
18+
.\Run.ps1 -BuildLibs -GeneralUpdateSrc "D:\repos\GeneralUpdate\src"
1919
#>
2020

2121
param(
@@ -32,10 +32,10 @@ if ($BuildLibs) {
3232
Write-Host "[BuildLibs] Building components and copying DLLs..." -ForegroundColor Cyan
3333

3434
# Auto-detect GeneralUpdate source root if not provided.
35-
# Default: sibling repo at ../GeneralUpdate/src/c# relative to the Samples repo root.
35+
# Default: sibling repo at ../GeneralUpdate/src relative to the Samples repo root.
3636
if (-not $GeneralUpdateSrc) {
3737
$samplesRepoRoot = Resolve-Path (Join-Path $PSScriptRoot "..")
38-
$candidate = Join-Path $samplesRepoRoot "..\GeneralUpdate\src\c#"
38+
$candidate = Join-Path $samplesRepoRoot "..\GeneralUpdate\src"
3939
if (Test-Path $candidate) {
4040
$GeneralUpdateSrc = $candidate
4141
}

website/docs/releaselog/GeneralUpdateReleaselog.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -574,16 +574,16 @@ Release Notes
574574
**[7] Test Cases and Example Code**
575575

576576
Example Code:
577-
- src/c#/GeneralUpdate.Api/Program.cs
578-
- src/c#/GeneralUpdate.Client/MainPage.xaml.cs
579-
- src/c#/GeneralUpdate.Upgrad/Program.cs
577+
- src/GeneralUpdate.Api/Program.cs
578+
- src/GeneralUpdate.Client/MainPage.xaml.cs
579+
- src/GeneralUpdate.Upgrad/Program.cs
580580

581581
Test Cases (still in progress):
582-
- src/c#/TestClientCore/UnitTest1.cs
583-
- src/c#/TestDifferential/UnitTest1.cs
584-
- src/c#/TestMD5/UnitTest1.cs
585-
- src/c#/TestService/Program.cs
586-
- src/c#/TestZIP/UnitTest1.cs
582+
- src/TestClientCore/UnitTest1.cs
583+
- src/TestDifferential/UnitTest1.cs
584+
- src/TestMD5/UnitTest1.cs
585+
- src/TestService/Program.cs
586+
- src/TestZIP/UnitTest1.cs
587587

588588

589589

website/i18n/en/docusaurus-plugin-content-docs/current/releaselog/GeneralUpdateReleaselog.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -574,16 +574,16 @@ Release Notes
574574
**[7] Test Cases and Example Code**
575575

576576
Example Code:
577-
- src/c#/GeneralUpdate.Api/Program.cs
578-
- src/c#/GeneralUpdate.Client/MainPage.xaml.cs
579-
- src/c#/GeneralUpdate.Upgrad/Program.cs
577+
- src/GeneralUpdate.Api/Program.cs
578+
- src/GeneralUpdate.Client/MainPage.xaml.cs
579+
- src/GeneralUpdate.Upgrad/Program.cs
580580

581581
Test Cases (still in progress):
582-
- src/c#/TestClientCore/UnitTest1.cs
583-
- src/c#/TestDifferential/UnitTest1.cs
584-
- src/c#/TestMD5/UnitTest1.cs
585-
- src/c#/TestService/Program.cs
586-
- src/c#/TestZIP/UnitTest1.cs
582+
- src/TestClientCore/UnitTest1.cs
583+
- src/TestDifferential/UnitTest1.cs
584+
- src/TestMD5/UnitTest1.cs
585+
- src/TestService/Program.cs
586+
- src/TestZIP/UnitTest1.cs
587587

588588

589589

website/i18n/zh-Hans/docusaurus-plugin-content-docs/current/releaselog/GeneralUpdateReleaselog.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -574,16 +574,16 @@ Release Notes
574574
**[7] Test Cases and Example Code**
575575

576576
Example Code:
577-
- src/c#/GeneralUpdate.Api/Program.cs
578-
- src/c#/GeneralUpdate.Client/MainPage.xaml.cs
579-
- src/c#/GeneralUpdate.Upgrad/Program.cs
577+
- src/GeneralUpdate.Api/Program.cs
578+
- src/GeneralUpdate.Client/MainPage.xaml.cs
579+
- src/GeneralUpdate.Upgrad/Program.cs
580580

581581
Test Cases (still in progress):
582-
- src/c#/TestClientCore/UnitTest1.cs
583-
- src/c#/TestDifferential/UnitTest1.cs
584-
- src/c#/TestMD5/UnitTest1.cs
585-
- src/c#/TestService/Program.cs
586-
- src/c#/TestZIP/UnitTest1.cs
582+
- src/TestClientCore/UnitTest1.cs
583+
- src/TestDifferential/UnitTest1.cs
584+
- src/TestMD5/UnitTest1.cs
585+
- src/TestService/Program.cs
586+
- src/TestZIP/UnitTest1.cs
587587

588588

589589

0 commit comments

Comments
 (0)