Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
Database
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Coscine
backend
libraries
Database
Merge requests
!162
Fix: EF compatibility with net6.0
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Fix: EF compatibility with net6.0
Hotfix/2087-efNet6
into
master
Overview
0
Commits
2
Pipelines
4
Changes
1
Merged
Petar Hristov
requested to merge
Hotfix/2087-efNet6
into
master
3 years ago
Overview
0
Commits
2
Pipelines
4
Changes
1
coscine/issues#2087
Edited
3 years ago
by
Petar Hristov
0
0
Merge request reports
Compare
master
version 3
76b63b54
3 years ago
version 2
3f11cc43
3 years ago
version 1
cb766ef5
3 years ago
master (base)
and
latest version
latest version
cb766ef5
2 commits,
3 years ago
version 3
76b63b54
4 commits,
3 years ago
version 2
3f11cc43
3 commits,
3 years ago
version 1
cb766ef5
2 commits,
3 years ago
1 file
+
6
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/Database/Database.csproj
+
6
−
3
View file @ cb766ef5
Edit in single-file editor
Open in Web IDE
Show full file
@@ -9,7 +9,7 @@
<PropertyGroup>
<Authors>RWTH Aachen University</Authors>
<Company>IT Center, RWTH Aachen University</Company>
<Copyright>202
1
IT Center, RWTH Aachen University</Copyright>
<Copyright>202
2
IT Center, RWTH Aachen University</Copyright>
<Description>Database is a part of the Coscine group.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://git.rwth-aachen.de/coscine/backend/libraries/database</PackageProjectUrl>
@@ -32,9 +32,12 @@
<PackageReference Include="Coscine.Configuration" Version="2.*-*" />
<PackageReference Include="LinqKit" Version="1.1.23" />
<PackageReference Include="Inflector.NetStandard" Version="1.2.2" />
<!-- Note: use newest Microsoft.EntityFrameworkCore Version for net6.0 -->
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.4" Condition="'$(TargetFramework)' == 'net6.0'" PrivateAssets="all" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.4" Condition="'$(TargetFramework)' == 'net6.0'" />
<!-- Note: use Microsoft.EntityFrameworkCore Version 3.x.x for compatibility with net461 -->
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="3.1.12" PrivateAssets="all" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="3.1.12" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="3.1.12"
Condition="'$(TargetFramework)' == 'net461'"
PrivateAssets="all" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="3.1.12"
Condition="'$(TargetFramework)' == 'net461'"
/>
</ItemGroup>
<PropertyGroup>
<LangVersion>Preview</LangVersion>
Loading