-
Notifications
You must be signed in to change notification settings - Fork 38
/
CreateDebugWebClientApi.ps1
34 lines (32 loc) · 1.08 KB
/
CreateDebugWebClientApi.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Set-Location $PSScriptRoot
#Make sure CodeGen.json is saved in format ANSI or UTF-8 without BOM, since ASP.NET Core 2.0 Web API will fail to deserialize POST Body that contains BOM.
#Step 1: Launch Website
$path = "$PSScriptRoot/DebugWeb"
$procArgs = @{
FilePath = "dotnet.exe"
ArgumentList = "run $path/DebugWeb.csproj --no-build"
WorkingDirectory = $path
PassThru = $true
}
$process = Start-Process @procArgs
#Step 2: Run CodeGen
$restArgs = @{
Uri = 'http://localhost:5000/api/codegen'
Method = 'Post'
InFile = "$PSScriptRoot/DebugWeb/CodeGen.json"
ContentType = 'application/json'
}
try {
$result = Invoke-RestMethod @restArgs
Write-Output $result
}
catch {
Write-Output $_.Exception.Response.StatusCode
$response = $_.Exception.Response.GetResponseStream()
$reader = New-Object System.IO.StreamReader($response)
$reader.BaseStream.Position = 0
$reader.DiscardBufferedData()
$responseBody = $reader.ReadToEnd()
Write-Output $responseBody
}
Stop-Process $process