diff --git a/Directory.Build.props b/Directory.Build.props index ccbeb11..50dc68a 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -5,21 +5,21 @@ EntityFrameworkCore.Jet Christopher Jolly, Laurents Meyer, Bubi - Bubi - Copyright © 2017-$([System.DateTime]::Now.Year) Bubi + CirrusRed + Copyright © 2017-$([System.DateTime]::Now.Year) CirrusRed True latest portable False Entity Framework Core;Entity Framework Core;entity-framework-core;Jet;ACE;Access;MS Access;msaccess;EF;EFCore;EF Core;EntityFrameworkCore - Apache-2.0 - https://github.com/bubibubi/EntityFrameworkCore.Jet + MIT + https://github.com/CirrusRedOrg/EntityFrameworkCore.Jet git - https://github.com/bubibubi/EntityFrameworkCore.Jet + https://github.com/CirrusRedOrg/EntityFrameworkCore.Jet diff --git a/NuGet.Config b/NuGet.Config index c0b5ddf..294f2aa 100644 --- a/NuGet.Config +++ b/NuGet.Config @@ -1,7 +1,12 @@ - + + + + + + \ No newline at end of file diff --git a/docs/README.md b/docs/README.md index 052062f..87bd119 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,7 +1,8 @@ # EntityFrameworkCore.Jet -[![Build Status](https://bubibubi.visualstudio.com/EntityFrameworkCore.Jet/_apis/build/status/bubibubi.EntityFrameworkCore.Jet?branchName=master)](https://bubibubi.visualstudio.com/EntityFrameworkCore.Jet/_build/latest?definitionId=1&branchName=master) -[![NuGet](https://img.shields.io/nuget/v/EntityFrameworkCore.Jet.svg?style=flat-square&label=nuget)](https://www.nuget.org/packages/EntityFrameworkCore.Jet/) -[![Nuget (with prereleases)](https://img.shields.io/nuget/vpre/EntityFrameworkCore.Jet?style=flat-square)](https://www.nuget.org/packages/EntityFrameworkCore.Jet/) +[![Build status](https://github.com/CirrusRedOrg/EntityFrameworkCore.Jet/actions/workflows/build.yml/badge.svg?branch=master)](https://github.com/CirrusRedOrg/EntityFrameworkCore.Jet/actions/workflows/build.yml) +[![Stable release feed for official builds](https://img.shields.io/nuget/vpre/EntityFrameworkCore.Jet.svg?style=flat-square&label=NuGet)](https://www.nuget.org/packages/EntityFrameworkCore.Jet/) +[![Nightly build feed for release builds](https://img.shields.io/myget/cirrusred/vpre/EntityFrameworkCore.Jet.svg?label=Nightly)](https://www.myget.org/feed/cirrusred/package/nuget/EntityFrameworkCore.Jet) +[![Nightly build feed for debugging enabled builds](https://img.shields.io/myget/cirrusred-debug/vpre/EntityFrameworkCore.Jet.svg?label=Debug)](https://www.myget.org/feed/cirrusred-debug/package/nuget/EntityFrameworkCore.Jet) `EntityFrameworkCore.Jet` is an Entity Framework Core provider for Microsoft Jet/ACE databases (supporting the Microsoft Access database file formats `MDB` and `ACCDB`). @@ -22,33 +23,42 @@ It runs on Windows operating systems only and can be used with either ODBC or OL * [EntityFrameworkCore.Jet.Odbc](https://www.nuget.org/packages/EntityFrameworkCore.Jet.Odbc/) * [EntityFrameworkCore.Jet.OleDb](https://www.nuget.org/packages/EntityFrameworkCore.Jet.OleDb/) -## Official Releases +## NuGet Feeds + +### Official Releases + All official releases are available on [nuget.org](https://www.nuget.org/packages/EntityFrameworkCore.Jet/). -## Daily Builds -To use the latest daily builds from our [Azure DevOps feed](https://bubibubi.visualstudio.com/EntityFrameworkCore.Jet/_packaging?_a=feed&feed=public%40Local), add a `NuGet.config` file to your solution root with the following content, and enable _prereleases_: +### Daily Builds + +To use the latest daily builds, add a `NuGet.config` file to your solution root, add the daily feeds you are interested in and enable _prereleases_: ```xml - + + ``` + +There are two daily build feeds available, one with (optimized) `Release` configuration builds and one with (unoptimized) `Debug` configuration builds. +All packages use SourceLink. ## Fluent API -In order to be able to be shared with SqlServer (and other providers) the names of some of the Fluent API methods have been made specific to Jet. +In order to simplify writing code for more than just one provider, some Fluent API method names have been made specific to Jet. +Examples are: * `UseIdentityColumn` -> `UseJetIdentityColumn` * `UseIdentityColumns` -> `UseJetIdentityColumns` -More may be added in the future - ## Further information -More information can be found on our [Wiki](https://www.github.com/bubibubi/EntityFrameworkCore.Jet/wiki). + +More information can be found on our [Wiki](https://www.github.com/CirrusRedOrg/EntityFrameworkCore.Jet/wiki). ## Questions + Any questions about how to use `EntityFrameworkCore.Jet` can be ask on [StackOverflow](https://stackoverflow.com/) using the `jet-ef-provider` and `entity-framework-core` tags. diff --git a/src/Directory.Build.props b/src/Directory.Build.props index 0c1c105..1f92c78 100644 --- a/src/Directory.Build.props +++ b/src/Directory.Build.props @@ -37,6 +37,6 @@ true true snupkg - 3.6 + $(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb diff --git a/src/EFCore.Jet/Properties/JetStrings.resx b/src/EFCore.Jet/Properties/JetStrings.resx index 2d93c68..5fc70de 100644 --- a/src/EFCore.Jet/Properties/JetStrings.resx +++ b/src/EFCore.Jet/Properties/JetStrings.resx @@ -118,7 +118,7 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - Generating idempotent scripts for migration is not currently supported by Jet. For more information, see https://github.com/bubibubi/EntityFrameworkCore.Jet/wiki. + Generating idempotent scripts for migration is not currently supported by Jet. For more information, see https://github.com/CirrusRedOrg/EntityFrameworkCore.Jet/wiki. Identity value generation cannot be used for the property '{property}' on entity type '{entityType}' because the property type is '{propertyType}'. Identity value generation can only be used with signed integer properties.