Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding dotnet 6 target #153

Merged
merged 1 commit into from
Jan 4, 2022
Merged

Adding dotnet 6 target #153

merged 1 commit into from
Jan 4, 2022

Conversation

CoreyKaylor
Copy link
Owner

No description provided.

@CoreyKaylor CoreyKaylor merged commit 1b32530 into master Jan 4, 2022
@CoreyKaylor CoreyKaylor deleted the net6 branch January 4, 2022 21:51
@@ -145,7 +145,7 @@ public void CanOpenEnvironmentMoreThan50Mb()
}


#if (NETCOREAPP3_1 || NET5_0)
#if NETCOREAPP3_1 || NET5_0 || NET6_0
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#if NETCOREAPP3_1_OR_GREATER

Though I am confused since these are the only targets, so maybe unnecessary?

@@ -4,7 +4,7 @@
<Description>LightningDB</Description>
<VersionPrefix>0.14.0</VersionPrefix>
<Authors>Ilya Lukyanov;Corey Kaylor</Authors>
<TargetFrameworks>netstandard2.0;netcoreapp3.1;net5.0</TargetFrameworks>
<TargetFrameworks>netstandard2.0;netcoreapp3.1;net5.0;net6.0</TargetFrameworks>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is no reason to add a target. For instance netstandard2.0 covers net6.0.
Unless ... you are updating dependency, or a direct dependency targets it too.

Note: Here you can remove the dependency on System.Memory for netcoreapp31 and greater.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants