Skip to content

Commit

Permalink
Migrate to .Net 8 (#256)
Browse files Browse the repository at this point in the history
* 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](nunit/nunit@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] <[email protected]>
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](OneDrive/markdowndeep@fae2c82...b5827a7)

---
updated-dependencies:
- dependency-name: OSS/markdowndeep
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Millicent Achieng <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
millicentachieng and dependabot[bot] authored Feb 28, 2024
1 parent 843c371 commit 336365a
Show file tree
Hide file tree
Showing 12 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup .NET
uses: actions/[email protected]
with:
dotnet-version: 6.0.x
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore ./ApiDoctor.sln
- name: Build
Expand Down
4 changes: 2 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions ApiDoctor.Console/ApiDoctor.ConsoleApp.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<IsPackable>true</IsPackable>
<OutputType>Exe</OutputType>
<AssemblyName>apidoc</AssemblyName>
Expand Down Expand Up @@ -63,7 +63,7 @@
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="Microsoft.Graph.Kibali" Version="0.18.0" />
<PackageReference Include="Microsoft.Graph.Kibali" Version="0.19.0" />
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
</ItemGroup>
</Project>
8 changes: 4 additions & 4 deletions ApiDoctor.Console/ApiDoctor.ConsoleApp.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
<projectUrl>http://github.com/onedrive/apidoctor</projectUrl>
</metadata>
<files>
<file src="bin\Release\net6.0\apidoc.exe" target="tools" />
<file src="bin\Release\net6.0\*.dll" target="tools" />
<file src="bin\Release\net6.0\*.json" target="tools" />
<file src="bin\Release\net6.0\runtimes\**" target="tools\runtimes" />
<file src="bin\Release\net8.0\apidoc.exe" target="tools" />
<file src="bin\Release\net8.0\*.dll" target="tools" />
<file src="bin\Release\net8.0\*.json" target="tools" />
<file src="bin\Release\net8.0\runtimes\**" target="tools\runtimes" />
</files>
</package>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<OutputType>Library</OutputType>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<OutputType>Library</OutputType>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion ApiDoctor.Publishing/ApiDoctor.Publishing.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<OutputType>Library</OutputType>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
<RestorePackages>true</RestorePackages>
Expand Down
4 changes: 2 additions & 2 deletions ApiDoctor.Publishing/ApiDoctor.Publishing.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
<licenseUrl>http://msdn.microsoft.com/en-US/cc300389</licenseUrl>
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
<dependencies>
<group targetFramework="netcore60">
<group targetFramework="netcore80">
<dependency id="ApiDoctor.Validation" version="$version$" />
</group>
</dependencies>
</metadata>
<files>
<file src="bin\Release\net6.0\ApiDoctor.Publishing.dll" target="lib\netcore60\ApiDoctor.Publishing.dll" />
<file src="bin\Release\net8.0\ApiDoctor.Publishing.dll" target="lib\netcore80\ApiDoctor.Publishing.dll" />
</files>
</package>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<OutputType>Library</OutputType>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
<RestorePackages>true</RestorePackages>
Expand Down
2 changes: 1 addition & 1 deletion ApiDoctor.Validation/ApiDoctor.Validation.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<OutputType>Library</OutputType>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
<RestorePackages>true</RestorePackages>
Expand Down
6 changes: 3 additions & 3 deletions ApiDoctor.Validation/ApiDoctor.Validation.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
<projectUrl>http://github.com/onedrive/apidoctor</projectUrl>
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
<dependencies>
<group targetFramework="netcore60">
<group targetFramework="netcore80">
<dependency id="Newtonsoft.Json" version="12.0.3" />
</group>
</dependencies>
</metadata>
<files>
<file src="bin\Release\net6.0\ApiDoctor.Validation.dll" target="lib\netcore60\ApiDoctor.Validation.dll" />
<file src="bin\Release\net6.0\MarkdownDeep.dll" target="lib\netcore60\MarkdownDeep.dll" />
<file src="bin\Release\net8.0\ApiDoctor.Validation.dll" target="lib\netcore80\ApiDoctor.Validation.dll" />
<file src="bin\Release\net8.0\MarkdownDeep.dll" target="lib\netcore80\MarkdownDeep.dll" />
</files>
</package>

0 comments on commit 336365a

Please sign in to comment.