Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Initial work on porting the primary managed assembly to .NET Standard 2.0 (using .NET Core 2.0). |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | netStandard20 |
Files: | files | file ages | folders |
SHA1: |
b93695026101f419a4f1d53298aeaa7c |
User & Date: | mistachkin 2018-04-05 04:51:59.364 |
Context
2018-04-05
| ||
05:08 | Fix the naming of the 'year' batch files to they can more easily coexist with the 'framework' batch files. check-in: bf7fffa914 user: mistachkin tags: netStandard20 | |
04:51 | Initial work on porting the primary managed assembly to .NET Standard 2.0 (using .NET Core 2.0). check-in: b936950261 user: mistachkin tags: netStandard20 | |
03:45 | Pickup the SQLite core library 3.23.0 docs from upstream. check-in: 6bb5d25e27 user: mistachkin tags: trunk | |
Changes
Changes to Setup/build.bat.
︙ | |||
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 | 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 | + + + + + + + + + + + + + + + + + | IF NOT DEFINED MSBUILD ( SET MSBUILD=MSBuild.exe ) %_VECHO% MsBuild = '%MSBUILD%' IF NOT DEFINED DOTNET ( SET DOTNET=dotnet.exe ) %_VECHO% DotNet = '%DOTNET%' IF NOT DEFINED CSC ( SET CSC=csc.exe ) %_VECHO% Csc = '%CSC%' REM REM TODO: When the next version of Visual Studio is released, this section REM may need updating. REM IF DEFINED NETCORE20ONLY ( %_AECHO% Forcing the use of the .NET Core 2.0... IF NOT DEFINED YEAR ( SET YEAR=NetStandard20 ) CALL :fn_VerifyDotNetCore SET NOBUILDTOOLDIR=1 SET USEDOTNET=1 GOTO setup_buildToolDir ) IF DEFINED NETFX20ONLY ( %_AECHO% Forcing the use of the .NET Framework 2.0... SET YEAR=2005 CALL :fn_CheckFrameworkDir v2.0.50727 GOTO setup_buildToolDir ) |
︙ | |||
294 295 296 297 298 299 300 | 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 | + + + + - - - - - + + + + + + + - - - - - - - - + + + + + + + + + + - + + | SET YEAR=2005 ) ) ) :setup_buildToolDir %_VECHO% NoBuildToolDir = '%NOBUILDTOOLDIR%' %_VECHO% UseDotNet = '%USEDOTNET%' IF NOT DEFINED NOBUILDTOOLDIR ( |
︙ | |||
403 404 405 406 407 408 409 410 411 412 413 414 415 416 | 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 | + + + + + + + + + + | IF NOT DEFINED TEMP ( ECHO Temporary directory must be defined. GOTO errors ) %_VECHO% Temp = '%TEMP%' IF NOT DEFINED LOGASM ( IF DEFINED USEDOTNET ( SET LOGASM=Microsoft.Build ) ELSE ( SET LOGASM=Microsoft.Build.Engine ) ) %_VECHO% LogAsm = '%LOGASM%' IF NOT DEFINED LOGDIR ( SET LOGDIR=%TEMP% ) %_VECHO% LogDir = '%LOGDIR%' IF NOT DEFINED LOGPREFIX ( |
︙ | |||
424 425 426 427 428 429 430 | 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 | - + + + | ) %_VECHO% LogSuffix = '%LOGSUFFIX%' IF DEFINED LOGGING GOTO skip_setLogging IF DEFINED NOLOG GOTO skip_setLogging |
︙ | |||
477 478 479 480 481 482 483 | 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 | + + + + + + - + + - + | ) ) ELSE ( ECHO WARNING: Source tagging skipped, disabled via NOTAG environment variable. ) CALL :fn_CopyVariable MSBUILD_ARGS_%BASE_CONFIGURATION% MSBUILD_ARGS_CFG IF DEFINED USEDOTNET ( SET MSBUILD=%DOTNET% SET SUBCOMMANDS=build ) ELSE ( CALL :fn_UnsetVariable SUBCOMMANDS ) |
︙ | |||
702 703 704 705 706 707 708 709 710 711 712 713 714 715 | 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 | + + + + + + + + + + | IF DEFINED BUILDTOOLDIR IF NOT EXIST "%BUILDTOOLDIR%\%CSC%" IF NOT EXIST "%BUILDTOOLDIR%\Roslyn\%CSC%" ( %_AECHO% File "%CSC%" not in build tool directory, unsetting... CALL :fn_UnsetVariable BUILDTOOLDIR GOTO :EOF ) %_AECHO% Build tool directory "%BUILDTOOLDIR%" verified. GOTO :EOF :fn_VerifyDotNetCore FOR %%T IN (%DOTNET%) DO ( SET %%T_PATH=%%~dp$PATH:T ) IF NOT DEFINED %DOTNET%_PATH ( ECHO The .NET Core executable "%DOTNET%" is required to be in the PATH. GOTO errors ) GOTO :EOF :fn_UnquoteVariable IF NOT DEFINED %1 GOTO :EOF SETLOCAL SET __ECHO_CMD=ECHO %%%1%% FOR /F "delims=" %%V IN ('%__ECHO_CMD%') DO ( SET VALUE=%%V |
︙ |
Changes to Setup/data/verify.lst.
︙ | |||
310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 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 | 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 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 | + + + + + + + | Setup/set_Debug_x86_2005.bat Setup/set_Debug_x86_2008.bat Setup/set_Debug_x86_2010.bat Setup/set_Debug_x86_2012.bat Setup/set_Debug_x86_2013.bat Setup/set_Debug_x86_2015.bat Setup/set_Debug_x86_2017.bat Setup/set_Debug_x86_NetStandard20.bat Setup/set_DebugNativeOnly.bat Setup/set_DebugNativeOnly_ARMV7.bat "Setup/set_DebugNativeOnly_CEPC DevPlatform.bat" "Setup/set_DebugNativeOnly_Pocket PC 2003 (ARMV4).bat" Setup/set_DebugNativeOnly_Win32.bat Setup/set_DebugNativeOnly_x64.bat Setup/set_DebugNativeOnly_x64_2005.bat Setup/set_DebugNativeOnly_x64_2008.bat Setup/set_DebugNativeOnly_x64_2010.bat Setup/set_DebugNativeOnly_x64_2012.bat Setup/set_DebugNativeOnly_x64_2013.bat Setup/set_DebugNativeOnly_x64_2015.bat Setup/set_DebugNativeOnly_x64_2017.bat Setup/set_DebugNativeOnly_x86_2005.bat Setup/set_DebugNativeOnly_x86_2008.bat Setup/set_DebugNativeOnly_x86_2010.bat Setup/set_DebugNativeOnly_x86_2012.bat Setup/set_DebugNativeOnly_x86_2013.bat Setup/set_DebugNativeOnly_x86_2015.bat Setup/set_DebugNativeOnly_x86_2017.bat Setup/set_DebugNativeOnly_x86_NetStandard20.bat Setup/set_netCore20.bat Setup/set_netFx20.bat Setup/set_netFx35.bat Setup/set_netFx40.bat Setup/set_netFx45.bat Setup/set_netFx451.bat Setup/set_netFx452.bat Setup/set_netFx46.bat Setup/set_netFx461.bat Setup/set_netFx462.bat Setup/set_netFx47.bat Setup/set_netFx471.bat Setup/set_NetStandard20.bat Setup/set_Release.bat Setup/set_Release_ARMV7.bat "Setup/set_Release_CEPC DevPlatform.bat" "Setup/set_Release_Pocket PC 2003 (ARMV4).bat" Setup/set_Release_Win32.bat Setup/set_Release_x64.bat Setup/set_Release_x64_2005.bat Setup/set_Release_x64_2008.bat Setup/set_Release_x64_2010.bat Setup/set_Release_x64_2012.bat Setup/set_Release_x64_2013.bat Setup/set_Release_x64_2015.bat Setup/set_Release_x64_2017.bat Setup/set_Release_x86_2005.bat Setup/set_Release_x86_2008.bat Setup/set_Release_x86_2010.bat Setup/set_Release_x86_2012.bat Setup/set_Release_x86_2013.bat Setup/set_Release_x86_2015.bat Setup/set_Release_x86_2017.bat Setup/set_Release_x86_NetStandard20.bat Setup/set_ReleaseNativeOnly.bat Setup/set_ReleaseNativeOnly_ARMV7.bat "Setup/set_ReleaseNativeOnly_CEPC DevPlatform.bat" "Setup/set_ReleaseNativeOnly_Pocket PC 2003 (ARMV4).bat" Setup/set_ReleaseNativeOnly_Win32.bat Setup/set_ReleaseNativeOnly_x64.bat Setup/set_ReleaseNativeOnly_x64_2005.bat Setup/set_ReleaseNativeOnly_x64_2008.bat Setup/set_ReleaseNativeOnly_x64_2010.bat Setup/set_ReleaseNativeOnly_x64_2012.bat Setup/set_ReleaseNativeOnly_x64_2013.bat Setup/set_ReleaseNativeOnly_x64_2015.bat Setup/set_ReleaseNativeOnly_x64_2017.bat Setup/set_ReleaseNativeOnly_x86_2005.bat Setup/set_ReleaseNativeOnly_x86_2008.bat Setup/set_ReleaseNativeOnly_x86_2010.bat Setup/set_ReleaseNativeOnly_x86_2012.bat Setup/set_ReleaseNativeOnly_x86_2013.bat Setup/set_ReleaseNativeOnly_x86_2015.bat Setup/set_ReleaseNativeOnly_x86_2017.bat Setup/set_ReleaseNativeOnly_x86_NetStandard20.bat Setup/set_x64_2005.bat Setup/set_x64_2008.bat Setup/set_x64_2010.bat Setup/set_x64_2012.bat Setup/set_x64_2013.bat Setup/set_x64_2015.bat Setup/set_x64_2017.bat Setup/set_x86_2005.bat Setup/set_x86_2008.bat Setup/set_x86_2010.bat Setup/set_x86_2012.bat Setup/set_x86_2013.bat Setup/set_x86_2015.bat Setup/set_x86_2017.bat Setup/set_x86_NetStandard20.bat Setup/sourceTag.eagle Setup/test.bat Setup/test_all.bat Setup/test_ce_200x.bat Setup/updateFileInfo.tcl Setup/verify.eagle Setup/vsSp.bat |
︙ |
Changes to Setup/set_2005.bat.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | + | @ECHO OFF :: :: set_2005.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET NETCORE20ONLY= SET NETFX20ONLY=1 SET NETFX35ONLY= SET NETFX40ONLY= SET NETFX45ONLY= SET NETFX451ONLY= SET NETFX452ONLY= SET NETFX46ONLY= |
︙ |
Changes to Setup/set_2008.bat.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | + | @ECHO OFF :: :: set_2008.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET NETCORE20ONLY= SET NETFX20ONLY= SET NETFX35ONLY=1 SET NETFX40ONLY= SET NETFX45ONLY= SET NETFX451ONLY= SET NETFX452ONLY= SET NETFX46ONLY= |
︙ |
Changes to Setup/set_2010.bat.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | + | @ECHO OFF :: :: set_2010.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET NETCORE20ONLY= SET NETFX20ONLY= SET NETFX35ONLY= SET NETFX40ONLY=1 SET NETFX45ONLY= SET NETFX451ONLY= SET NETFX452ONLY= SET NETFX46ONLY= |
︙ |
Changes to Setup/set_2012.bat.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | + | @ECHO OFF :: :: set_2012.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET NETCORE20ONLY= SET NETFX20ONLY= SET NETFX35ONLY= SET NETFX40ONLY= SET NETFX45ONLY=1 SET NETFX451ONLY= SET NETFX452ONLY= SET NETFX46ONLY= |
︙ |
Changes to Setup/set_2013.bat.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | + | @ECHO OFF :: :: set_2013.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET NETCORE20ONLY= SET NETFX20ONLY= SET NETFX35ONLY= SET NETFX40ONLY= SET NETFX45ONLY= SET NETFX451ONLY=1 SET NETFX452ONLY= SET NETFX46ONLY= |
︙ |
Changes to Setup/set_2015.bat.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | + | @ECHO OFF :: :: set_2015.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET NETCORE20ONLY= SET NETFX20ONLY= SET NETFX35ONLY= SET NETFX40ONLY= SET NETFX45ONLY= SET NETFX451ONLY= SET NETFX452ONLY= SET NETFX46ONLY=1 |
︙ |
Changes to Setup/set_2017.bat.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | + | @ECHO OFF :: :: set_2017.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET NETCORE20ONLY= SET NETFX20ONLY= SET NETFX35ONLY= SET NETFX40ONLY= SET NETFX45ONLY= SET NETFX451ONLY= SET NETFX452ONLY= SET NETFX46ONLY= |
︙ |
Added Setup/set_DebugNativeOnly_x86_NetStandard20.bat.
|
Added Setup/set_Debug_x86_NetStandard20.bat.
|
Added Setup/set_NetStandard20.bat.
|
Added Setup/set_ReleaseNativeOnly_x86_NetStandard20.bat.
|
Added Setup/set_Release_x86_NetStandard20.bat.
|
Changes to Setup/set_common.bat.
︙ | |||
130 131 132 133 134 135 136 137 138 | 130 131 132 133 134 135 136 137 138 139 140 141 142 | + + + + | ) IF NOT DEFINED NOVS2017 ( IF DEFINED VS2017SP ( SET YEARS=%YEARS% 2017 ) ) IF NOT DEFINED NONETSTANDARD20 ( SET YEARS=%YEARS% NetStandard20 ) :end_of_file |
Added Setup/set_netCore20.bat.
|
Added Setup/set_x86_NetStandard20.bat.
|
Changes to System.Data.SQLite/LINQ/SQLiteFactory_Linq.cs.
︙ | |||
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 | 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 | + + | (_dbProviderServicesType != null && serviceType == _dbProviderServicesType)) { return GetSQLiteProviderServicesInstance(); } return null; } #if !NET_STANDARD_20 [ReflectionPermission(SecurityAction.Assert, MemberAccess = true)] #endif private object GetSQLiteProviderServicesInstance() { if (_sqliteServices == null) { string typeName = UnsafeNativeMethods.GetSettingValue( "TypeName_SQLiteProviderServices", null); |
︙ |
Changes to System.Data.SQLite/SQLiteDefineConstants.cs.
︙ | |||
139 140 141 142 143 144 145 146 147 148 149 150 151 152 | 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 | + + + + | #if NET_471 "NET_471", #endif #if NET_COMPACT_20 "NET_COMPACT_20", #endif #if NET_STANDARD_20 "NET_STANDARD_20", #endif #if PLATFORM_COMPACTFRAMEWORK "PLATFORM_COMPACTFRAMEWORK", #endif #if PRELOAD_NATIVE_LIBRARY "PRELOAD_NATIVE_LIBRARY", |
︙ |
Changes to System.Data.SQLite/SQLiteFunction.cs.
︙ | |||
640 641 642 643 644 645 646 | 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 | - + | } } /// <summary> /// Using reflection, enumerate all assemblies in the current appdomain looking for classes that /// have a SQLiteFunctionAttribute attribute, and registering them accordingly. /// </summary> |
︙ |
Added System.Data.SQLite/System.Data.SQLite.NetStandard20.csproj.