cf96c56bed
本次提交完成了多项清理与规范工作: 1. 移除默认管理员硬编码配置与云同步相关代码 2. 简化前端与MAUI端的配置,关闭静态资源托管以外的冗余功能 3. 清理.gitignore与协调目录,移除临时文件与冗余规则 4. 统一项目命名规范,修正包名与版本号 5. 重构后端数据模型,移除ABP审计字段与云同步相关逻辑 6. 简化WebView配置与系统栏样式,移除不必要的平台检测代码 7. 更新文档与规则文件,完善项目规范与版本记录
63 lines
2.0 KiB
PowerShell
63 lines
2.0 KiB
PowerShell
$ErrorActionPreference = "Stop"
|
|
|
|
$ScriptPath = $PSScriptRoot
|
|
$ProjectDir = Join-Path $ScriptPath "src\Hua.Todo.Maui"
|
|
$ProjectFile = Join-Path $ProjectDir "Hua.Todo.Maui.csproj"
|
|
$SetupScript = Join-Path $ProjectDir "setup.iss"
|
|
|
|
# Read version from project file
|
|
$currentVersion = "1.0.0"
|
|
[xml]$csproj = Get-Content $ProjectFile -Raw
|
|
$versionNode = $csproj.SelectSingleNode("//Version")
|
|
if ($null -ne $versionNode) {
|
|
$currentVersion = $versionNode.InnerText
|
|
} else {
|
|
$versionNode = $csproj.SelectSingleNode("//ApplicationDisplayVersion")
|
|
if ($null -ne $versionNode) {
|
|
$currentVersion = $versionNode.InnerText
|
|
}
|
|
}
|
|
|
|
# Update setup script version with current version before build
|
|
if (Test-Path $SetupScript) {
|
|
$issContent = Get-Content $SetupScript
|
|
$versionFound = $false
|
|
for ($i = 0; $i -lt $issContent.Count; $i++) {
|
|
if ($issContent[$i] -like '#define MyAppVersion *') {
|
|
$issContent[$i] = '#define MyAppVersion "' + $currentVersion + '"'
|
|
$versionFound = $true
|
|
break
|
|
}
|
|
}
|
|
if ($versionFound) {
|
|
Set-Content $SetupScript -Value $issContent
|
|
}
|
|
}
|
|
|
|
Write-Host "Building Hua.Todo.Maui (Release)..." -ForegroundColor Cyan
|
|
dotnet publish $ProjectFile -f net10.0-windows10.0.19041.0 -c Release --self-contained false
|
|
if ($LASTEXITCODE -ne 0) {
|
|
Write-Error "MAUI build failed"
|
|
exit 1
|
|
}
|
|
|
|
$ISCC = "${env:ProgramFiles(x86)}\Inno Setup 6\ISCC.exe"
|
|
if (Test-Path $ISCC) {
|
|
& $ISCC $SetupScript
|
|
if ($LASTEXITCODE -eq 0) {
|
|
Write-Host "Setup package created successfully!" -ForegroundColor Green
|
|
} else {
|
|
Write-Error "Packaging failed"
|
|
}
|
|
} else {
|
|
Write-Error "Inno Setup compiler not found"
|
|
}
|
|
|
|
$versionParts = $currentVersion.Split(".")
|
|
$patch = [int]$versionParts[2] + 1
|
|
$newVersion = $versionParts[0] + "." + $versionParts[1] + "." + $patch
|
|
|
|
$content = Get-Content $ProjectFile -Raw
|
|
$content = $content -replace "<Version>.*</Version>", "<Version>$newVersion</Version>"
|
|
Set-Content $ProjectFile -Value $content
|