-
Notifications
You must be signed in to change notification settings - Fork 387
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update dependencies and remove hack (#833)
* Update DateDiff test baselines to 3.0. * Improve local debugging support for MySqlConnector. * Update dependencies to .NET Core 3.0 and MySqlConnector 0.59.0. * Update project files. * Remove MySqlConverterCommandBuilderFactory. It was used to support specific conversions at the DataReader level, that were not yet available before MySqlConnector 0.59.0.
- Loading branch information
Showing
10 changed files
with
101 additions
and
403 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,37 @@ | ||
|
||
<Project> | ||
<PropertyGroup> | ||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> | ||
</PropertyGroup> | ||
<PropertyGroup Label="Package Versions"> | ||
<!-- EFCore.MySql Dependencies --> | ||
<MicrosoftEntityFrameworkCoreRelationalVersion>3.0.0-rc1.19452.2</MicrosoftEntityFrameworkCoreRelationalVersion> | ||
<MySqlConnectorVersion>0.57.0-rc1</MySqlConnectorVersion> | ||
<MicrosoftEntityFrameworkCoreRelationalVersion>3.0.0</MicrosoftEntityFrameworkCoreRelationalVersion> | ||
<MySqlConnectorVersion>0.59.0</MySqlConnectorVersion> | ||
<PomeloJsonObjectVersion>2.2.0</PomeloJsonObjectVersion> | ||
<CastleCoreVersion>4.4.0</CastleCoreVersion> | ||
<MicrosoftExtensionsCachingMemoryVersion>3.0.0-preview9.19423.4</MicrosoftExtensionsCachingMemoryVersion> | ||
<MicrosoftExtensionsDependencyInjection>3.0.0-preview9.19423.4</MicrosoftExtensionsDependencyInjection> | ||
<SystemDiagnosticsDiagnosticSource>4.6.0-preview9.19421.4</SystemDiagnosticsDiagnosticSource> | ||
<MicrosoftExtensionsCachingMemoryVersion>3.0.0</MicrosoftExtensionsCachingMemoryVersion> | ||
<MicrosoftExtensionsDependencyInjection>3.0.0</MicrosoftExtensionsDependencyInjection> | ||
<SystemDiagnosticsDiagnosticSource>4.6.0</SystemDiagnosticsDiagnosticSource> | ||
<!-- Shared Test Dependencies --> | ||
<MicrosoftNETTestSdkPackageVersion>16.3.0-preview-20190808-03</MicrosoftNETTestSdkPackageVersion> | ||
<MicrosoftNETTestSdkPackageVersion>16.3.0</MicrosoftNETTestSdkPackageVersion> | ||
<XunitAssertPackageVersion>2.4.1</XunitAssertPackageVersion> | ||
<XunitCorePackageVersion>2.4.1</XunitCorePackageVersion> | ||
<XunitRunnerVisualStudioPackageVersion>2.4.1</XunitRunnerVisualStudioPackageVersion> | ||
<XunitRunnerConsolePackageVersion>2.4.1</XunitRunnerConsolePackageVersion> | ||
<XunitXmlTestLoggerPackageVersion>2.1.26</XunitXmlTestLoggerPackageVersion> | ||
<MicrosoftEntityFrameworkCoreRelationalSpecificationTestsVersion>3.0.0-rc1.19452.2</MicrosoftEntityFrameworkCoreRelationalSpecificationTestsVersion> | ||
<MicrosoftEntityFrameworkCoreRelationalSpecificationTestsVersion>3.0.0</MicrosoftEntityFrameworkCoreRelationalSpecificationTestsVersion> | ||
<!-- EFCoreMySqlFunctionalTests Dependencies --> | ||
<MicrosoftExtensionsConfigurationEnvironmentVariablesVersion>2.2.4</MicrosoftExtensionsConfigurationEnvironmentVariablesVersion> | ||
<MicrosoftExtensionsConfigurationFileExtensionsVersion>2.2.0</MicrosoftExtensionsConfigurationFileExtensionsVersion> | ||
<MicrosoftExtensionsConfigurationJsonVersion>2.2.0</MicrosoftExtensionsConfigurationJsonVersion> | ||
<MicrosoftExtensionsConfigurationEnvironmentVariablesVersion>3.0.0</MicrosoftExtensionsConfigurationEnvironmentVariablesVersion> | ||
<MicrosoftExtensionsConfigurationFileExtensionsVersion>3.0.0</MicrosoftExtensionsConfigurationFileExtensionsVersion> | ||
<MicrosoftExtensionsConfigurationJsonVersion>3.0.0</MicrosoftExtensionsConfigurationJsonVersion> | ||
<!-- EFCoreMySqlIntegrationTests Dependencies --> | ||
<MicrosoftAspNetCoreIdentityEntityFrameworkCoreVersion>3.0.0-rc1.19452.3</MicrosoftAspNetCoreIdentityEntityFrameworkCoreVersion> | ||
<MicrosoftAspNetCoreMvcNewtonsoftJsonVersion>3.0.0-rc1.19452.3</MicrosoftAspNetCoreMvcNewtonsoftJsonVersion> | ||
<MicrosoftAspNetCoreIdentityEntityFrameworkCoreVersion>3.0.0</MicrosoftAspNetCoreIdentityEntityFrameworkCoreVersion> | ||
<MicrosoftAspNetCoreMvcNewtonsoftJsonVersion>3.0.0</MicrosoftAspNetCoreMvcNewtonsoftJsonVersion> | ||
<!-- EFCoreMySqlTests Dependencies --> | ||
<MicrosoftEntityFrameworkCoreDesignVersion>3.0.0-rc1.19452.2</MicrosoftEntityFrameworkCoreDesignVersion> | ||
<MicrosoftCodeAnalysisCSharpPackageVersion>9.9.0-beta3-19305-01</MicrosoftCodeAnalysisCSharpPackageVersion> | ||
<MicrosoftExtensionsDependencyModelPackageVersion>3.0.0-rc1-19430-09</MicrosoftExtensionsDependencyModelPackageVersion> | ||
<MicrosoftEntityFrameworkCoreDesignVersion>3.0.0</MicrosoftEntityFrameworkCoreDesignVersion> | ||
<MicrosoftCodeAnalysisCSharpPackageVersion>3.3.1</MicrosoftCodeAnalysisCSharpPackageVersion> | ||
<MicrosoftExtensionsDependencyModelPackageVersion>3.0.0</MicrosoftExtensionsDependencyModelPackageVersion> | ||
<MoqVersion>4.13.0</MoqVersion> | ||
<NewtonsoftJsonPackageVersion>12.0.3-beta1</NewtonsoftJsonPackageVersion> | ||
<NewtonsoftJsonPackageVersion>12.0.2</NewtonsoftJsonPackageVersion> | ||
</PropertyGroup> | ||
<Import Project="$(DotNetPackageVersionPropsPath)" Condition=" '$(DotNetPackageVersionPropsPath)' != '' " /> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.