14 lines
410 B
PowerShell
14 lines
410 B
PowerShell
$ErrorActionPreference = 'Stop'
|
|
$env:ASPNETCORE_ENVIRONMENT = 'Development'
|
|
$env:ASPNETCORE_URLS = 'http://localhost:5256'
|
|
|
|
$workspaceRoot = Split-Path -Parent $PSScriptRoot
|
|
$publishRoot = Join-Path $workspaceRoot '.artifacts/publish'
|
|
$process = Start-Process `
|
|
-FilePath (Join-Path $publishRoot 'Jiaowu.Api.exe') `
|
|
-WorkingDirectory $publishRoot `
|
|
-WindowStyle Hidden `
|
|
-PassThru
|
|
|
|
$process.Id
|