Skip to content

Commit c8f0f59

Browse files
committed
Change repository name
1 parent f1e69dc commit c8f0f59

25 files changed

+761
-871
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,24 +23,24 @@ jobs:
2323
run: dotnet restore
2424

2525
- name: Build Debug (x64)
26-
run: dotnet build dokan-mirror/dokan-mirror.csproj -c Debug --no-restore -p:Platform=x64
26+
run: dotnet build dokan-mirror-manager/dokan-mirror-manager.csproj -c Debug --no-restore -p:Platform=x64
2727

2828
- name: Build Release (x64)
29-
run: dotnet build dokan-mirror/dokan-mirror.csproj -c Release --no-restore -p:Platform=x64
29+
run: dotnet build dokan-mirror-manager/dokan-mirror-manager.csproj -c Release --no-restore -p:Platform=x64
3030

3131
- name: List build outputs
3232
run: |
3333
echo "Debug build (x64):"
34-
if (Test-Path "dokan-mirror\bin\x64\Debug\net8.0-windows10.0.17763.0\") {
35-
dir dokan-mirror\bin\x64\Debug\net8.0-windows10.0.17763.0\
34+
if (Test-Path "dokan-mirror-manager\bin\x64\Debug\net8.0-windows10.0.17763.0\") {
35+
dir dokan-mirror-manager\bin\x64\Debug\net8.0-windows10.0.17763.0\
3636
} else {
37-
dir dokan-mirror\bin\Debug\net8.0-windows10.0.17763.0\
37+
dir dokan-mirror-manager\bin\Debug\net8.0-windows10.0.17763.0\
3838
}
3939
echo ""
4040
echo "Release build (x64):"
41-
if (Test-Path "dokan-mirror\bin\x64\Release\net8.0-windows10.0.17763.0\") {
42-
dir dokan-mirror\bin\x64\Release\net8.0-windows10.0.17763.0\
41+
if (Test-Path "dokan-mirror-manager\bin\x64\Release\net8.0-windows10.0.17763.0\") {
42+
dir dokan-mirror-manager\bin\x64\Release\net8.0-windows10.0.17763.0\
4343
} else {
44-
dir dokan-mirror\bin\Release\net8.0-windows10.0.17763.0\
44+
dir dokan-mirror-manager\bin\Release\net8.0-windows10.0.17763.0\
4545
}
4646
shell: pwsh

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ jobs:
2222
run: dotnet restore
2323

2424
- name: Build Release (x64)
25-
run: dotnet build dokan-mirror/dokan-mirror.csproj -c Release --no-restore -p:Platform=x64
25+
run: dotnet build dokan-mirror-manager/dokan-mirror-manager.csproj -c Release --no-restore -p:Platform=x64
2626

2727
- name: Publish Application (x64)
28-
run: dotnet publish dokan-mirror/dokan-mirror.csproj -c Release -r win-x64 --self-contained false -p:PublishSingleFile=false -p:Platform=x64 -o publish-x64
28+
run: dotnet publish dokan-mirror-manager/dokan-mirror-manager.csproj -c Release -r win-x64 --self-contained false -p:PublishSingleFile=false -p:Platform=x64 -o publish-x64
2929

3030
- name: Create Release Archive (x64)
3131
run: |
3232
cd publish-x64
33-
Compress-Archive -Path * -DestinationPath ../dokan-mirror-${{ github.ref_name }}-win-x64.zip
33+
Compress-Archive -Path * -DestinationPath ../dokan-mirror-manager-${{ github.ref_name }}-win-x64.zip
3434
shell: pwsh
3535

3636
- name: Extract version from tag
@@ -41,17 +41,17 @@ jobs:
4141
- name: Create Release
4242
uses: softprops/action-gh-release@v1
4343
with:
44-
files: dokan-mirror-${{ github.ref_name }}-win-x64.zip
44+
files: dokan-mirror-manager-${{ github.ref_name }}-win-x64.zip
4545
body: |
4646
## 🚀 Dokan Mirror Manager ${{ github.ref_name }}
4747
4848
### 📥 Installation
4949
50-
1. Download `dokan-mirror-${{ github.ref_name }}-win-x64.zip`
50+
1. Download `dokan-mirror-manager-${{ github.ref_name }}-win-x64.zip`
5151
2. Install [Dokan Driver](https://github.com/dokan-dev/dokany/releases) if not already installed
5252
3. Install [.NET 8.0 Runtime](https://dotnet.microsoft.com/download/dotnet/8.0) if not already installed
5353
4. Extract the archive
54-
5. Run `dokan-mirror.exe` as Administrator
54+
5. Run `dokan-mirror-manager.exe` as Administrator
5555
5656
### 📋 Requirements
5757

0 commit comments

Comments
 (0)