Update Ikar server and Android client

This commit is contained in:
Курнат Андрей
2026-05-17 22:22:43 +03:00
commit 22e19cdfdb
258 changed files with 51047 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
$ErrorActionPreference = 'Stop'
Set-Location (Join-Path $PSScriptRoot '..')
$publishDir = '.\src\Ikar.Client\bin\Release\net10.0-android\publish'
if (Test-Path $publishDir) {
Remove-Item $publishDir -Recurse -Force
}
dotnet publish .\src\Ikar.Client\Ikar.Client.csproj -f net10.0-android -c Release -p:AndroidPackageFormat=apk
Get-ChildItem $publishDir | Where-Object { $_.Name -like 'com.seven.massenger*' } | Remove-Item -Force