File tree Expand file tree Collapse file tree 4 files changed +36
-8
lines changed
src/Microsoft.OpenApi.Hidi Expand file tree Collapse file tree 4 files changed +36
-8
lines changed Original file line number Diff line number Diff line change 1010 "request" : " launch" ,
1111 "preLaunchTask" : " build" ,
1212 // If you have changed target frameworks, make sure to update the program path.
13- "program" : " ${workspaceFolder}/src/Microsoft.OpenApi.Hidi/bin/Debug/netcoreapp3.1 /Microsoft.OpenApi.Hidi.dll" ,
13+ "program" : " ${workspaceFolder}/src/Microsoft.OpenApi.Hidi/bin/Debug/net6.0 /Microsoft.OpenApi.Hidi.dll" ,
1414 "args" : [],
1515 "cwd" : " ${workspaceFolder}/src/Microsoft.OpenApi.Hidi" ,
1616 // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
Original file line number Diff line number Diff line change 55 "tasks" : [
66 {
77 "label" : " build" ,
8- "type" : " shell" ,
9- "command" : " msbuild" ,
8+ "command" : " dotnet" ,
9+ "type" : " process" ,
10+ "group" : " build" ,
11+ "args" : [
12+ " build" ,
13+ " ${workspaceFolder}/src/Microsoft.OpenApi.Hidi/Microsoft.OpenApi.Hidi.csproj" ,
14+ " /property:GenerateFullPaths=true" ,
15+ " /consoleloggerparameters:NoSummary"
16+ ],
17+ "problemMatcher" : " $msCompile"
18+ },
19+ {
20+ "label" : " test" ,
21+ "command" : " dotnet" ,
22+ "type" : " process" ,
23+ "group" : " test" ,
1024 "args" : [
25+ " test" ,
26+ " ${workspaceFolder}/Microsoft.OpenApi.sln" ,
1127 " /property:GenerateFullPaths=true" ,
12- " /t:build"
28+ " /consoleloggerparameters:NoSummary" ,
29+ " --collect:\" XPlat Code Coverage\" "
1330 ],
31+ "problemMatcher" : " $msCompile"
32+ },
33+ {
34+ "label" : " watch" ,
35+ "command" : " dotnet" ,
36+ "type" : " process" ,
1437 "group" : " build" ,
15- "presentation" : {
16- "reveal" : " silent"
17- },
38+ "args" : [
39+ " watch" ,
40+ " run" ,
41+ " ${workspaceFolder}/src/Microsoft.OpenApi.Hidi/Microsoft.OpenApi.Hidi.csproj" ,
42+ " /property:GenerateFullPaths=true" ,
43+ " /consoleloggerparameters:NoSummary"
44+ ],
1845 "problemMatcher" : " $msCompile"
1946 },
2047 {
Original file line number Diff line number Diff line change 2222 <RepositoryUrl >https://github.com/Microsoft/OpenAPI.NET</RepositoryUrl >
2323 <PackageReleaseNotes >
2424- Upgrades Microsoft.OpenApi.OData to 1.0.10-preview1
25+ - Fixes an issue where hidi would not process async operations
2526 </PackageReleaseNotes >
2627 <AssemblyName >Microsoft.OpenApi.Hidi</AssemblyName >
2728 <RootNamespace >Microsoft.OpenApi.Hidi</RootNamespace >
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ namespace Microsoft.OpenApi.Hidi
2727{
2828 public class OpenApiService
2929 {
30- public static async void ProcessOpenApiDocument (
30+ public static async Task ProcessOpenApiDocument (
3131 string openapi ,
3232 string csdl ,
3333 FileInfo output ,
You can’t perform that action at this time.
0 commit comments