From 336365a02e6ce2a1946dc4edcbe1acd37a116a88 Mon Sep 17 00:00:00 2001 From: Millicent Achieng Date: Wed, 28 Feb 2024 16:28:22 +0300 Subject: [PATCH] Migrate to .Net 8 (#256) * Migrate to .Net 8 * Update Kibali * Bump OSS/markdowndeep from `fae2c82` to `b5827a7` (#260) * Add support for processing Edm.Decimal data type (#257) * Bump NUnit from 4.0.1 to 4.1.0 (#259) Bumps [NUnit](https://github.com/nunit/nunit) from 4.0.1 to 4.1.0. - [Release notes](https://github.com/nunit/nunit/releases) - [Changelog](https://github.com/nunit/nunit/blob/master/CHANGES.md) - [Commits](https://github.com/nunit/nunit/compare/v4.0.1...4.1.0) --- updated-dependencies: - dependency-name: NUnit dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump OSS/markdowndeep from `fae2c82` to `b5827a7` Bumps [OSS/markdowndeep](https://github.com/OneDrive/markdowndeep) from `fae2c82` to `b5827a7`. - [Commits](https://github.com/OneDrive/markdowndeep/compare/fae2c8207abeef17700a022d9509bb4a5435d365...b5827a7b32bbddd8fd22b80bb57f5639224d254f) --- updated-dependencies: - dependency-name: OSS/markdowndeep dependency-type: direct:production ... Signed-off-by: dependabot[bot] --------- Signed-off-by: dependabot[bot] Co-authored-by: Millicent Achieng Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/dotnet.yml | 2 +- .vscode/launch.json | 4 ++-- ApiDoctor.Console/ApiDoctor.ConsoleApp.csproj | 4 ++-- ApiDoctor.Console/ApiDoctor.ConsoleApp.nuspec | 8 ++++---- .../ApiDoctor.DocumentationGeneration.UnitTests.csproj | 2 +- .../ApiDoctor.DocumentationGeneration.csproj | 2 +- ApiDoctor.Publishing/ApiDoctor.Publishing.csproj | 2 +- ApiDoctor.Publishing/ApiDoctor.Publishing.nuspec | 4 ++-- .../ApiDoctor.Validation.UnitTests.csproj | 2 +- ApiDoctor.Validation/ApiDoctor.Validation.csproj | 2 +- ApiDoctor.Validation/ApiDoctor.Validation.nuspec | 6 +++--- OSS/markdowndeep | 2 +- 12 files changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index fbf64a94..2accd4b9 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -18,7 +18,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v4.0.0 with: - dotnet-version: 6.0.x + dotnet-version: 8.0.x - name: Restore dependencies run: dotnet restore ./ApiDoctor.sln - name: Build diff --git a/.vscode/launch.json b/.vscode/launch.json index 6cc407cd..88bd5ca2 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -9,14 +9,14 @@ "type": "coreclr", "request": "launch", "preLaunchTask": "build", - "program": "${workspaceFolder}/ApiDoctor.Console/bin/Debug/net6.0/apidoc.dll", + "program": "${workspaceFolder}/ApiDoctor.Console/bin/Debug/net8.0/apidoc.dll", "args": [ "generate-snippets", "--ignore-warnings", "--path", "/home/codespace/workspace/microsoft-graph-docs", "--snippet-generator-path", - "/home/codespace/workspace/microsoft-graph-explorer-api/CodeSnippetsReflection.App/bin/Debug/net6.0/CodeSnippetsReflection.App", + "/home/codespace/workspace/microsoft-graph-explorer-api/CodeSnippetsReflection.App/bin/Debug/net8.0/CodeSnippetsReflection.App", "--lang", "Java", "--git-path", diff --git a/ApiDoctor.Console/ApiDoctor.ConsoleApp.csproj b/ApiDoctor.Console/ApiDoctor.ConsoleApp.csproj index 69fef682..4f7a20dd 100644 --- a/ApiDoctor.Console/ApiDoctor.ConsoleApp.csproj +++ b/ApiDoctor.Console/ApiDoctor.ConsoleApp.csproj @@ -1,6 +1,6 @@ - net6.0 + net8.0 true Exe apidoc @@ -63,7 +63,7 @@ - + \ No newline at end of file diff --git a/ApiDoctor.Console/ApiDoctor.ConsoleApp.nuspec b/ApiDoctor.Console/ApiDoctor.ConsoleApp.nuspec index 4c067d2f..aeeee827 100644 --- a/ApiDoctor.Console/ApiDoctor.ConsoleApp.nuspec +++ b/ApiDoctor.Console/ApiDoctor.ConsoleApp.nuspec @@ -13,9 +13,9 @@ http://github.com/onedrive/apidoctor - - - - + + + + diff --git a/ApiDoctor.DocumentationGeneration.UnitTests/ApiDoctor.DocumentationGeneration.UnitTests.csproj b/ApiDoctor.DocumentationGeneration.UnitTests/ApiDoctor.DocumentationGeneration.UnitTests.csproj index 24fa91a5..bb51335d 100644 --- a/ApiDoctor.DocumentationGeneration.UnitTests/ApiDoctor.DocumentationGeneration.UnitTests.csproj +++ b/ApiDoctor.DocumentationGeneration.UnitTests/ApiDoctor.DocumentationGeneration.UnitTests.csproj @@ -1,6 +1,6 @@ - net6.0 + net8.0 Library false diff --git a/ApiDoctor.DocumentationGeneration/ApiDoctor.DocumentationGeneration.csproj b/ApiDoctor.DocumentationGeneration/ApiDoctor.DocumentationGeneration.csproj index fdfc554c..258a081d 100644 --- a/ApiDoctor.DocumentationGeneration/ApiDoctor.DocumentationGeneration.csproj +++ b/ApiDoctor.DocumentationGeneration/ApiDoctor.DocumentationGeneration.csproj @@ -1,6 +1,6 @@  - net6.0 + net8.0 Library false diff --git a/ApiDoctor.Publishing/ApiDoctor.Publishing.csproj b/ApiDoctor.Publishing/ApiDoctor.Publishing.csproj index 2fdee211..e1a91047 100644 --- a/ApiDoctor.Publishing/ApiDoctor.Publishing.csproj +++ b/ApiDoctor.Publishing/ApiDoctor.Publishing.csproj @@ -1,6 +1,6 @@  - net6.0 + net8.0 Library ..\ true diff --git a/ApiDoctor.Publishing/ApiDoctor.Publishing.nuspec b/ApiDoctor.Publishing/ApiDoctor.Publishing.nuspec index 51fe1133..61b75e55 100644 --- a/ApiDoctor.Publishing/ApiDoctor.Publishing.nuspec +++ b/ApiDoctor.Publishing/ApiDoctor.Publishing.nuspec @@ -12,12 +12,12 @@ http://msdn.microsoft.com/en-US/cc300389 © Microsoft Corporation. All rights reserved. - + - + diff --git a/ApiDoctor.Validation.UnitTests/ApiDoctor.Validation.UnitTests.csproj b/ApiDoctor.Validation.UnitTests/ApiDoctor.Validation.UnitTests.csproj index 55ddf72e..63b92935 100644 --- a/ApiDoctor.Validation.UnitTests/ApiDoctor.Validation.UnitTests.csproj +++ b/ApiDoctor.Validation.UnitTests/ApiDoctor.Validation.UnitTests.csproj @@ -1,6 +1,6 @@ - net6.0 + net8.0 Library ..\ true diff --git a/ApiDoctor.Validation/ApiDoctor.Validation.csproj b/ApiDoctor.Validation/ApiDoctor.Validation.csproj index 7e049aaf..2c90af6f 100644 --- a/ApiDoctor.Validation/ApiDoctor.Validation.csproj +++ b/ApiDoctor.Validation/ApiDoctor.Validation.csproj @@ -1,6 +1,6 @@ - net6.0 + net8.0 Library ..\ true diff --git a/ApiDoctor.Validation/ApiDoctor.Validation.nuspec b/ApiDoctor.Validation/ApiDoctor.Validation.nuspec index d5fd0fe2..d7d94e2a 100644 --- a/ApiDoctor.Validation/ApiDoctor.Validation.nuspec +++ b/ApiDoctor.Validation/ApiDoctor.Validation.nuspec @@ -13,13 +13,13 @@ http://github.com/onedrive/apidoctor © Microsoft Corporation. All rights reserved. - + - - + + diff --git a/OSS/markdowndeep b/OSS/markdowndeep index fae2c820..b5827a7b 160000 --- a/OSS/markdowndeep +++ b/OSS/markdowndeep @@ -1 +1 @@ -Subproject commit fae2c8207abeef17700a022d9509bb4a5435d365 +Subproject commit b5827a7b32bbddd8fd22b80bb57f5639224d254f