-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCreateWebApiClientApi3.ps1
33 lines (30 loc) · 1.02 KB
/
CreateWebApiClientApi3.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
cd $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.
$path = "$PSScriptRoot/Core3WebApi"
$procArgs = @{
FilePath = "$path/bin/Debug/net9.0/Core3WebApi.exe"
WorkingDirectory = $path
PassThru = $true
}
$process = Start-Process @procArgs
#Step 2: Run CodeGen
$restArgs = @{
Uri = 'http://localhost:5000/api/codegen'
Method = 'Post'
InFile = "$PSScriptRoot/Core3Webapi/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