Skip to content

Commit 5cadbb2

Browse files
committed
- upgrades hidi to net 8
Signed-off-by: Vincent Biret <[email protected]>
1 parent ced6b71 commit 5cadbb2

File tree

11 files changed

+17
-20
lines changed

11 files changed

+17
-20
lines changed

.azure-pipelines/ci-build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ stages:
3636
version: 6.x
3737

3838
- task: UseDotNet@2
39-
displayName: 'Use .NET 7'
39+
displayName: 'Use .NET 8'
4040
inputs:
41-
version: 7.x
41+
version: 8.x
4242

4343
- task: PoliCheck@2
4444
displayName: 'Run PoliCheck "/src"'

.github/workflows/ci-cd.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Setup .NET
2020
uses: actions/setup-dotnet@v4
2121
with:
22-
dotnet-version: 7.0.x
22+
dotnet-version: 8.0.x
2323

2424
- name: Data gatherer
2525
id: data_gatherer

.github/workflows/codeql-analysis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Setup .NET
2525
uses: actions/setup-dotnet@v4
2626
with:
27-
dotnet-version: 7.0.x
27+
dotnet-version: 8.0.x
2828

2929
- name: Initialize CodeQL
3030
id: init_codeql

.github/workflows/sonarcloud.yml

+1-5
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,10 @@ jobs:
3939
with:
4040
distribution: 'adopt'
4141
java-version: 17
42-
- name: Setup .NET 5 # At the moment the scanner requires dotnet 5 https://www.nuget.org/packages/dotnet-sonarscanner
43-
uses: actions/setup-dotnet@v4
44-
with:
45-
dotnet-version: 5.0.x
4642
- name: Setup .NET
4743
uses: actions/setup-dotnet@v4
4844
with:
49-
dotnet-version: 7.0.x
45+
dotnet-version: 8.0.x
5046
- uses: actions/checkout@v4
5147
with:
5248
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis

.vscode/launch.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
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/net7.0/Microsoft.OpenApi.Hidi.dll",
13+
"program": "${workspaceFolder}/src/Microsoft.OpenApi.Hidi/bin/Debug/net8.0/Microsoft.OpenApi.Hidi.dll",
1414
"args": ["plugin",
1515
"-m","C:\\Users\\darrmi\\src\\github\\microsoft\\openapi.net\\test\\Microsoft.OpenApi.Hidi.Tests\\UtilityFiles\\exampleapimanifest.json",
1616
"--of","./output"],
@@ -28,7 +28,7 @@
2828
"request": "launch",
2929
"preLaunchTask": "build",
3030
// If you have changed target frameworks, make sure to update the program path.
31-
"program": "${workspaceFolder}/src/Microsoft.OpenApi.WorkBench/bin/Debug/net7.0-windows/Microsoft.OpenApi.Workbench.exe",
31+
"program": "${workspaceFolder}/src/Microsoft.OpenApi.WorkBench/bin/Debug/net8.0-windows/Microsoft.OpenApi.Workbench.exe",
3232
"args": [],
3333
"cwd": "${workspaceFolder}/src/Microsoft.OpenApi.Workbench",
3434
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console

Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build-env
1+
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build-env
22
WORKDIR /app
33

44
COPY ./src ./hidi/src
@@ -7,10 +7,10 @@ COPY ./README.md ./hidi/README.md
77
WORKDIR /app/hidi
88
RUN dotnet publish ./src/Microsoft.OpenApi.Hidi/Microsoft.OpenApi.Hidi.csproj -c Release
99

10-
FROM mcr.microsoft.com/dotnet/runtime:7.0 AS runtime
10+
FROM mcr.microsoft.com/dotnet/runtime:8.0-jammy-chiseled AS runtime
1111
WORKDIR /app
1212

13-
COPY --from=build-env /app/hidi/src/Microsoft.OpenApi.Hidi/bin/Release/net7.0 ./
13+
COPY --from=build-env /app/hidi/src/Microsoft.OpenApi.Hidi/bin/Release/net8.0 ./
1414

1515
VOLUME /app/output
1616
VOLUME /app/openapi.yml

src/Microsoft.OpenApi.Hidi/Microsoft.OpenApi.Hidi.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net7.0</TargetFramework>
5+
<TargetFramework>net8.0</TargetFramework>
66
<LangVersion>latest</LangVersion>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
88
<PackAsTool>true</PackAsTool>

src/Microsoft.OpenApi.Hidi/OpenApiService.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ private static async Task<OpenApiDocument> GetOpenApi(HidiOptions options, ILogg
272272
predicate = OpenApiFilterService.CreatePredicate(tags: filterByTags);
273273

274274
}
275-
if (requestUrls.Any())
275+
if (requestUrls.Count > 0)
276276
{
277277
logger.LogTrace("Creating predicate based on the paths and Http methods defined in the Postman collection.");
278278
predicate = OpenApiFilterService.CreatePredicate(requestUrls: requestUrls, source: document);
@@ -307,7 +307,7 @@ private static XslCompiledTransform GetFilterTransform()
307307
return transform;
308308
}
309309

310-
private static Stream ApplyFilterToCsdl(Stream csdlStream, string entitySetOrSingleton, XslCompiledTransform transform)
310+
private static MemoryStream ApplyFilterToCsdl(Stream csdlStream, string entitySetOrSingleton, XslCompiledTransform transform)
311311
{
312312
using StreamReader inputReader = new(csdlStream, leaveOpen: true);
313313
using var inputXmlReader = XmlReader.Create(inputReader);

src/Microsoft.OpenApi.Hidi/Utilities/SettingsUtilities.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// Licensed under the MIT license.
33

4+
using System;
45
using System.IO;
56
using Microsoft.Extensions.Configuration;
67
using Microsoft.OpenApi.OData;
@@ -27,7 +28,7 @@ internal static IConfiguration GetConfiguration(string? settingsFile = null)
2728

2829
internal static OpenApiConvertSettings GetOpenApiConvertSettings(IConfiguration config, string? metadataVersion)
2930
{
30-
if (config == null) { throw new System.ArgumentNullException(nameof(config)); }
31+
ArgumentNullException.ThrowIfNull(config);
3132
var settings = new OpenApiConvertSettings();
3233
if (!string.IsNullOrEmpty(metadataVersion))
3334
settings.SemVerVersion = metadataVersion;

src/Microsoft.OpenApi.Workbench/Microsoft.OpenApi.Workbench.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net7.0-windows</TargetFramework>
3+
<TargetFramework>net8.0-windows</TargetFramework>
44
<OutputType>WinExe</OutputType>
55
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
66
<UseWPF>true</UseWPF>

test/Microsoft.OpenApi.Hidi.Tests/Microsoft.OpenApi.Hidi.Tests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77

0 commit comments

Comments
 (0)