Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Refactor NuGet package dependencies and the MSIL-only packages. Make System.Data.SQLite.MSIL into pure 'meta-packages'. Stop depending on System.Data.SQLite.Core from EF6/Linq packages. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | nuGetRefactor |
Files: | files | file ages | folders |
SHA1: |
d4f804aa46c7e94017762d95cf30b5ba |
User & Date: | mistachkin 2015-02-13 18:43:25.294 |
Context
2015-02-13
| ||
19:43 | Legacy package cleanup. Revise tests to include the EntityFramework version. Update downloads page. check-in: f0e4722e5a user: mistachkin tags: nuGetRefactor | |
18:43 | Refactor NuGet package dependencies and the MSIL-only packages. Make System.Data.SQLite.MSIL into pure 'meta-packages'. Stop depending on System.Data.SQLite.Core from EF6/Linq packages. check-in: d4f804aa46 user: mistachkin tags: nuGetRefactor | |
2015-02-12
| ||
23:53 | Add PrepareRetries connection string property to allow the maximum number of retries when preparing a query to be overridden. Fix for [647d282d11]. check-in: 39f91f897d user: mistachkin tags: trunk | |
Changes
Changes to NuGet/SQLite.EF6.Beta.nuspec.
︙ | ︙ | |||
17 18 19 20 21 22 23 | <language>en-US</language> <projectUrl>https://system.data.sqlite.org/</projectUrl> <iconUrl>https://system.data.sqlite.org/images/sqlite128.png</iconUrl> <licenseUrl>https://www.sqlite.org/copyright.html</licenseUrl> <tags>sqlite database ado.net provider interop</tags> <copyright>Public Domain</copyright> <dependencies> | < < < < < < < < < | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | <language>en-US</language> <projectUrl>https://system.data.sqlite.org/</projectUrl> <iconUrl>https://system.data.sqlite.org/images/sqlite128.png</iconUrl> <licenseUrl>https://www.sqlite.org/copyright.html</licenseUrl> <tags>sqlite database ado.net provider interop</tags> <copyright>Public Domain</copyright> <dependencies> <group targetFramework="net40"> <dependency id="EntityFramework" version="6.1.2.0" /> </group> <group targetFramework="net45"> <dependency id="EntityFramework" version="6.1.2.0" /> </group> <group targetFramework="net451"> |
︙ | ︙ |
Changes to NuGet/SQLite.EF6.Test.nuspec.
︙ | ︙ | |||
17 18 19 20 21 22 23 | <language>en-US</language> <projectUrl>https://system.data.sqlite.org/</projectUrl> <iconUrl>https://system.data.sqlite.org/images/sqlite128.png</iconUrl> <licenseUrl>https://www.sqlite.org/copyright.html</licenseUrl> <tags>sqlite database ado.net provider interop</tags> <copyright>Public Domain</copyright> <dependencies> | < < < < < < < < < | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | <language>en-US</language> <projectUrl>https://system.data.sqlite.org/</projectUrl> <iconUrl>https://system.data.sqlite.org/images/sqlite128.png</iconUrl> <licenseUrl>https://www.sqlite.org/copyright.html</licenseUrl> <tags>sqlite database ado.net provider interop</tags> <copyright>Public Domain</copyright> <dependencies> <group targetFramework="net40"> <dependency id="EntityFramework" version="6.1.2.0" /> </group> <group targetFramework="net45"> <dependency id="EntityFramework" version="6.1.2.0" /> </group> <group targetFramework="net451"> |
︙ | ︙ |
Changes to NuGet/SQLite.EF6.nuspec.
︙ | ︙ | |||
17 18 19 20 21 22 23 | <language>en-US</language> <projectUrl>https://system.data.sqlite.org/</projectUrl> <iconUrl>https://system.data.sqlite.org/images/sqlite128.png</iconUrl> <licenseUrl>https://www.sqlite.org/copyright.html</licenseUrl> <tags>sqlite database ado.net provider interop</tags> <copyright>Public Domain</copyright> <dependencies> | < < < < < < < < < | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | <language>en-US</language> <projectUrl>https://system.data.sqlite.org/</projectUrl> <iconUrl>https://system.data.sqlite.org/images/sqlite128.png</iconUrl> <licenseUrl>https://www.sqlite.org/copyright.html</licenseUrl> <tags>sqlite database ado.net provider interop</tags> <copyright>Public Domain</copyright> <dependencies> <group targetFramework="net40"> <dependency id="EntityFramework" version="6.1.2.0" /> </group> <group targetFramework="net45"> <dependency id="EntityFramework" version="6.1.2.0" /> </group> <group targetFramework="net451"> |
︙ | ︙ |
Changes to NuGet/SQLite.Linq.Beta.nuspec.
︙ | ︙ | |||
16 17 18 19 20 21 22 | <description>This is a "beta" package and is not intended for production use. Support for LINQ using System.Data.SQLite.</description> <language>en-US</language> <projectUrl>https://system.data.sqlite.org/</projectUrl> <iconUrl>https://system.data.sqlite.org/images/sqlite128.png</iconUrl> <licenseUrl>https://www.sqlite.org/copyright.html</licenseUrl> <tags>sqlite database ado.net provider interop</tags> <copyright>Public Domain</copyright> | < < < < < < < < < < < < < < | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | <description>This is a "beta" package and is not intended for production use. Support for LINQ using System.Data.SQLite.</description> <language>en-US</language> <projectUrl>https://system.data.sqlite.org/</projectUrl> <iconUrl>https://system.data.sqlite.org/images/sqlite128.png</iconUrl> <licenseUrl>https://www.sqlite.org/copyright.html</licenseUrl> <tags>sqlite database ado.net provider interop</tags> <copyright>Public Domain</copyright> </metadata> <files> <file src="..\bin\2008\Release\bin\System.Data.SQLite.Linq.dll" target="lib\net20" /> <file src="..\bin\2010\Release\bin\System.Data.SQLite.Linq.dll" target="lib\net40" /> <file src="..\bin\2012\Release\bin\System.Data.SQLite.Linq.dll" target="lib\net45" /> <file src="..\bin\2013\Release\bin\System.Data.SQLite.Linq.dll" target="lib\net451" /> <file src="shared\Core\content\config.transform" target="content\net20\app.config.transform" /> |
︙ | ︙ |
Changes to NuGet/SQLite.Linq.Test.nuspec.
︙ | ︙ | |||
16 17 18 19 20 21 22 | <description>This is a pre-release package and is not intended for production use. Support for LINQ using System.Data.SQLite.</description> <language>en-US</language> <projectUrl>https://system.data.sqlite.org/</projectUrl> <iconUrl>https://system.data.sqlite.org/images/sqlite128.png</iconUrl> <licenseUrl>https://www.sqlite.org/copyright.html</licenseUrl> <tags>sqlite database ado.net provider interop</tags> <copyright>Public Domain</copyright> | < < < < < < < < < < < < < < | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | <description>This is a pre-release package and is not intended for production use. Support for LINQ using System.Data.SQLite.</description> <language>en-US</language> <projectUrl>https://system.data.sqlite.org/</projectUrl> <iconUrl>https://system.data.sqlite.org/images/sqlite128.png</iconUrl> <licenseUrl>https://www.sqlite.org/copyright.html</licenseUrl> <tags>sqlite database ado.net provider interop</tags> <copyright>Public Domain</copyright> </metadata> <files> <file src="..\bin\2008\Release\bin\System.Data.SQLite.Linq.dll" target="lib\net20" /> <file src="..\bin\2010\Release\bin\System.Data.SQLite.Linq.dll" target="lib\net40" /> <file src="..\bin\2012\Release\bin\System.Data.SQLite.Linq.dll" target="lib\net45" /> <file src="..\bin\2013\Release\bin\System.Data.SQLite.Linq.dll" target="lib\net451" /> <file src="shared\Core\content\config.transform" target="content\net20\app.config.transform" /> |
︙ | ︙ |
Changes to NuGet/SQLite.Linq.nuspec.
︙ | ︙ | |||
16 17 18 19 20 21 22 | <description>Support for LINQ using System.Data.SQLite.</description> <language>en-US</language> <projectUrl>https://system.data.sqlite.org/</projectUrl> <iconUrl>https://system.data.sqlite.org/images/sqlite128.png</iconUrl> <licenseUrl>https://www.sqlite.org/copyright.html</licenseUrl> <tags>sqlite database ado.net provider interop</tags> <copyright>Public Domain</copyright> | < < < < < < < < < < < < < < | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | <description>Support for LINQ using System.Data.SQLite.</description> <language>en-US</language> <projectUrl>https://system.data.sqlite.org/</projectUrl> <iconUrl>https://system.data.sqlite.org/images/sqlite128.png</iconUrl> <licenseUrl>https://www.sqlite.org/copyright.html</licenseUrl> <tags>sqlite database ado.net provider interop</tags> <copyright>Public Domain</copyright> </metadata> <files> <file src="..\bin\2008\Release\bin\System.Data.SQLite.Linq.dll" target="lib\net20" /> <file src="..\bin\2010\Release\bin\System.Data.SQLite.Linq.dll" target="lib\net40" /> <file src="..\bin\2012\Release\bin\System.Data.SQLite.Linq.dll" target="lib\net45" /> <file src="..\bin\2013\Release\bin\System.Data.SQLite.Linq.dll" target="lib\net451" /> <file src="shared\Core\content\config.transform" target="content\net20\app.config.transform" /> |
︙ | ︙ |
Changes to NuGet/SQLite.MSIL.Beta.nuspec.
︙ | ︙ | |||
17 18 19 20 21 22 23 24 | <language>en-US</language> <projectUrl>https://system.data.sqlite.org/</projectUrl> <iconUrl>https://system.data.sqlite.org/images/sqlite128.png</iconUrl> <licenseUrl>https://www.sqlite.org/copyright.html</licenseUrl> <tags>sqlite database ado.net provider interop</tags> <copyright>Public Domain</copyright> <dependencies> <group targetFramework="net40"> | > > > > > > > > > > > > | > > > | | > > > > > > > > > | < < < < < < < < < < < < < < < < < < < < < < < < < < < | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | <language>en-US</language> <projectUrl>https://system.data.sqlite.org/</projectUrl> <iconUrl>https://system.data.sqlite.org/images/sqlite128.png</iconUrl> <licenseUrl>https://www.sqlite.org/copyright.html</licenseUrl> <tags>sqlite database ado.net provider interop</tags> <copyright>Public Domain</copyright> <dependencies> <group targetFramework="net20"> <dependency id="System.Data.SQLite.Core.MSIL.Beta" version="1.0.95.0" /> </group> <group targetFramework="net40"> <dependency id="System.Data.SQLite.Core.MSIL.Beta" version="1.0.95.0" /> </group> <group targetFramework="net45"> <dependency id="System.Data.SQLite.Core.MSIL.Beta" version="1.0.95.0" /> </group> <group targetFramework="net451"> <dependency id="System.Data.SQLite.Core.MSIL.Beta" version="1.0.95.0" /> </group> <group targetFramework="net20"> <dependency id="System.Data.SQLite.Linq.Beta" version="1.0.95.0" /> </group> <group targetFramework="net40"> <dependency id="System.Data.SQLite.Linq.Beta" version="1.0.95.0" /> </group> <group targetFramework="net45"> <dependency id="System.Data.SQLite.Linq.Beta" version="1.0.95.0" /> </group> <group targetFramework="net451"> <dependency id="System.Data.SQLite.Linq.Beta" version="1.0.95.0" /> </group> <group targetFramework="net40"> <dependency id="System.Data.SQLite.EF6.Beta" version="1.0.95.0" /> </group> <group targetFramework="net45"> <dependency id="System.Data.SQLite.EF6.Beta" version="1.0.95.0" /> </group> <group targetFramework="net451"> <dependency id="System.Data.SQLite.EF6.Beta" version="1.0.95.0" /> </group> </dependencies> </metadata> <files /> </package> |
Changes to NuGet/SQLite.MSIL.Test.nuspec.
︙ | ︙ | |||
17 18 19 20 21 22 23 24 | <language>en-US</language> <projectUrl>https://system.data.sqlite.org/</projectUrl> <iconUrl>https://system.data.sqlite.org/images/sqlite128.png</iconUrl> <licenseUrl>https://www.sqlite.org/copyright.html</licenseUrl> <tags>sqlite database ado.net provider interop</tags> <copyright>Public Domain</copyright> <dependencies> <group targetFramework="net40"> | > > > > > > > > > > > > | > > > | | > > > > > > > > > | < < < < < < < < < < < < < < < < < < < < < < < < < < < | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | <language>en-US</language> <projectUrl>https://system.data.sqlite.org/</projectUrl> <iconUrl>https://system.data.sqlite.org/images/sqlite128.png</iconUrl> <licenseUrl>https://www.sqlite.org/copyright.html</licenseUrl> <tags>sqlite database ado.net provider interop</tags> <copyright>Public Domain</copyright> <dependencies> <group targetFramework="net20"> <dependency id="System.Data.SQLite.Core.MSIL.Test" version="1.0.95.0" /> </group> <group targetFramework="net40"> <dependency id="System.Data.SQLite.Core.MSIL.Test" version="1.0.95.0" /> </group> <group targetFramework="net45"> <dependency id="System.Data.SQLite.Core.MSIL.Test" version="1.0.95.0" /> </group> <group targetFramework="net451"> <dependency id="System.Data.SQLite.Core.MSIL.Test" version="1.0.95.0" /> </group> <group targetFramework="net20"> <dependency id="System.Data.SQLite.Linq.Test" version="1.0.95.0" /> </group> <group targetFramework="net40"> <dependency id="System.Data.SQLite.Linq.Test" version="1.0.95.0" /> </group> <group targetFramework="net45"> <dependency id="System.Data.SQLite.Linq.Test" version="1.0.95.0" /> </group> <group targetFramework="net451"> <dependency id="System.Data.SQLite.Linq.Test" version="1.0.95.0" /> </group> <group targetFramework="net40"> <dependency id="System.Data.SQLite.EF6.Test" version="1.0.95.0" /> </group> <group targetFramework="net45"> <dependency id="System.Data.SQLite.EF6.Test" version="1.0.95.0" /> </group> <group targetFramework="net451"> <dependency id="System.Data.SQLite.EF6.Test" version="1.0.95.0" /> </group> </dependencies> </metadata> <files /> </package> |
Changes to NuGet/SQLite.MSIL.nuspec.
︙ | ︙ | |||
17 18 19 20 21 22 23 24 | <language>en-US</language> <projectUrl>https://system.data.sqlite.org/</projectUrl> <iconUrl>https://system.data.sqlite.org/images/sqlite128.png</iconUrl> <licenseUrl>https://www.sqlite.org/copyright.html</licenseUrl> <tags>sqlite database ado.net provider interop</tags> <copyright>Public Domain</copyright> <dependencies> <group targetFramework="net40"> | > > > > > > > > > > > > | > > > | | > > > > > > > > > | < < < < < < < < < < < < < < < < < < < < < < < < < < < | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | <language>en-US</language> <projectUrl>https://system.data.sqlite.org/</projectUrl> <iconUrl>https://system.data.sqlite.org/images/sqlite128.png</iconUrl> <licenseUrl>https://www.sqlite.org/copyright.html</licenseUrl> <tags>sqlite database ado.net provider interop</tags> <copyright>Public Domain</copyright> <dependencies> <group targetFramework="net20"> <dependency id="System.Data.SQLite.Core.MSIL" version="1.0.95.0" /> </group> <group targetFramework="net40"> <dependency id="System.Data.SQLite.Core.MSIL" version="1.0.95.0" /> </group> <group targetFramework="net45"> <dependency id="System.Data.SQLite.Core.MSIL" version="1.0.95.0" /> </group> <group targetFramework="net451"> <dependency id="System.Data.SQLite.Core.MSIL" version="1.0.95.0" /> </group> <group targetFramework="net20"> <dependency id="System.Data.SQLite.Linq" version="1.0.95.0" /> </group> <group targetFramework="net40"> <dependency id="System.Data.SQLite.Linq" version="1.0.95.0" /> </group> <group targetFramework="net45"> <dependency id="System.Data.SQLite.Linq" version="1.0.95.0" /> </group> <group targetFramework="net451"> <dependency id="System.Data.SQLite.Linq" version="1.0.95.0" /> </group> <group targetFramework="net40"> <dependency id="System.Data.SQLite.EF6" version="1.0.95.0" /> </group> <group targetFramework="net45"> <dependency id="System.Data.SQLite.EF6" version="1.0.95.0" /> </group> <group targetFramework="net451"> <dependency id="System.Data.SQLite.EF6" version="1.0.95.0" /> </group> </dependencies> </metadata> <files /> </package> |
Changes to Tests/version.eagle.
︙ | ︙ | |||
384 385 386 387 388 389 390 | ############################################################################### # SQLite.EF6.nuspec ############################################################################### lappend patterns \ [appendArgs <version> [string map [list . \\.] $version(nuget)] \ | | < < < < < < | < < < < < < | < < < < < < | < < < < < < < < | < < < < < < < < | < < < < < < < < | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 | ############################################################################### # SQLite.EF6.nuspec ############################################################################### lappend patterns \ [appendArgs <version> [string map [list . \\.] $version(nuget)] \ </version>] ############################################################################### # SQLite.EF6.Beta.nuspec ############################################################################### lappend patterns \ [appendArgs <version> [string map [list . \\.] $version(nuget)] \ </version>] ############################################################################### # SQLite.EF6.Test.nuspec ############################################################################### lappend patterns \ [appendArgs <version> [string map [list . \\.] $version(nuget)] \ </version>] ############################################################################### # SQLite.Linq.nuspec ############################################################################### lappend patterns \ [appendArgs <version> [string map [list . \\.] $version(nuget)] \ </version>] ############################################################################### # SQLite.Linq.Beta.nuspec ############################################################################### lappend patterns \ [appendArgs <version> [string map [list . \\.] $version(nuget)] \ </version>] ############################################################################### # SQLite.Linq.Test.nuspec ############################################################################### lappend patterns \ [appendArgs <version> [string map [list . \\.] $version(nuget)] \ </version>] ############################################################################### # SQLite.MSIL.nuspec ############################################################################### lappend patterns \ [appendArgs <version> [string map [list . \\.] $version(nuget)] \ </version>] \ [appendArgs " targetFramework=\"net20\".*? " \ "id=\"System\\.Data\\.SQLite\\.Core\\.MSIL\" version=\"" \ $version(nuget) "\" "] \ [appendArgs " targetFramework=\"net40\".*? " \ "id=\"System\\.Data\\.SQLite\\.Core\\.MSIL\" version=\"" \ $version(nuget) "\" "] \ [appendArgs " targetFramework=\"net45\".*? " \ "id=\"System\\.Data\\.SQLite\\.Core\\.MSIL\" version=\"" \ $version(nuget) "\" "] \ [appendArgs " targetFramework=\"net451\".*? " \ "id=\"System\\.Data\\.SQLite\\.Core\\.MSIL\" version=\"" \ $version(nuget) "\" "] \ [appendArgs " targetFramework=\"net20\".*? " \ "id=\"System\\.Data\\.SQLite\\.Linq\" version=\"" $version(nuget) \ "\" "] \ [appendArgs " targetFramework=\"net40\".*? " \ "id=\"System\\.Data\\.SQLite\\.Linq\" version=\"" $version(nuget) \ "\" "] \ [appendArgs " targetFramework=\"net45\".*? " \ "id=\"System\\.Data\\.SQLite\\.Linq\" version=\"" $version(nuget) \ "\" "] \ [appendArgs " targetFramework=\"net451\".*? " \ "id=\"System\\.Data\\.SQLite\\.Linq\" version=\"" $version(nuget) \ "\" "] \ [appendArgs " targetFramework=\"net40\".*? " \ "id=\"System\\.Data\\.SQLite\\.EF6\" version=\"" $version(nuget) \ "\" "] \ [appendArgs " targetFramework=\"net45\".*? " \ "id=\"System\\.Data\\.SQLite\\.EF6\" version=\"" $version(nuget) \ "\" "] \ [appendArgs " targetFramework=\"net451\".*? " \ "id=\"System\\.Data\\.SQLite\\.EF6\" version=\"" $version(nuget) \ "\" "] ############################################################################### # SQLite.MSIL.Beta.nuspec ############################################################################### lappend patterns \ [appendArgs <version> [string map [list . \\.] $version(nuget)] \ </version>] \ [appendArgs " targetFramework=\"net20\".*? " \ "id=\"System\\.Data\\.SQLite\\.Core\\.MSIL\\.Beta\" version=\"" \ $version(nuget) "\" "] \ [appendArgs " targetFramework=\"net40\".*? " \ "id=\"System\\.Data\\.SQLite\\.Core\\.MSIL\\.Beta\" version=\"" \ $version(nuget) "\" "] \ [appendArgs " targetFramework=\"net45\".*? " \ "id=\"System\\.Data\\.SQLite\\.Core\\.MSIL\\.Beta\" version=\"" \ $version(nuget) "\" "] \ [appendArgs " targetFramework=\"net451\".*? " \ "id=\"System\\.Data\\.SQLite\\.Core\\.MSIL\\.Beta\" version=\"" \ $version(nuget) "\" "] \ [appendArgs " targetFramework=\"net20\".*? " \ "id=\"System\\.Data\\.SQLite\\.Linq\\.Beta\" version=\"" \ $version(nuget) "\" "] \ [appendArgs " targetFramework=\"net40\".*? " \ "id=\"System\\.Data\\.SQLite\\.Linq\\.Beta\" version=\"" \ $version(nuget) "\" "] \ [appendArgs " targetFramework=\"net45\".*? " \ "id=\"System\\.Data\\.SQLite\\.Linq\\.Beta\" version=\"" \ $version(nuget) "\" "] \ [appendArgs " targetFramework=\"net451\".*? " \ "id=\"System\\.Data\\.SQLite\\.Linq\\.Beta\" version=\"" \ $version(nuget) "\" "] \ [appendArgs " targetFramework=\"net40\".*? " \ "id=\"System\\.Data\\.SQLite\\.EF6\\.Beta\" version=\"" \ $version(nuget) "\" "] \ [appendArgs " targetFramework=\"net45\".*? " \ "id=\"System\\.Data\\.SQLite\\.EF6\\.Beta\" version=\"" \ $version(nuget) "\" "] \ [appendArgs " targetFramework=\"net451\".*? " \ "id=\"System\\.Data\\.SQLite\\.EF6\\.Beta\" version=\"" \ $version(nuget) "\" "] ############################################################################### # SQLite.MSIL.Test.nuspec ############################################################################### lappend patterns \ [appendArgs <version> [string map [list . \\.] $version(nuget)] \ </version>] \ [appendArgs " targetFramework=\"net20\".*? " \ "id=\"System\\.Data\\.SQLite\\.Core\\.MSIL\\.Test\" version=\"" \ $version(nuget) "\" "] \ [appendArgs " targetFramework=\"net40\".*? " \ "id=\"System\\.Data\\.SQLite\\.Core\\.MSIL\\.Test\" version=\"" \ $version(nuget) "\" "] \ [appendArgs " targetFramework=\"net45\".*? " \ "id=\"System\\.Data\\.SQLite\\.Core\\.MSIL\\.Test\" version=\"" \ $version(nuget) "\" "] \ [appendArgs " targetFramework=\"net451\".*? " \ "id=\"System\\.Data\\.SQLite\\.Core\\.MSIL\\.Test\" version=\"" \ $version(nuget) "\" "] \ [appendArgs " targetFramework=\"net20\".*? " \ "id=\"System\\.Data\\.SQLite\\.Linq\\.Test\" version=\"" \ $version(nuget) "\" "] \ [appendArgs " targetFramework=\"net40\".*? " \ "id=\"System\\.Data\\.SQLite\\.Linq\\.Test\" version=\"" \ $version(nuget) "\" "] \ [appendArgs " targetFramework=\"net45\".*? " \ "id=\"System\\.Data\\.SQLite\\.Linq\\.Test\" version=\"" \ $version(nuget) "\" "] \ [appendArgs " targetFramework=\"net451\".*? " \ "id=\"System\\.Data\\.SQLite\\.Linq\\.Test\" version=\"" \ $version(nuget) "\" "] \ [appendArgs " targetFramework=\"net40\".*? " \ "id=\"System\\.Data\\.SQLite\\.EF6\\.Test\" version=\"" \ $version(nuget) "\" "] \ [appendArgs " targetFramework=\"net45\".*? " \ "id=\"System\\.Data\\.SQLite\\.EF6\\.Test\" version=\"" \ $version(nuget) "\" "] \ [appendArgs " targetFramework=\"net451\".*? " \ "id=\"System\\.Data\\.SQLite\\.EF6\\.Test\" version=\"" \ $version(nuget) "\" "] ############################################################################### # SQLite.Test.nuspec ############################################################################### lappend patterns \ [appendArgs <version> [string map [list . \\.] $version(nuget)] \ |
︙ | ︙ | |||
828 829 830 831 832 833 834 | [file join NuGet SQLite.Core.nuspec] \ [file join NuGet SQLite.Core.Beta.nuspec] \ [file join NuGet SQLite.Core.Test.nuspec] \ [file join NuGet SQLite.Core.MSIL.nuspec] \ [file join NuGet SQLite.Core.MSIL.Beta.nuspec] \ [file join NuGet SQLite.Core.MSIL.Test.nuspec] \ [file join NuGet SQLite.EF6.nuspec] \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | > > > > > > > > > > > > | 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 | [file join NuGet SQLite.Core.nuspec] \ [file join NuGet SQLite.Core.Beta.nuspec] \ [file join NuGet SQLite.Core.Test.nuspec] \ [file join NuGet SQLite.Core.MSIL.nuspec] \ [file join NuGet SQLite.Core.MSIL.Beta.nuspec] \ [file join NuGet SQLite.Core.MSIL.Test.nuspec] \ [file join NuGet SQLite.EF6.nuspec] \ [file join NuGet SQLite.EF6.Beta.nuspec] \ [file join NuGet SQLite.EF6.Test.nuspec] \ [file join NuGet SQLite.Linq.nuspec] \ [file join NuGet SQLite.Linq.Beta.nuspec] \ [file join NuGet SQLite.Linq.Test.nuspec] \ [file join NuGet SQLite.MSIL.nuspec] \ [file join NuGet SQLite.MSIL.nuspec] \ [file join NuGet SQLite.MSIL.nuspec] \ [file join NuGet SQLite.MSIL.nuspec] \ [file join NuGet SQLite.MSIL.nuspec] \ [file join NuGet SQLite.MSIL.nuspec] \ [file join NuGet SQLite.MSIL.nuspec] \ [file join NuGet SQLite.MSIL.nuspec] \ [file join NuGet SQLite.MSIL.nuspec] \ [file join NuGet SQLite.MSIL.nuspec] \ [file join NuGet SQLite.MSIL.nuspec] \ [file join NuGet SQLite.MSIL.nuspec] \ [file join NuGet SQLite.MSIL.Beta.nuspec] \ [file join NuGet SQLite.MSIL.Beta.nuspec] \ [file join NuGet SQLite.MSIL.Beta.nuspec] \ [file join NuGet SQLite.MSIL.Beta.nuspec] \ [file join NuGet SQLite.MSIL.Beta.nuspec] \ [file join NuGet SQLite.MSIL.Beta.nuspec] \ [file join NuGet SQLite.MSIL.Beta.nuspec] \ [file join NuGet SQLite.MSIL.Beta.nuspec] \ [file join NuGet SQLite.MSIL.Beta.nuspec] \ [file join NuGet SQLite.MSIL.Beta.nuspec] \ [file join NuGet SQLite.MSIL.Beta.nuspec] \ [file join NuGet SQLite.MSIL.Beta.nuspec] \ [file join NuGet SQLite.MSIL.Test.nuspec] \ [file join NuGet SQLite.MSIL.Test.nuspec] \ [file join NuGet SQLite.MSIL.Test.nuspec] \ [file join NuGet SQLite.MSIL.Test.nuspec] \ [file join NuGet SQLite.MSIL.Test.nuspec] \ [file join NuGet SQLite.MSIL.Test.nuspec] \ [file join NuGet SQLite.MSIL.Test.nuspec] \ [file join NuGet SQLite.MSIL.Test.nuspec] \ [file join NuGet SQLite.MSIL.Test.nuspec] \ [file join NuGet SQLite.MSIL.Test.nuspec] \ [file join NuGet SQLite.MSIL.Test.nuspec] \ [file join NuGet SQLite.MSIL.Test.nuspec] \ [file join NuGet SQLite.Test.nuspec] \ [file join NuGet SQLite.Test.nuspec] \ [file join NuGet SQLite.Test.nuspec] \ [file join NuGet SQLite.Test.nuspec] \ [file join NuGet SQLite.Test.nuspec] \ [file join NuGet SQLite.Test.nuspec] \ |
︙ | ︙ |