Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | In the NuGet package building tool, make sure the build output directory is present. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
9384e9b2ac959536473a253b6dc818b7 |
User & Date: | mistachkin 2015-02-06 20:51:32.761 |
Context
2015-02-06
| ||
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 | |
2015-02-05
| ||
21:16 | Add experimental XDT transform to the NuGet packages for EF6 to enable them to remove non-EF6 DbProviderFactories. This is needed because EF6 seems to intermittently select the 'wrong' one when there are multiple choices available. check-in: 8c2130e985 user: mistachkin tags: trunk | |
Changes
Changes to Setup/build_nuget.bat.
︙ | ︙ | |||
37 38 39 40 41 42 43 44 45 46 47 48 49 50 | %_VECHO% Tools = '%TOOLS%' IF NOT DEFINED NUGET ( SET NUGET=NuGet.exe ) %_VECHO% NuGet = '%NUGET%' %__ECHO% "%NUGET%" pack "%ROOT%\NuGet\SQLite.nuspec" IF ERRORLEVEL 1 ( ECHO The "%ROOT%\NuGet\SQLite.nuspec" package could not be built. GOTO usage ) | > > > > > > > > > > > | 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | %_VECHO% Tools = '%TOOLS%' IF NOT DEFINED NUGET ( SET NUGET=NuGet.exe ) %_VECHO% NuGet = '%NUGET%' CALL :fn_ResetErrorLevel IF NOT EXIST "%ROOT%\Setup\Output" ( %__ECHO% MKDIR "%ROOT%\Setup\Output" IF ERRORLEVEL 1 ( ECHO Could not create directory "%ROOT%\Setup\Output". GOTO errors ) ) %__ECHO% "%NUGET%" pack "%ROOT%\NuGet\SQLite.nuspec" IF ERRORLEVEL 1 ( ECHO The "%ROOT%\NuGet\SQLite.nuspec" package could not be built. GOTO usage ) |
︙ | ︙ |