Skip to content

Commit 253ca16

Browse files
authored
Merge pull request #41 from lauxjpn/upgrade
Upgrade provider and test code to 3.1.x
2 parents 304c038 + e6c100e commit 253ca16

File tree

1,100 files changed

+69286
-39877
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,100 files changed

+69286
-39877
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,6 @@ UpgradeLog*.htm
135135
App_Data/*.mdf
136136
App_Data/*.ldf
137137

138-
139138
#LightSwitch generated files
140139
GeneratedArtifacts/
141140
_Pvt_Extensions/
@@ -157,10 +156,13 @@ $RECYCLE.BIN/
157156

158157
# Mac desktop service store files
159158
.DS_Store
159+
160160
/_External_Dependencies
161161
/packages
162162
/NuGet.Packager
163163
/.vs/EntityFrameworkCore.Jet/v15/sqlite3/storage.ide
164164
/msbuild/Compile
165165
/msbuild/Output
166166
/.vs/EntityFrameworkCore.Jet
167+
.idea
168+
!/build/

Directory.Build.props

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<Project>
2+
<PropertyGroup>
3+
<DefaultNetCoreTargetFramework>netcoreapp3.1</DefaultNetCoreTargetFramework>
4+
<DefaultNetStandardTargetFramework>netstandard2.0</DefaultNetStandardTargetFramework>
5+
</PropertyGroup>
6+
7+
<Import Project=".\build\Dependencies.props" />
8+
<Import Project=".\build\Development.props" Condition="Exists('.\build\Development.props')" />
9+
10+
<PropertyGroup>
11+
<VersionPrefix>3.1.0</VersionPrefix>
12+
<VersionSuffix>alpha</VersionSuffix>
13+
14+
<Product>EntityFrameworkCore.Jet</Product>
15+
<Description>Jet (Microsoft Access mdb or accdb files) provider for Entity Framework Core (EFCore)</Description>
16+
<Authors>Bubi</Authors>
17+
<Company>Bubi</Company>
18+
<Copyright>Copyright © 2017-2020 - Bubi</Copyright>
19+
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
20+
<LangVersion>8.0</LangVersion>
21+
<DebugType>portable</DebugType>
22+
<IsPackable>False</IsPackable>
23+
<PublishRepositoryUrl>True</PublishRepositoryUrl>
24+
25+
<PackageProjectUrl>https://github.com/bubibubi/EntityFrameworkCore.Jet/</PackageProjectUrl>
26+
<!-- <PackageReleaseNotes>TODO</PackageReleaseNotes> -->
27+
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
28+
<!-- <PackageIconUrl>TODO</PackageIconUrl> -->
29+
<!-- <PackageIcon>packageIcon.png</PackageIcon> -->
30+
<!-- <PackageIconFullPath>$(MSBuildThisFileDirectory)packageIcon.png</PackageIconFullPath> -->
31+
<PackageTags>Entity Framework Core Jet;Entity Framework Core Access;Entity Framework Core MS Access;entity-framework-core-jet;entity-framework-core-access;entity-framework-core-msaccess;EF Jet;EF Access;EF MS Access;Data;O/RM;EntityFramework;EntityFrameworkCore;EFCore;Jet;Access;MS Access</PackageTags>
32+
33+
<RepositoryType>git</RepositoryType>
34+
<RepositoryUrl>git://github.com/bubibubi/EntityFrameworkCore.Jet.git</RepositoryUrl>
35+
</PropertyGroup>
36+
37+
<ItemGroup>
38+
<EmbeddedResource Include="**\*.rd.xml" />
39+
<!-- <None Include="$(PackageIconFullPath)" Pack="true" PackagePath="\"/> -->
40+
</ItemGroup>
41+
</Project>

EntityFrameworkCore.Jet.sln

Lines changed: 31 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,14 @@ Microsoft Visual Studio Solution File, Format Version 12.00
44
VisualStudioVersion = 16.0.29806.167
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{F68095EE-6CD1-43A2-B498-6CA72CE2A0CB}"
7+
ProjectSection(SolutionItems) = preProject
8+
src\Directory.Build.props = src\Directory.Build.props
9+
EndProjectSection
710
EndProject
811
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{6A8DE399-1804-4113-A408-F23B7F5C9CAC}"
912
ProjectSection(SolutionItems) = preProject
1013
SkipMessages.txt = SkipMessages.txt
14+
test\Directory.Build.props = test\Directory.Build.props
1115
EndProjectSection
1216
EndProject
1317
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "System.Data.Jet", "src\System.Data.Jet\System.Data.Jet.csproj", "{88BE8B4F-8DA9-42B9-9A1F-839451BA5F8C}"
@@ -16,15 +20,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "System.Data.Jet.Test", "tes
1620
EndProject
1721
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EFCore.Jet", "src\EFCore.Jet\EFCore.Jet.csproj", "{D6966B04-4C38-4925-BCDE-F8655F38D04C}"
1822
EndProject
19-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tools", "tools", "{A56C261D-351C-449B-8130-75F6FA76842C}"
20-
ProjectSection(SolutionItems) = preProject
21-
tools\CleanMSSQLLocalDB.cmd = tools\CleanMSSQLLocalDB.cmd
22-
tools\DropAllDatabases.sql = tools\DropAllDatabases.sql
23-
tools\Resources.tt = tools\Resources.tt
24-
tools\ShrinkLocalDBModel.cmd = tools\ShrinkLocalDBModel.cmd
25-
EndProjectSection
26-
EndProject
27-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EFCore.Jet.Integration.Test", "test\EFCore.Jet.Integration.Test\EFCore.Jet.Integration.Test.csproj", "{50CA2970-B995-4D28-9F6C-F7CA4940F23A}"
23+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EFCore.Jet.IntegrationTests", "test\EFCore.Jet.IntegrationTests\EFCore.Jet.IntegrationTests.csproj", "{50CA2970-B995-4D28-9F6C-F7CA4940F23A}"
2824
EndProject
2925
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EFCore.Jet.FunctionalTests", "test\EFCore.Jet.FunctionalTests\EFCore.Jet.FunctionalTests.csproj", "{3C88D49A-7EF2-42BA-A8D7-9DF7D358FD24}"
3026
EndProject
@@ -34,16 +30,21 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "docs", "docs", "{B7FF1850-2
3430
docs\README.md = docs\README.md
3531
EndProjectSection
3632
EndProject
37-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EFCore.Jet.Tests", "test\EFCore.Jet.Tests\EFCore.Jet.Tests.csproj", "{C38B58D7-F346-40A2-9849-D12CB9EC5C69}"
33+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "build", "build", "{DC0C1C50-ED7E-4BC0-B45C-E3115ECCCF76}"
34+
ProjectSection(SolutionItems) = preProject
35+
build\Dependencies.props = build\Dependencies.props
36+
build\Key.snk = build\Key.snk
37+
build\Development.props = build\Development.props
38+
build\Development.props.sample = build\Development.props.sample
39+
EndProjectSection
3840
EndProject
39-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EFCore.Jet.Design.FunctionalTests", "test\EFCore.Jet.Design.FunctionalTest\EFCore.Jet.Design.FunctionalTests.csproj", "{543477FB-CF81-446D-AB02-1E41382DED5B}"
41+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "root", "root", "{76210BB4-A506-4838-8BBF-57DA18C8FA03}"
42+
ProjectSection(SolutionItems) = preProject
43+
Directory.Build.props = Directory.Build.props
44+
NuGet.Config = NuGet.Config
45+
EndProjectSection
4046
EndProject
41-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "System.Data.Jet.PerformanceTest", "test\System.Data.Jet.PerformanceTest\System.Data.Jet.PerformanceTest.csproj", "{8A3F688D-AA42-4070-9813-293D19E7F023}"
42-
EndProject
43-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "build help", "build help", "{20B764C9-8664-4609-A743-8CF32BA6CA69}"
44-
ProjectSection(SolutionItems) = preProject
45-
NuGet.Config = NuGet.Config
46-
EndProjectSection
47+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EFCore.Jet.Tests", "test\EFCore.Jet.Tests\EFCore.Jet.Tests.csproj", "{770A076B-A448-499C-BB86-A37994C04523}"
4748
EndProject
4849
Global
4950
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -115,42 +116,18 @@ Global
115116
{3C88D49A-7EF2-42BA-A8D7-9DF7D358FD24}.Release|x64.Build.0 = Release|x64
116117
{3C88D49A-7EF2-42BA-A8D7-9DF7D358FD24}.Release|x86.ActiveCfg = Release|Any CPU
117118
{3C88D49A-7EF2-42BA-A8D7-9DF7D358FD24}.Release|x86.Build.0 = Release|Any CPU
118-
{C38B58D7-F346-40A2-9849-D12CB9EC5C69}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
119-
{C38B58D7-F346-40A2-9849-D12CB9EC5C69}.Debug|Any CPU.Build.0 = Debug|Any CPU
120-
{C38B58D7-F346-40A2-9849-D12CB9EC5C69}.Debug|x64.ActiveCfg = Debug|x64
121-
{C38B58D7-F346-40A2-9849-D12CB9EC5C69}.Debug|x64.Build.0 = Debug|x64
122-
{C38B58D7-F346-40A2-9849-D12CB9EC5C69}.Debug|x86.ActiveCfg = Debug|x86
123-
{C38B58D7-F346-40A2-9849-D12CB9EC5C69}.Debug|x86.Build.0 = Debug|x86
124-
{C38B58D7-F346-40A2-9849-D12CB9EC5C69}.Release|Any CPU.ActiveCfg = Release|Any CPU
125-
{C38B58D7-F346-40A2-9849-D12CB9EC5C69}.Release|Any CPU.Build.0 = Release|Any CPU
126-
{C38B58D7-F346-40A2-9849-D12CB9EC5C69}.Release|x64.ActiveCfg = Release|x64
127-
{C38B58D7-F346-40A2-9849-D12CB9EC5C69}.Release|x64.Build.0 = Release|x64
128-
{C38B58D7-F346-40A2-9849-D12CB9EC5C69}.Release|x86.ActiveCfg = Release|Any CPU
129-
{C38B58D7-F346-40A2-9849-D12CB9EC5C69}.Release|x86.Build.0 = Release|Any CPU
130-
{543477FB-CF81-446D-AB02-1E41382DED5B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
131-
{543477FB-CF81-446D-AB02-1E41382DED5B}.Debug|Any CPU.Build.0 = Debug|Any CPU
132-
{543477FB-CF81-446D-AB02-1E41382DED5B}.Debug|x64.ActiveCfg = Debug|x64
133-
{543477FB-CF81-446D-AB02-1E41382DED5B}.Debug|x64.Build.0 = Debug|x64
134-
{543477FB-CF81-446D-AB02-1E41382DED5B}.Debug|x86.ActiveCfg = Debug|x86
135-
{543477FB-CF81-446D-AB02-1E41382DED5B}.Debug|x86.Build.0 = Debug|x86
136-
{543477FB-CF81-446D-AB02-1E41382DED5B}.Release|Any CPU.ActiveCfg = Release|Any CPU
137-
{543477FB-CF81-446D-AB02-1E41382DED5B}.Release|Any CPU.Build.0 = Release|Any CPU
138-
{543477FB-CF81-446D-AB02-1E41382DED5B}.Release|x64.ActiveCfg = Release|x64
139-
{543477FB-CF81-446D-AB02-1E41382DED5B}.Release|x64.Build.0 = Release|x64
140-
{543477FB-CF81-446D-AB02-1E41382DED5B}.Release|x86.ActiveCfg = Release|Any CPU
141-
{543477FB-CF81-446D-AB02-1E41382DED5B}.Release|x86.Build.0 = Release|Any CPU
142-
{8A3F688D-AA42-4070-9813-293D19E7F023}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
143-
{8A3F688D-AA42-4070-9813-293D19E7F023}.Debug|Any CPU.Build.0 = Debug|Any CPU
144-
{8A3F688D-AA42-4070-9813-293D19E7F023}.Debug|x64.ActiveCfg = Debug|x64
145-
{8A3F688D-AA42-4070-9813-293D19E7F023}.Debug|x64.Build.0 = Debug|x64
146-
{8A3F688D-AA42-4070-9813-293D19E7F023}.Debug|x86.ActiveCfg = Debug|x86
147-
{8A3F688D-AA42-4070-9813-293D19E7F023}.Debug|x86.Build.0 = Debug|x86
148-
{8A3F688D-AA42-4070-9813-293D19E7F023}.Release|Any CPU.ActiveCfg = Release|Any CPU
149-
{8A3F688D-AA42-4070-9813-293D19E7F023}.Release|Any CPU.Build.0 = Release|Any CPU
150-
{8A3F688D-AA42-4070-9813-293D19E7F023}.Release|x64.ActiveCfg = Release|x64
151-
{8A3F688D-AA42-4070-9813-293D19E7F023}.Release|x64.Build.0 = Release|x64
152-
{8A3F688D-AA42-4070-9813-293D19E7F023}.Release|x86.ActiveCfg = Release|Any CPU
153-
{8A3F688D-AA42-4070-9813-293D19E7F023}.Release|x86.Build.0 = Release|Any CPU
119+
{770A076B-A448-499C-BB86-A37994C04523}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
120+
{770A076B-A448-499C-BB86-A37994C04523}.Debug|Any CPU.Build.0 = Debug|Any CPU
121+
{770A076B-A448-499C-BB86-A37994C04523}.Debug|x64.ActiveCfg = Debug|Any CPU
122+
{770A076B-A448-499C-BB86-A37994C04523}.Debug|x64.Build.0 = Debug|Any CPU
123+
{770A076B-A448-499C-BB86-A37994C04523}.Debug|x86.ActiveCfg = Debug|Any CPU
124+
{770A076B-A448-499C-BB86-A37994C04523}.Debug|x86.Build.0 = Debug|Any CPU
125+
{770A076B-A448-499C-BB86-A37994C04523}.Release|Any CPU.ActiveCfg = Release|Any CPU
126+
{770A076B-A448-499C-BB86-A37994C04523}.Release|Any CPU.Build.0 = Release|Any CPU
127+
{770A076B-A448-499C-BB86-A37994C04523}.Release|x64.ActiveCfg = Release|Any CPU
128+
{770A076B-A448-499C-BB86-A37994C04523}.Release|x64.Build.0 = Release|Any CPU
129+
{770A076B-A448-499C-BB86-A37994C04523}.Release|x86.ActiveCfg = Release|Any CPU
130+
{770A076B-A448-499C-BB86-A37994C04523}.Release|x86.Build.0 = Release|Any CPU
154131
EndGlobalSection
155132
GlobalSection(SolutionProperties) = preSolution
156133
HideSolutionNode = FALSE
@@ -161,9 +138,7 @@ Global
161138
{D6966B04-4C38-4925-BCDE-F8655F38D04C} = {F68095EE-6CD1-43A2-B498-6CA72CE2A0CB}
162139
{50CA2970-B995-4D28-9F6C-F7CA4940F23A} = {6A8DE399-1804-4113-A408-F23B7F5C9CAC}
163140
{3C88D49A-7EF2-42BA-A8D7-9DF7D358FD24} = {6A8DE399-1804-4113-A408-F23B7F5C9CAC}
164-
{C38B58D7-F346-40A2-9849-D12CB9EC5C69} = {6A8DE399-1804-4113-A408-F23B7F5C9CAC}
165-
{543477FB-CF81-446D-AB02-1E41382DED5B} = {6A8DE399-1804-4113-A408-F23B7F5C9CAC}
166-
{8A3F688D-AA42-4070-9813-293D19E7F023} = {6A8DE399-1804-4113-A408-F23B7F5C9CAC}
141+
{770A076B-A448-499C-BB86-A37994C04523} = {6A8DE399-1804-4113-A408-F23B7F5C9CAC}
167142
EndGlobalSection
168143
GlobalSection(ExtensibilityGlobals) = postSolution
169144
SolutionGuid = {9359773D-6399-447E-9814-6CB41C2FB664}

NuGet.Config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
<configuration>
33
<packageSources>
44
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
5-
<add key="dotnet-core (nightly)" value="https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json" />
5+
<add key="dotnet-core (nightly)" value="https://dnceng.pkgs.visualstudio.com/public/_packaging/dotnet5/nuget/v3/index.json" />
66
</packageSources>
77
</configuration>

build/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Development.props

build/Development.props.sample

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<Project>
2+
<PropertyGroup>
3+
<!--
4+
Specify the absolute path to the EntityFrameworkCore base directory,
5+
to compile against that version for better development and local
6+
debugging support.
7+
8+
Rename this file "development.props".
9+
10+
The EFCore assemblies are being compiled with an AssemblyVersion of
11+
"42.42.42.42" by default. To not get any compilation errors
12+
for the EFCore.MySql.IntegrationTests project, which uses
13+
Microsoft.AspNetCore.Identity.EntityFrameworkCore, which references
14+
it's own version of EFCore, you have to make sure, that your local
15+
EFCore assemblies are compiled with an AssemblyVersion <= the one
16+
referenced by Microsoft.AspNetCore.Identity.EntityFrameworkCore
17+
(e.g. "3.1.0.0").
18+
19+
To achive that, run the following command in your EntityFrameworkCore
20+
base directory:
21+
22+
dotnet build "/p:AssemblyVersion=3.1.0.0"
23+
-->
24+
<LocalEFCoreRepository>C:\Repositories\EntityFrameworkCore</LocalEFCoreRepository>
25+
</PropertyGroup>
26+
</Project>

build/GlobalAssemblyInfo.cs

Lines changed: 0 additions & 22 deletions
This file was deleted.

build/common.props

Lines changed: 0 additions & 22 deletions
This file was deleted.

build/dependencies.props

Lines changed: 47 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,53 @@
11
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
22
<PropertyGroup>
3-
<AspNetCoreVersion>2.1.0-*</AspNetCoreVersion>
4-
<CoreFxVersion>4.4.0-*</CoreFxVersion>
5-
<DiagnosticSourceVersion>4.4.1-*</DiagnosticSourceVersion>
6-
<DependencyModelVersion>2.0.0-*</DependencyModelVersion>
7-
<InternalAspNetCoreSdkVersion>2.1.1-*</InternalAspNetCoreSdkVersion>
8-
<JsonNetVersion>10.0.1</JsonNetVersion>
9-
<NETStandardImplicitPackageVersion>2.0.0-*</NETStandardImplicitPackageVersion>
10-
<NETStandardLibraryNETFrameworkVersion>2.0.0-*</NETStandardLibraryNETFrameworkVersion>
11-
<RelinqVersion>2.2.0-alpha-002</RelinqVersion>
12-
<RoslynVersion>2.3.1</RoslynVersion>
13-
<RuntimeFrameworkVersion Condition="'$(TargetFramework)'=='netcoreapp2.0'">2.0.0-*</RuntimeFrameworkVersion>
14-
<SQLitePCLRawVersion>1.1.8</SQLitePCLRawVersion>
15-
<StyleCopAnalyzersVersion>1.0.0</StyleCopAnalyzersVersion>
16-
<SystemCollectionsImmutableVersion>1.4.0-*</SystemCollectionsImmutableVersion>
17-
<SystemInteractiveAsyncVersion>3.1.1</SystemInteractiveAsyncVersion>
18-
<TestSdkVersion>15.3.0</TestSdkVersion>
19-
<XunitVersion>2.3.0-beta4-build3742</XunitVersion>
20-
<XunitVersionInSpecProjects>2.2.0</XunitVersionInSpecProjects>
3+
<MicrosoftEntityFrameworkCoreVersion>3.1.2</MicrosoftEntityFrameworkCoreVersion>
4+
<MicrosoftEntityFrameworkCoreRelationalVersion>3.1.2</MicrosoftEntityFrameworkCoreRelationalVersion>
5+
<MicrosoftExtensionsConfigurationJsonVersion>3.1.2</MicrosoftExtensionsConfigurationJsonVersion>
6+
<MicrosoftExtensionsDependencyInjection>3.1.2</MicrosoftExtensionsDependencyInjection>
7+
<MicrosoftExtensionsConfigurationEnvironmentVariablesVersion>3.1.2</MicrosoftExtensionsConfigurationEnvironmentVariablesVersion>
8+
<MicrosoftExtensionsConfigurationVersion>3.1.2</MicrosoftExtensionsConfigurationVersion>
9+
<MicrosoftExtensionsCachingMemoryVersion>3.1.2</MicrosoftExtensionsCachingMemoryVersion>
10+
<MicrosoftExtensionsHostFactoryResolverSourcesVersion>3.1.0-rtm.19565.4</MicrosoftExtensionsHostFactoryResolverSourcesVersion>
11+
<MicrosoftExtensionsLoggingVersion>3.1.2</MicrosoftExtensionsLoggingVersion>
12+
<SystemDiagnosticsDiagnosticSourceVersion>4.7.0</SystemDiagnosticsDiagnosticSourceVersion>
13+
<MicrosoftBclAsyncInterfacesVersion>1.1.0</MicrosoftBclAsyncInterfacesVersion>
14+
<MicrosoftBclHashCodeVersion>1.1.0</MicrosoftBclHashCodeVersion>
15+
<SystemCollectionsImmutableVersion>1.7.0</SystemCollectionsImmutableVersion>
16+
<SystemComponentModelAnnotationsVersion>4.7.0</SystemComponentModelAnnotationsVersion>
17+
<SystemDataOleDbVersion>5.0.0-preview.3.20171.3</SystemDataOleDbVersion>
2118
</PropertyGroup>
22-
<!-- Following package versions must match with what is available on NuGet -->
19+
<!-- System.Data.Jet -->
2320
<PropertyGroup>
24-
<BenchmarkDotNetVersion>0.10.9</BenchmarkDotNetVersion>
25-
<EF6Version>6.1.3</EF6Version>
26-
<EFCore1Version>1.1.2</EFCore1Version>
27-
<EFCore1SqlClientVersion>4.3.1</EFCore1SqlClientVersion>
28-
<EFCore2Version>2.0.0</EFCore2Version>
29-
<EFCore2SqlClientVersion>4.4.0</EFCore2SqlClientVersion>
21+
<MicrosoftCSharp>4.7.0</MicrosoftCSharp>
22+
</PropertyGroup>
23+
<!-- System.Data.Jet.Test -->
24+
<!-- System.Data.Jet.PerformanceTest -->
25+
<PropertyGroup>
26+
<MicrosoftNetTestSdk>16.5.0</MicrosoftNetTestSdk>
27+
<MSTestTestAdapter>2.1.0</MSTestTestAdapter>
28+
<MSTestTestFramework>2.1.0</MSTestTestFramework>
29+
<CoverletCollector>1.2.0</CoverletCollector>
30+
</PropertyGroup>
31+
<!-- EFCore.Jet.FunctionalTests -->
32+
<PropertyGroup>
33+
<XunitCorePackageVersion>2.4.1</XunitCorePackageVersion>
34+
<XunitAssertPackageVersion>2.4.1</XunitAssertPackageVersion>
35+
<XunitRunnerVisualStudioPackageVersion>2.4.1</XunitRunnerVisualStudioPackageVersion>
36+
<XunitRunnerConsolePackageVersion>2.4.1</XunitRunnerConsolePackageVersion>
37+
<NetTopologySuiteVersion>2.0.0</NetTopologySuiteVersion>
38+
<SystemComponentModelTypeConverterVersion>4.3.0</SystemComponentModelTypeConverterVersion>
39+
<CastleCoreVersion>4.4.0</CastleCoreVersion>
40+
<MicrosoftExtensionsConfigurationEnvironmentVariablesVersion>3.1.0</MicrosoftExtensionsConfigurationEnvironmentVariablesVersion>
41+
<MicrosoftExtensionsConfigurationFileExtensionsVersion>3.1.2</MicrosoftExtensionsConfigurationFileExtensionsVersion>
42+
</PropertyGroup>
43+
<!-- EFCore.Jet.Tests -->
44+
<PropertyGroup>
45+
<MicrosoftEntityFrameworkCoreDesignVersion>3.1.0</MicrosoftEntityFrameworkCoreDesignVersion>
46+
<MicrosoftEntityFrameworkCoreTestsVersion>3.1.0</MicrosoftEntityFrameworkCoreTestsVersion>
47+
<MicrosoftEntityFrameworkCoreRelationalTestsVersion>3.1.0</MicrosoftEntityFrameworkCoreRelationalTestsVersion>
48+
<MicrosoftEntityFrameworkCoreRelationalSpecificationTestsVersion>3.1.0</MicrosoftEntityFrameworkCoreRelationalSpecificationTestsVersion>
49+
<MicrosoftCodeAnalysisCSharpPackageVersion>3.4.0</MicrosoftCodeAnalysisCSharpPackageVersion>
50+
<MicrosoftExtensionsDependencyModelPackageVersion>3.1.0</MicrosoftExtensionsDependencyModelPackageVersion>
51+
<MoqVersion>4.13.1</MoqVersion>
3052
</PropertyGroup>
3153
</Project>

0 commit comments

Comments
 (0)