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 10
10
"request" : " launch" ,
11
11
"preLaunchTask" : " build" ,
12
12
// 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" ,
14
14
"args" : [],
15
15
"cwd" : " ${workspaceFolder}/src/Microsoft.OpenApi.Hidi" ,
16
16
// 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 5
5
"tasks" : [
6
6
{
7
7
"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" ,
10
24
"args" : [
25
+ " test" ,
26
+ " ${workspaceFolder}/Microsoft.OpenApi.sln" ,
11
27
" /property:GenerateFullPaths=true" ,
12
- " /t:build"
28
+ " /consoleloggerparameters:NoSummary" ,
29
+ " --collect:\" XPlat Code Coverage\" "
13
30
],
31
+ "problemMatcher" : " $msCompile"
32
+ },
33
+ {
34
+ "label" : " watch" ,
35
+ "command" : " dotnet" ,
36
+ "type" : " process" ,
14
37
"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
+ ],
18
45
"problemMatcher" : " $msCompile"
19
46
},
20
47
{
Original file line number Diff line number Diff line change 22
22
<RepositoryUrl >https://github.com/Microsoft/OpenAPI.NET</RepositoryUrl >
23
23
<PackageReleaseNotes >
24
24
- Upgrades Microsoft.OpenApi.OData to 1.0.10-preview1
25
+ - Fixes an issue where hidi would not process async operations
25
26
</PackageReleaseNotes >
26
27
<AssemblyName >Microsoft.OpenApi.Hidi</AssemblyName >
27
28
<RootNamespace >Microsoft.OpenApi.Hidi</RootNamespace >
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ namespace Microsoft.OpenApi.Hidi
27
27
{
28
28
public class OpenApiService
29
29
{
30
- public static async void ProcessOpenApiDocument (
30
+ public static async Task ProcessOpenApiDocument (
31
31
string openapi ,
32
32
string csdl ,
33
33
FileInfo output ,
You can’t perform that action at this time.
0 commit comments