mirror of
https://github.com/bolucat/Archive.git
synced 2025-09-26 20:21:35 +08:00
107 lines
3.1 KiB
PowerShell
107 lines
3.1 KiB
PowerShell
param (
|
|
[Parameter()]
|
|
[ValidateSet('Debug', 'Release')]
|
|
[string]
|
|
$Configuration = 'Release',
|
|
|
|
[Parameter()]
|
|
[ValidateNotNullOrEmpty()]
|
|
[string]
|
|
$OutputPath = 'release',
|
|
|
|
[Parameter()]
|
|
[bool]
|
|
$SelfContained = $True,
|
|
|
|
[Parameter()]
|
|
[bool]
|
|
$PublishSingleFile = $True,
|
|
|
|
[Parameter()]
|
|
[bool]
|
|
$PublishReadyToRun = $False
|
|
)
|
|
|
|
Push-Location (Split-Path $MyInvocation.MyCommand.Path -Parent)
|
|
|
|
if ( Test-Path -Path $OutputPath ) {
|
|
rm -Recurse -Force $OutputPath
|
|
}
|
|
New-Item -ItemType Directory -Name $OutputPath | Out-Null
|
|
|
|
Push-Location $OutputPath
|
|
New-Item -ItemType Directory -Name 'bin' | Out-Null
|
|
cp -Recurse -Force '..\Storage\i18n' '.' | Out-Null
|
|
cp -Recurse -Force '..\Storage\mode' '.' | Out-Null
|
|
cp -Recurse -Force '..\Storage\stun.txt' 'bin' | Out-Null
|
|
cp -Recurse -Force '..\Storage\nfdriver.sys' 'bin' | Out-Null
|
|
cp -Recurse -Force '..\Storage\aiodns.conf' 'bin' | Out-Null
|
|
Invoke-WebRequest -Uri 'https://raw.githubusercontent.com/Loyalsoldier/geoip/release/Country.mmdb' -OutFile 'bin\GeoLite2-Country.mmdb'
|
|
#cp -Recurse -Force '..\Storage\GeoLite2-Country.mmdb' 'bin' | Out-Null
|
|
cp -Recurse -Force '..\Storage\tun2socks.bin' 'bin' | Out-Null
|
|
cp -Recurse -Force '..\Storage\README.md' 'bin' | Out-Null
|
|
Pop-Location
|
|
|
|
if ( -Not ( Test-Path '.\Other\release' ) ) {
|
|
.\Other\build.ps1
|
|
if ( -Not $? ) {
|
|
exit $lastExitCode
|
|
}
|
|
}
|
|
cp -Force '.\Other\release\*.bin' "$OutputPath\bin"
|
|
cp -Force '.\Other\release\*.dll' "$OutputPath\bin"
|
|
cp -Force '.\Other\release\*.exe' "$OutputPath\bin"
|
|
|
|
if ( -Not ( Test-Path ".\Netch\bin\$Configuration" ) ) {
|
|
Write-Host
|
|
Write-Host 'Building Netch'
|
|
|
|
dotnet publish `
|
|
-c $Configuration `
|
|
-r 'win-x64' `
|
|
-p:Platform='x64' `
|
|
-p:SelfContained=$SelfContained `
|
|
-p:PublishTrimmed=$PublishReadyToRun `
|
|
-p:PublishSingleFile=$PublishSingleFile `
|
|
-p:PublishReadyToRun=$PublishReadyToRun `
|
|
-p:PublishReadyToRunShowWarnings=$PublishReadyToRun `
|
|
-p:IncludeNativeLibrariesForSelfExtract=$SelfContained `
|
|
-o ".\Netch\bin\$Configuration" `
|
|
'.\Netch\Netch.csproj'
|
|
if ( -Not $? ) { exit $lastExitCode }
|
|
}
|
|
cp -Force ".\Netch\bin\$Configuration\Netch.exe" $OutputPath
|
|
|
|
if ( -Not ( Test-Path ".\Redirector\bin\$Configuration" ) ) {
|
|
Write-Host
|
|
Write-Host 'Building Redirector'
|
|
|
|
msbuild `
|
|
-property:Configuration=$Configuration `
|
|
-property:Platform=x64 `
|
|
'.\Redirector\Redirector.vcxproj'
|
|
if ( -Not $? ) { exit $lastExitCode }
|
|
}
|
|
cp -Force ".\Redirector\bin\$Configuration\nfapi.dll" "$OutputPath\bin"
|
|
cp -Force ".\Redirector\bin\$Configuration\Redirector.bin" "$OutputPath\bin"
|
|
|
|
if ( -Not ( Test-Path ".\RouteHelper\bin\$Configuration" ) ) {
|
|
Write-Host
|
|
Write-Host 'Building RouteHelper'
|
|
|
|
msbuild `
|
|
-property:Configuration=$Configuration `
|
|
-property:Platform=x64 `
|
|
'.\RouteHelper\RouteHelper.vcxproj'
|
|
if ( -Not $? ) { exit $lastExitCode }
|
|
}
|
|
cp -Force ".\RouteHelper\bin\$Configuration\RouteHelper.bin" "$OutputPath\bin"
|
|
|
|
if ( $Configuration.Equals('Release') ) {
|
|
rm -Force "$OutputPath\*.pdb"
|
|
rm -Force "$OutputPath\*.xml"
|
|
}
|
|
|
|
Pop-Location
|
|
exit 0
|