Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Modify the XDT transform used by the EF6 NuGet packages to omit removal of the EF6 provider itself. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
7737ecc51ba416c32ff4e06c0136665b |
User & Date: | mistachkin 2015-02-06 23:06:20.650 |
Context
2015-02-07
| ||
01:14 | Switch to Visual C++ Redistributable for Visual Studio 2012 Update 4. Update the master release archive manifest. check-in: ee4f54fca8 user: mistachkin tags: trunk | |
2015-02-06
| ||
23:59 | Merge updates from trunk. check-in: c4f39e9ba4 user: mistachkin tags: preRelease | |
23:06 | Modify the XDT transform used by the EF6 NuGet packages to omit removal of the EF6 provider itself. check-in: 7737ecc51b user: mistachkin tags: trunk | |
20:51 | In the NuGet package building tool, make sure the build output directory is present. check-in: 9384e9b2ac user: mistachkin tags: trunk | |
Changes
Changes to NuGet/shared/Core/content/config.install.xdt.
1 2 3 4 5 | <configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform"> <system.data> <DbProviderFactories> <remove xdt:Transform="RemoveAll" xdt:Locator="Condition(@invariant='System.Data.SQLite' or | | < | < | 1 2 3 4 5 6 7 8 9 10 11 12 | <configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform"> <system.data> <DbProviderFactories> <remove xdt:Transform="RemoveAll" xdt:Locator="Condition(@invariant='System.Data.SQLite' or @invariant='System.Data.SQLite.Linq')" /> <add xdt:Transform="RemoveAll" xdt:Locator="Condition(@invariant='System.Data.SQLite' or @invariant='System.Data.SQLite.Linq')" /> </DbProviderFactories> </system.data> </configuration> |