Skip to content

Commit 16c38ec

Browse files
committed
feat: final
1 parent 34a5f44 commit 16c38ec

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,7 @@
3333

3434
---
3535

36-
该项目处于早期开发阶段,存在大量Bug
37-
38-
The project is in an early stage of development and has a lot of bugs
36+
该项目现已依赖[PipManager.Core](https://github.com/Pip-Manager/PipManager.Core)并逐渐迁移
3937

4038
---
4139

build.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
param(
22
[string] $Architecture = "x64",
3-
[string] $Version = "0.0.4.0"
3+
[string] $Version = "0.1.0.0"
44
)
55

66
$ErrorActionPreference = "Stop";
77

88
Write-Output "Start building singleWithRuntime...";
99

10-
dotnet publish src/PipManager/PipManager.csproj -c Release -r "win-$Architecture" -o "build/$Version/singleWithRuntime" -p:Platform=$Architecture -p:PublishReadyToRun=true -p:EnableCompressionInSingleFile=true -p:PublishSingleFile=true -p:SelfContained=true -p:AssemblyVersion=$Version -p:Configuration=Release;
10+
dotnet publish src/PipManager.Windows.csproj -c Release -r "win-$Architecture" -o "build/$Version/singleWithRuntime" -p:Platform=$Architecture -p:PublishReadyToRun=true -p:EnableCompressionInSingleFile=true -p:PublishSingleFile=true -p:SelfContained=true -p:AssemblyVersion=$Version -p:Configuration=Release;
1111

1212
Rename-Item -Path "build/$Version/singleWithRuntime/PipManager.exe" -NewName "PipManager_withRuntime.exe"
1313

1414
Write-Output "Start building singleWithoutRuntime...";
1515

16-
dotnet publish src/PipManager/PipManager.csproj -c Release -r "win-$Architecture" -o "build/$Version/singleWithoutRuntime" -p:Platform=$Architecture -p:PublishReadyToRun=false -p:EnableCompressionInSingleFile=false -p:PublishSingleFile=true -p:SelfContained=false -p:AssemblyVersion=$Version -p:Configuration=Release;
16+
dotnet publish src/PipManager.Windows.csproj -c Release -r "win-$Architecture" -o "build/$Version/singleWithoutRuntime" -p:Platform=$Architecture -p:PublishReadyToRun=false -p:EnableCompressionInSingleFile=false -p:PublishSingleFile=true -p:SelfContained=false -p:AssemblyVersion=$Version -p:Configuration=Release;
1717

1818
Write-Output "Build Finished";
1919

src/PipManager.Windows.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@
101101
</ItemGroup>
102102

103103
<ItemGroup>
104-
<ProjectReference Include="..\..\PipManager.Core\PipManager.Core.csproj" />
105104
<ProjectReference Include="..\..\PipManager.Core\src\PipManager.Core.csproj" />
106105
</ItemGroup>
107106
</Project>

0 commit comments

Comments
 (0)