Skip to content

Commit

Permalink
updated docfx to use net8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mightyshazam committed Feb 6, 2024
1 parent becb3f2 commit 0c26220
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ obj/
/.vscode
.idea/
target/
src/DeltaLake.ApiDoc/_site
src/DeltaLake.ApiDoc/api
!src/DeltaLake.ApiDoc/api/index.md
*.DotSettings.User
tests/data/checkpoints_tombstones/expired/
tests/data/checkpoints_tombstones/metadata_broken/
Expand Down
5 changes: 4 additions & 1 deletion src/DeltaLake.ApiDoc/docfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@
"noRestore": false,
"namespaceLayout": "nested",
"memberLayout": "samePage",
"allowCompilationErrors": false
"allowCompilationErrors": false,
"properties": {
"TargetFramework": "net8.0"
}
}
],
"build": {
Expand Down
6 changes: 2 additions & 4 deletions src/DeltaLake/DeltaLake.csproj
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Description>DeltaLake for .NET</Description>
<IncludeSymbols>true</IncludeSymbols>
<LangVersion>9.0</LangVersion>
<EnablePackageValidation Condition="'$(TargetFramework)' == 'net6.0'">true</EnablePackageValidation>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<TargetFrameworks>net6.0;net8.0;</TargetFrameworks>
<Nullable>enable</Nullable>
<UNSAFE_BYTEBUFFER>true</UNSAFE_BYTEBUFFER>
<DefineConstants>UNSAFE_BYTEBUFFER;BYTEBUFFER_NO_BOUNDS_CHECK;ENABLE_SPAN_T</DefineConstants>
<TargetFrameworks>net6.0;net8.0;</TargetFrameworks>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 0c26220

Please sign in to comment.