Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Initial work on supporting the .NET Standard 2.1 (and .NET Core 3.0). |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | netStandard21 |
Files: | files | file ages | folders |
SHA1: |
c1dd57b1a15dc13bcbd16e371cf9236b |
User & Date: | mistachkin 2019-10-05 17:47:27.873 |
Context
2019-10-05
| ||
17:58 | Set executable bits. check-in: d7701b72b8 user: mistachkin tags: netStandard21 | |
17:47 | Initial work on supporting the .NET Standard 2.1 (and .NET Core 3.0). check-in: c1dd57b1a1 user: mistachkin tags: netStandard21 | |
03:32 | Add support for new DBCONFIG options from the SQLite core library. Pursuant to [03b6b0edd7]. check-in: 42082ffc4d user: mistachkin tags: trunk | |
Changes
Changes to NuGet/SQLite.EF6.Beta.nuspec.
︙ | ︙ | |||
18 19 20 21 22 23 24 | <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"> | | | | | > > > > > > > > > > | 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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | <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.3.0" /> </group> <group targetFramework="net45"> <dependency id="EntityFramework" version="6.3.0" /> </group> <group targetFramework="net451"> <dependency id="EntityFramework" version="6.3.0" /> </group> <group targetFramework="net46"> <dependency id="EntityFramework" version="6.3.0" /> </group> <group targetFramework="netstandard2.1"> <dependency id="EntityFramework" version="6.3.0" /> </group> </dependencies> </metadata> <files> <file src="..\bin\2010\Release\bin\System.Data.SQLite.EF6.dll" target="lib\net40" /> <file src="..\bin\2012\Release\bin\System.Data.SQLite.EF6.dll" target="lib\net45" /> <file src="..\bin\2013\Release\bin\System.Data.SQLite.EF6.dll" target="lib\net451" /> <file src="..\bin\2015\Release\bin\System.Data.SQLite.EF6.dll" target="lib\net46" /> <file src="..\bin\NetStandard21\ReleaseNetStandard21\bin\netstandard2.1\System.Data.SQLite.EF6.dll" target="lib\netstandard2.1" /> <file src="..\bin\NetStandard21\ReleaseNetStandard21\bin\netstandard2.1\System.Data.SQLite.EF6.xml" target="lib\netstandard2.1" /> <file src="shared\Core\content\config.install.xdt" target="content\net40\app.config.install.xdt" /> <file src="shared\Core\content\config.install.xdt" target="content\net40\web.config.install.xdt" /> <file src="shared\Core\content\config.install.xdt" target="content\net45\app.config.install.xdt" /> <file src="shared\Core\content\config.install.xdt" target="content\net45\web.config.install.xdt" /> <file src="shared\Core\content\config.install.xdt" target="content\net451\app.config.install.xdt" /> <file src="shared\Core\content\config.install.xdt" target="content\net451\web.config.install.xdt" /> <file src="shared\Core\content\config.install.xdt" target="content\net46\app.config.install.xdt" /> <file src="shared\Core\content\config.install.xdt" target="content\net46\web.config.install.xdt" /> <file src="shared\Core\content\config.install.xdt" target="content\netstandard2.1\app.config.install.xdt" /> <file src="shared\Core\content\config.install.xdt" target="content\netstandard2.1\web.config.install.xdt" /> <file src="net40\EF6\content\config.transform" target="content\net40\app.config.transform" /> <file src="net40\EF6\content\config.transform" target="content\net40\web.config.transform" /> <file src="net40\EF6\content\config.transform" target="content\net45\app.config.transform" /> <file src="net40\EF6\content\config.transform" target="content\net45\web.config.transform" /> <file src="net40\EF6\content\config.transform" target="content\net451\app.config.transform" /> <file src="net40\EF6\content\config.transform" target="content\net451\web.config.transform" /> <file src="net40\EF6\content\config.transform" target="content\net46\app.config.transform" /> <file src="net40\EF6\content\config.transform" target="content\net46\web.config.transform" /> <file src="net40\EF6\content\config.transform" target="content\netstandard2.1\app.config.transform" /> <file src="net40\EF6\content\config.transform" target="content\netstandard2.1\web.config.transform" /> <file src="net40\EF6\tools\provider.ps1" target="tools\net40\install.ps1" /> <file src="net40\EF6\tools\provider.ps1" target="tools\net45\install.ps1" /> <file src="net40\EF6\tools\provider.ps1" target="tools\net451\install.ps1" /> <file src="net40\EF6\tools\provider.ps1" target="tools\net46\install.ps1" /> <file src="net40\EF6\tools\provider.ps1" target="tools\netstandard2.1\install.ps1" /> </files> </package> |
Changes to NuGet/SQLite.EF6.Test.nuspec.
︙ | ︙ | |||
18 19 20 21 22 23 24 | <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"> | | | | | > > > > > > > > > > | 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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | <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.3.0" /> </group> <group targetFramework="net45"> <dependency id="EntityFramework" version="6.3.0" /> </group> <group targetFramework="net451"> <dependency id="EntityFramework" version="6.3.0" /> </group> <group targetFramework="net46"> <dependency id="EntityFramework" version="6.3.0" /> </group> <group targetFramework="netstandard2.1"> <dependency id="EntityFramework" version="6.3.0" /> </group> </dependencies> </metadata> <files> <file src="..\bin\2010\Release\bin\System.Data.SQLite.EF6.dll" target="lib\net40" /> <file src="..\bin\2012\Release\bin\System.Data.SQLite.EF6.dll" target="lib\net45" /> <file src="..\bin\2013\Release\bin\System.Data.SQLite.EF6.dll" target="lib\net451" /> <file src="..\bin\2015\Release\bin\System.Data.SQLite.EF6.dll" target="lib\net46" /> <file src="..\bin\NetStandard21\ReleaseNetStandard21\bin\netstandard2.1\System.Data.SQLite.EF6.dll" target="lib\netstandard2.1" /> <file src="..\bin\NetStandard21\ReleaseNetStandard21\bin\netstandard2.1\System.Data.SQLite.EF6.xml" target="lib\netstandard2.1" /> <file src="shared\Core\content\config.install.xdt" target="content\net40\app.config.install.xdt" /> <file src="shared\Core\content\config.install.xdt" target="content\net40\web.config.install.xdt" /> <file src="shared\Core\content\config.install.xdt" target="content\net45\app.config.install.xdt" /> <file src="shared\Core\content\config.install.xdt" target="content\net45\web.config.install.xdt" /> <file src="shared\Core\content\config.install.xdt" target="content\net451\app.config.install.xdt" /> <file src="shared\Core\content\config.install.xdt" target="content\net451\web.config.install.xdt" /> <file src="shared\Core\content\config.install.xdt" target="content\net46\app.config.install.xdt" /> <file src="shared\Core\content\config.install.xdt" target="content\net46\web.config.install.xdt" /> <file src="shared\Core\content\config.install.xdt" target="content\netstandard2.1\app.config.install.xdt" /> <file src="shared\Core\content\config.install.xdt" target="content\netstandard2.1\web.config.install.xdt" /> <file src="net40\EF6\content\config.transform" target="content\net40\app.config.transform" /> <file src="net40\EF6\content\config.transform" target="content\net40\web.config.transform" /> <file src="net40\EF6\content\config.transform" target="content\net45\app.config.transform" /> <file src="net40\EF6\content\config.transform" target="content\net45\web.config.transform" /> <file src="net40\EF6\content\config.transform" target="content\net451\app.config.transform" /> <file src="net40\EF6\content\config.transform" target="content\net451\web.config.transform" /> <file src="net40\EF6\content\config.transform" target="content\net46\app.config.transform" /> <file src="net40\EF6\content\config.transform" target="content\net46\web.config.transform" /> <file src="net40\EF6\content\config.transform" target="content\netstandard2.1\app.config.transform" /> <file src="net40\EF6\content\config.transform" target="content\netstandard2.1\web.config.transform" /> <file src="net40\EF6\tools\provider.ps1" target="tools\net40\install.ps1" /> <file src="net40\EF6\tools\provider.ps1" target="tools\net45\install.ps1" /> <file src="net40\EF6\tools\provider.ps1" target="tools\net451\install.ps1" /> <file src="net40\EF6\tools\provider.ps1" target="tools\net46\install.ps1" /> <file src="net40\EF6\tools\provider.ps1" target="tools\netstandard2.1\install.ps1" /> </files> </package> |
Changes to NuGet/SQLite.EF6.nuspec.
︙ | ︙ | |||
18 19 20 21 22 23 24 | <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"> | | | | | > > > > > > > > > > | 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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | <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.3.0" /> </group> <group targetFramework="net45"> <dependency id="EntityFramework" version="6.3.0" /> </group> <group targetFramework="net451"> <dependency id="EntityFramework" version="6.3.0" /> </group> <group targetFramework="net46"> <dependency id="EntityFramework" version="6.3.0" /> </group> <group targetFramework="netstandard2.1"> <dependency id="EntityFramework" version="6.3.0" /> </group> </dependencies> </metadata> <files> <file src="..\bin\2010\Release\bin\System.Data.SQLite.EF6.dll" target="lib\net40" /> <file src="..\bin\2012\Release\bin\System.Data.SQLite.EF6.dll" target="lib\net45" /> <file src="..\bin\2013\Release\bin\System.Data.SQLite.EF6.dll" target="lib\net451" /> <file src="..\bin\2015\Release\bin\System.Data.SQLite.EF6.dll" target="lib\net46" /> <file src="..\bin\NetStandard21\ReleaseNetStandard21\bin\netstandard2.1\System.Data.SQLite.EF6.dll" target="lib\netstandard2.1" /> <file src="..\bin\NetStandard21\ReleaseNetStandard21\bin\netstandard2.1\System.Data.SQLite.EF6.xml" target="lib\netstandard2.1" /> <file src="shared\Core\content\config.install.xdt" target="content\net40\app.config.install.xdt" /> <file src="shared\Core\content\config.install.xdt" target="content\net40\web.config.install.xdt" /> <file src="shared\Core\content\config.install.xdt" target="content\net45\app.config.install.xdt" /> <file src="shared\Core\content\config.install.xdt" target="content\net45\web.config.install.xdt" /> <file src="shared\Core\content\config.install.xdt" target="content\net451\app.config.install.xdt" /> <file src="shared\Core\content\config.install.xdt" target="content\net451\web.config.install.xdt" /> <file src="shared\Core\content\config.install.xdt" target="content\net46\app.config.install.xdt" /> <file src="shared\Core\content\config.install.xdt" target="content\net46\web.config.install.xdt" /> <file src="shared\Core\content\config.install.xdt" target="content\netstandard2.1\app.config.install.xdt" /> <file src="shared\Core\content\config.install.xdt" target="content\netstandard2.1\web.config.install.xdt" /> <file src="net40\EF6\content\config.transform" target="content\net40\app.config.transform" /> <file src="net40\EF6\content\config.transform" target="content\net40\web.config.transform" /> <file src="net40\EF6\content\config.transform" target="content\net45\app.config.transform" /> <file src="net40\EF6\content\config.transform" target="content\net45\web.config.transform" /> <file src="net40\EF6\content\config.transform" target="content\net451\app.config.transform" /> <file src="net40\EF6\content\config.transform" target="content\net451\web.config.transform" /> <file src="net40\EF6\content\config.transform" target="content\net46\app.config.transform" /> <file src="net40\EF6\content\config.transform" target="content\net46\web.config.transform" /> <file src="net40\EF6\content\config.transform" target="content\netstandard2.1\app.config.transform" /> <file src="net40\EF6\content\config.transform" target="content\netstandard2.1\web.config.transform" /> <file src="net40\EF6\tools\provider.ps1" target="tools\net40\install.ps1" /> <file src="net40\EF6\tools\provider.ps1" target="tools\net45\install.ps1" /> <file src="net40\EF6\tools\provider.ps1" target="tools\net451\install.ps1" /> <file src="net40\EF6\tools\provider.ps1" target="tools\net46\install.ps1" /> <file src="net40\EF6\tools\provider.ps1" target="tools\netstandard2.1\install.ps1" /> </files> </package> |
Changes to SQLite.NET.2005.MSBuild.sln.
︙ | ︙ | |||
33 34 35 36 37 38 39 40 41 42 43 44 45 46 | NuGet\SQLite.x86.nuspec = NuGet\SQLite.x86.nuspec readme.htm = readme.htm System.Data.SQLite\Targets\System.Data.SQLite.Files.targets = System.Data.SQLite\Targets\System.Data.SQLite.Files.targets System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets = System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets System.Data.SQLite\Targets\System.Data.SQLite.References.targets = System.Data.SQLite\Targets\System.Data.SQLite.References.targets Targets\SQLite.NET.Mono.Settings.targets = Targets\SQLite.NET.Mono.Settings.targets Targets\SQLite.NET.NetStandard20.Settings.targets = Targets\SQLite.NET.NetStandard20.Settings.targets Targets\SQLite.NET.Platform.Settings.targets = Targets\SQLite.NET.Platform.Settings.targets Targets\SQLite.NET.Settings.targets = Targets\SQLite.NET.Settings.targets Targets\SQLite.NET.Settings.targets.netFx35 = Targets\SQLite.NET.Settings.targets.netFx35 Targets\SQLite.NET.Settings.targets.netFx40 = Targets\SQLite.NET.Settings.targets.netFx40 Targets\SQLite.NET.targets = Targets\SQLite.NET.targets EndProjectSection EndProject | > | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | NuGet\SQLite.x86.nuspec = NuGet\SQLite.x86.nuspec readme.htm = readme.htm System.Data.SQLite\Targets\System.Data.SQLite.Files.targets = System.Data.SQLite\Targets\System.Data.SQLite.Files.targets System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets = System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets System.Data.SQLite\Targets\System.Data.SQLite.References.targets = System.Data.SQLite\Targets\System.Data.SQLite.References.targets Targets\SQLite.NET.Mono.Settings.targets = Targets\SQLite.NET.Mono.Settings.targets Targets\SQLite.NET.NetStandard20.Settings.targets = Targets\SQLite.NET.NetStandard20.Settings.targets Targets\SQLite.NET.NetStandard21.Settings.targets = Targets\SQLite.NET.NetStandard21.Settings.targets Targets\SQLite.NET.Platform.Settings.targets = Targets\SQLite.NET.Platform.Settings.targets Targets\SQLite.NET.Settings.targets = Targets\SQLite.NET.Settings.targets Targets\SQLite.NET.Settings.targets.netFx35 = Targets\SQLite.NET.Settings.targets.netFx35 Targets\SQLite.NET.Settings.targets.netFx40 = Targets\SQLite.NET.Settings.targets.netFx40 Targets\SQLite.NET.targets = Targets\SQLite.NET.targets EndProjectSection EndProject |
︙ | ︙ |
Changes to SQLite.NET.2005.sln.
︙ | ︙ | |||
33 34 35 36 37 38 39 40 41 42 43 44 45 46 | NuGet\SQLite.x86.nuspec = NuGet\SQLite.x86.nuspec readme.htm = readme.htm System.Data.SQLite\Targets\System.Data.SQLite.Files.targets = System.Data.SQLite\Targets\System.Data.SQLite.Files.targets System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets = System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets System.Data.SQLite\Targets\System.Data.SQLite.References.targets = System.Data.SQLite\Targets\System.Data.SQLite.References.targets Targets\SQLite.NET.Mono.Settings.targets = Targets\SQLite.NET.Mono.Settings.targets Targets\SQLite.NET.NetStandard20.Settings.targets = Targets\SQLite.NET.NetStandard20.Settings.targets Targets\SQLite.NET.Platform.Settings.targets = Targets\SQLite.NET.Platform.Settings.targets Targets\SQLite.NET.Settings.targets = Targets\SQLite.NET.Settings.targets Targets\SQLite.NET.Settings.targets.netFx35 = Targets\SQLite.NET.Settings.targets.netFx35 Targets\SQLite.NET.Settings.targets.netFx40 = Targets\SQLite.NET.Settings.targets.netFx40 Targets\SQLite.NET.targets = Targets\SQLite.NET.targets EndProjectSection EndProject | > | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | NuGet\SQLite.x86.nuspec = NuGet\SQLite.x86.nuspec readme.htm = readme.htm System.Data.SQLite\Targets\System.Data.SQLite.Files.targets = System.Data.SQLite\Targets\System.Data.SQLite.Files.targets System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets = System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets System.Data.SQLite\Targets\System.Data.SQLite.References.targets = System.Data.SQLite\Targets\System.Data.SQLite.References.targets Targets\SQLite.NET.Mono.Settings.targets = Targets\SQLite.NET.Mono.Settings.targets Targets\SQLite.NET.NetStandard20.Settings.targets = Targets\SQLite.NET.NetStandard20.Settings.targets Targets\SQLite.NET.NetStandard21.Settings.targets = Targets\SQLite.NET.NetStandard21.Settings.targets Targets\SQLite.NET.Platform.Settings.targets = Targets\SQLite.NET.Platform.Settings.targets Targets\SQLite.NET.Settings.targets = Targets\SQLite.NET.Settings.targets Targets\SQLite.NET.Settings.targets.netFx35 = Targets\SQLite.NET.Settings.targets.netFx35 Targets\SQLite.NET.Settings.targets.netFx40 = Targets\SQLite.NET.Settings.targets.netFx40 Targets\SQLite.NET.targets = Targets\SQLite.NET.targets EndProjectSection EndProject |
︙ | ︙ |
Changes to SQLite.NET.2008.MSBuild.sln.
︙ | ︙ | |||
33 34 35 36 37 38 39 40 41 42 43 44 45 46 | NuGet\SQLite.x86.nuspec = NuGet\SQLite.x86.nuspec readme.htm = readme.htm System.Data.SQLite\Targets\System.Data.SQLite.Files.targets = System.Data.SQLite\Targets\System.Data.SQLite.Files.targets System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets = System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets System.Data.SQLite\Targets\System.Data.SQLite.References.targets = System.Data.SQLite\Targets\System.Data.SQLite.References.targets Targets\SQLite.NET.Mono.Settings.targets = Targets\SQLite.NET.Mono.Settings.targets Targets\SQLite.NET.NetStandard20.Settings.targets = Targets\SQLite.NET.NetStandard20.Settings.targets Targets\SQLite.NET.Platform.Settings.targets = Targets\SQLite.NET.Platform.Settings.targets Targets\SQLite.NET.Settings.targets = Targets\SQLite.NET.Settings.targets Targets\SQLite.NET.Settings.targets.netFx35 = Targets\SQLite.NET.Settings.targets.netFx35 Targets\SQLite.NET.Settings.targets.netFx40 = Targets\SQLite.NET.Settings.targets.netFx40 Targets\SQLite.NET.targets = Targets\SQLite.NET.targets EndProjectSection EndProject | > | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | NuGet\SQLite.x86.nuspec = NuGet\SQLite.x86.nuspec readme.htm = readme.htm System.Data.SQLite\Targets\System.Data.SQLite.Files.targets = System.Data.SQLite\Targets\System.Data.SQLite.Files.targets System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets = System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets System.Data.SQLite\Targets\System.Data.SQLite.References.targets = System.Data.SQLite\Targets\System.Data.SQLite.References.targets Targets\SQLite.NET.Mono.Settings.targets = Targets\SQLite.NET.Mono.Settings.targets Targets\SQLite.NET.NetStandard20.Settings.targets = Targets\SQLite.NET.NetStandard20.Settings.targets Targets\SQLite.NET.NetStandard21.Settings.targets = Targets\SQLite.NET.NetStandard21.Settings.targets Targets\SQLite.NET.Platform.Settings.targets = Targets\SQLite.NET.Platform.Settings.targets Targets\SQLite.NET.Settings.targets = Targets\SQLite.NET.Settings.targets Targets\SQLite.NET.Settings.targets.netFx35 = Targets\SQLite.NET.Settings.targets.netFx35 Targets\SQLite.NET.Settings.targets.netFx40 = Targets\SQLite.NET.Settings.targets.netFx40 Targets\SQLite.NET.targets = Targets\SQLite.NET.targets EndProjectSection EndProject |
︙ | ︙ |
Changes to SQLite.NET.2008.sln.
︙ | ︙ | |||
33 34 35 36 37 38 39 40 41 42 43 44 45 46 | NuGet\SQLite.x86.nuspec = NuGet\SQLite.x86.nuspec readme.htm = readme.htm System.Data.SQLite\Targets\System.Data.SQLite.Files.targets = System.Data.SQLite\Targets\System.Data.SQLite.Files.targets System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets = System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets System.Data.SQLite\Targets\System.Data.SQLite.References.targets = System.Data.SQLite\Targets\System.Data.SQLite.References.targets Targets\SQLite.NET.Mono.Settings.targets = Targets\SQLite.NET.Mono.Settings.targets Targets\SQLite.NET.NetStandard20.Settings.targets = Targets\SQLite.NET.NetStandard20.Settings.targets Targets\SQLite.NET.Platform.Settings.targets = Targets\SQLite.NET.Platform.Settings.targets Targets\SQLite.NET.Settings.targets = Targets\SQLite.NET.Settings.targets Targets\SQLite.NET.Settings.targets.netFx35 = Targets\SQLite.NET.Settings.targets.netFx35 Targets\SQLite.NET.Settings.targets.netFx40 = Targets\SQLite.NET.Settings.targets.netFx40 Targets\SQLite.NET.targets = Targets\SQLite.NET.targets EndProjectSection EndProject | > | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | NuGet\SQLite.x86.nuspec = NuGet\SQLite.x86.nuspec readme.htm = readme.htm System.Data.SQLite\Targets\System.Data.SQLite.Files.targets = System.Data.SQLite\Targets\System.Data.SQLite.Files.targets System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets = System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets System.Data.SQLite\Targets\System.Data.SQLite.References.targets = System.Data.SQLite\Targets\System.Data.SQLite.References.targets Targets\SQLite.NET.Mono.Settings.targets = Targets\SQLite.NET.Mono.Settings.targets Targets\SQLite.NET.NetStandard20.Settings.targets = Targets\SQLite.NET.NetStandard20.Settings.targets Targets\SQLite.NET.NetStandard21.Settings.targets = Targets\SQLite.NET.NetStandard21.Settings.targets Targets\SQLite.NET.Platform.Settings.targets = Targets\SQLite.NET.Platform.Settings.targets Targets\SQLite.NET.Settings.targets = Targets\SQLite.NET.Settings.targets Targets\SQLite.NET.Settings.targets.netFx35 = Targets\SQLite.NET.Settings.targets.netFx35 Targets\SQLite.NET.Settings.targets.netFx40 = Targets\SQLite.NET.Settings.targets.netFx40 Targets\SQLite.NET.targets = Targets\SQLite.NET.targets EndProjectSection EndProject |
︙ | ︙ |
Changes to SQLite.NET.2010.MSBuild.sln.
︙ | ︙ | |||
33 34 35 36 37 38 39 40 41 42 43 44 45 46 | NuGet\SQLite.x86.nuspec = NuGet\SQLite.x86.nuspec readme.htm = readme.htm System.Data.SQLite\Targets\System.Data.SQLite.Files.targets = System.Data.SQLite\Targets\System.Data.SQLite.Files.targets System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets = System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets System.Data.SQLite\Targets\System.Data.SQLite.References.targets = System.Data.SQLite\Targets\System.Data.SQLite.References.targets Targets\SQLite.NET.Mono.Settings.targets = Targets\SQLite.NET.Mono.Settings.targets Targets\SQLite.NET.NetStandard20.Settings.targets = Targets\SQLite.NET.NetStandard20.Settings.targets Targets\SQLite.NET.Platform.Settings.targets = Targets\SQLite.NET.Platform.Settings.targets Targets\SQLite.NET.Settings.targets = Targets\SQLite.NET.Settings.targets Targets\SQLite.NET.Settings.targets.netFx35 = Targets\SQLite.NET.Settings.targets.netFx35 Targets\SQLite.NET.Settings.targets.netFx40 = Targets\SQLite.NET.Settings.targets.netFx40 Targets\SQLite.NET.targets = Targets\SQLite.NET.targets EndProjectSection EndProject | > | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | NuGet\SQLite.x86.nuspec = NuGet\SQLite.x86.nuspec readme.htm = readme.htm System.Data.SQLite\Targets\System.Data.SQLite.Files.targets = System.Data.SQLite\Targets\System.Data.SQLite.Files.targets System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets = System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets System.Data.SQLite\Targets\System.Data.SQLite.References.targets = System.Data.SQLite\Targets\System.Data.SQLite.References.targets Targets\SQLite.NET.Mono.Settings.targets = Targets\SQLite.NET.Mono.Settings.targets Targets\SQLite.NET.NetStandard20.Settings.targets = Targets\SQLite.NET.NetStandard20.Settings.targets Targets\SQLite.NET.NetStandard21.Settings.targets = Targets\SQLite.NET.NetStandard21.Settings.targets Targets\SQLite.NET.Platform.Settings.targets = Targets\SQLite.NET.Platform.Settings.targets Targets\SQLite.NET.Settings.targets = Targets\SQLite.NET.Settings.targets Targets\SQLite.NET.Settings.targets.netFx35 = Targets\SQLite.NET.Settings.targets.netFx35 Targets\SQLite.NET.Settings.targets.netFx40 = Targets\SQLite.NET.Settings.targets.netFx40 Targets\SQLite.NET.targets = Targets\SQLite.NET.targets EndProjectSection EndProject |
︙ | ︙ |
Changes to SQLite.NET.2010.sln.
︙ | ︙ | |||
33 34 35 36 37 38 39 40 41 42 43 44 45 46 | NuGet\SQLite.x86.nuspec = NuGet\SQLite.x86.nuspec readme.htm = readme.htm System.Data.SQLite\Targets\System.Data.SQLite.Files.targets = System.Data.SQLite\Targets\System.Data.SQLite.Files.targets System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets = System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets System.Data.SQLite\Targets\System.Data.SQLite.References.targets = System.Data.SQLite\Targets\System.Data.SQLite.References.targets Targets\SQLite.NET.Mono.Settings.targets = Targets\SQLite.NET.Mono.Settings.targets Targets\SQLite.NET.NetStandard20.Settings.targets = Targets\SQLite.NET.NetStandard20.Settings.targets Targets\SQLite.NET.Platform.Settings.targets = Targets\SQLite.NET.Platform.Settings.targets Targets\SQLite.NET.Settings.targets = Targets\SQLite.NET.Settings.targets Targets\SQLite.NET.Settings.targets.netFx35 = Targets\SQLite.NET.Settings.targets.netFx35 Targets\SQLite.NET.Settings.targets.netFx40 = Targets\SQLite.NET.Settings.targets.netFx40 Targets\SQLite.NET.targets = Targets\SQLite.NET.targets EndProjectSection EndProject | > | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | NuGet\SQLite.x86.nuspec = NuGet\SQLite.x86.nuspec readme.htm = readme.htm System.Data.SQLite\Targets\System.Data.SQLite.Files.targets = System.Data.SQLite\Targets\System.Data.SQLite.Files.targets System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets = System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets System.Data.SQLite\Targets\System.Data.SQLite.References.targets = System.Data.SQLite\Targets\System.Data.SQLite.References.targets Targets\SQLite.NET.Mono.Settings.targets = Targets\SQLite.NET.Mono.Settings.targets Targets\SQLite.NET.NetStandard20.Settings.targets = Targets\SQLite.NET.NetStandard20.Settings.targets Targets\SQLite.NET.NetStandard21.Settings.targets = Targets\SQLite.NET.NetStandard21.Settings.targets Targets\SQLite.NET.Platform.Settings.targets = Targets\SQLite.NET.Platform.Settings.targets Targets\SQLite.NET.Settings.targets = Targets\SQLite.NET.Settings.targets Targets\SQLite.NET.Settings.targets.netFx35 = Targets\SQLite.NET.Settings.targets.netFx35 Targets\SQLite.NET.Settings.targets.netFx40 = Targets\SQLite.NET.Settings.targets.netFx40 Targets\SQLite.NET.targets = Targets\SQLite.NET.targets EndProjectSection EndProject |
︙ | ︙ |
Changes to SQLite.NET.2012.MSBuild.sln.
︙ | ︙ | |||
33 34 35 36 37 38 39 40 41 42 43 44 45 46 | NuGet\SQLite.x86.nuspec = NuGet\SQLite.x86.nuspec readme.htm = readme.htm System.Data.SQLite\Targets\System.Data.SQLite.Files.targets = System.Data.SQLite\Targets\System.Data.SQLite.Files.targets System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets = System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets System.Data.SQLite\Targets\System.Data.SQLite.References.targets = System.Data.SQLite\Targets\System.Data.SQLite.References.targets Targets\SQLite.NET.Mono.Settings.targets = Targets\SQLite.NET.Mono.Settings.targets Targets\SQLite.NET.NetStandard20.Settings.targets = Targets\SQLite.NET.NetStandard20.Settings.targets Targets\SQLite.NET.Platform.Settings.targets = Targets\SQLite.NET.Platform.Settings.targets Targets\SQLite.NET.Settings.targets = Targets\SQLite.NET.Settings.targets Targets\SQLite.NET.Settings.targets.netFx35 = Targets\SQLite.NET.Settings.targets.netFx35 Targets\SQLite.NET.Settings.targets.netFx40 = Targets\SQLite.NET.Settings.targets.netFx40 Targets\SQLite.NET.targets = Targets\SQLite.NET.targets EndProjectSection EndProject | > | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | NuGet\SQLite.x86.nuspec = NuGet\SQLite.x86.nuspec readme.htm = readme.htm System.Data.SQLite\Targets\System.Data.SQLite.Files.targets = System.Data.SQLite\Targets\System.Data.SQLite.Files.targets System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets = System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets System.Data.SQLite\Targets\System.Data.SQLite.References.targets = System.Data.SQLite\Targets\System.Data.SQLite.References.targets Targets\SQLite.NET.Mono.Settings.targets = Targets\SQLite.NET.Mono.Settings.targets Targets\SQLite.NET.NetStandard20.Settings.targets = Targets\SQLite.NET.NetStandard20.Settings.targets Targets\SQLite.NET.NetStandard21.Settings.targets = Targets\SQLite.NET.NetStandard21.Settings.targets Targets\SQLite.NET.Platform.Settings.targets = Targets\SQLite.NET.Platform.Settings.targets Targets\SQLite.NET.Settings.targets = Targets\SQLite.NET.Settings.targets Targets\SQLite.NET.Settings.targets.netFx35 = Targets\SQLite.NET.Settings.targets.netFx35 Targets\SQLite.NET.Settings.targets.netFx40 = Targets\SQLite.NET.Settings.targets.netFx40 Targets\SQLite.NET.targets = Targets\SQLite.NET.targets EndProjectSection EndProject |
︙ | ︙ |
Changes to SQLite.NET.2012.sln.
︙ | ︙ | |||
33 34 35 36 37 38 39 40 41 42 43 44 45 46 | NuGet\SQLite.x86.nuspec = NuGet\SQLite.x86.nuspec readme.htm = readme.htm System.Data.SQLite\Targets\System.Data.SQLite.Files.targets = System.Data.SQLite\Targets\System.Data.SQLite.Files.targets System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets = System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets System.Data.SQLite\Targets\System.Data.SQLite.References.targets = System.Data.SQLite\Targets\System.Data.SQLite.References.targets Targets\SQLite.NET.Mono.Settings.targets = Targets\SQLite.NET.Mono.Settings.targets Targets\SQLite.NET.NetStandard20.Settings.targets = Targets\SQLite.NET.NetStandard20.Settings.targets Targets\SQLite.NET.Platform.Settings.targets = Targets\SQLite.NET.Platform.Settings.targets Targets\SQLite.NET.Settings.targets = Targets\SQLite.NET.Settings.targets Targets\SQLite.NET.Settings.targets.netFx35 = Targets\SQLite.NET.Settings.targets.netFx35 Targets\SQLite.NET.Settings.targets.netFx40 = Targets\SQLite.NET.Settings.targets.netFx40 Targets\SQLite.NET.targets = Targets\SQLite.NET.targets EndProjectSection EndProject | > | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | NuGet\SQLite.x86.nuspec = NuGet\SQLite.x86.nuspec readme.htm = readme.htm System.Data.SQLite\Targets\System.Data.SQLite.Files.targets = System.Data.SQLite\Targets\System.Data.SQLite.Files.targets System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets = System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets System.Data.SQLite\Targets\System.Data.SQLite.References.targets = System.Data.SQLite\Targets\System.Data.SQLite.References.targets Targets\SQLite.NET.Mono.Settings.targets = Targets\SQLite.NET.Mono.Settings.targets Targets\SQLite.NET.NetStandard20.Settings.targets = Targets\SQLite.NET.NetStandard20.Settings.targets Targets\SQLite.NET.NetStandard21.Settings.targets = Targets\SQLite.NET.NetStandard21.Settings.targets Targets\SQLite.NET.Platform.Settings.targets = Targets\SQLite.NET.Platform.Settings.targets Targets\SQLite.NET.Settings.targets = Targets\SQLite.NET.Settings.targets Targets\SQLite.NET.Settings.targets.netFx35 = Targets\SQLite.NET.Settings.targets.netFx35 Targets\SQLite.NET.Settings.targets.netFx40 = Targets\SQLite.NET.Settings.targets.netFx40 Targets\SQLite.NET.targets = Targets\SQLite.NET.targets EndProjectSection EndProject |
︙ | ︙ |
Changes to SQLite.NET.2013.MSBuild.sln.
︙ | ︙ | |||
33 34 35 36 37 38 39 40 41 42 43 44 45 46 | NuGet\SQLite.x86.nuspec = NuGet\SQLite.x86.nuspec readme.htm = readme.htm System.Data.SQLite\Targets\System.Data.SQLite.Files.targets = System.Data.SQLite\Targets\System.Data.SQLite.Files.targets System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets = System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets System.Data.SQLite\Targets\System.Data.SQLite.References.targets = System.Data.SQLite\Targets\System.Data.SQLite.References.targets Targets\SQLite.NET.Mono.Settings.targets = Targets\SQLite.NET.Mono.Settings.targets Targets\SQLite.NET.NetStandard20.Settings.targets = Targets\SQLite.NET.NetStandard20.Settings.targets Targets\SQLite.NET.Platform.Settings.targets = Targets\SQLite.NET.Platform.Settings.targets Targets\SQLite.NET.Settings.targets = Targets\SQLite.NET.Settings.targets Targets\SQLite.NET.Settings.targets.netFx35 = Targets\SQLite.NET.Settings.targets.netFx35 Targets\SQLite.NET.Settings.targets.netFx40 = Targets\SQLite.NET.Settings.targets.netFx40 Targets\SQLite.NET.targets = Targets\SQLite.NET.targets EndProjectSection EndProject | > | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | NuGet\SQLite.x86.nuspec = NuGet\SQLite.x86.nuspec readme.htm = readme.htm System.Data.SQLite\Targets\System.Data.SQLite.Files.targets = System.Data.SQLite\Targets\System.Data.SQLite.Files.targets System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets = System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets System.Data.SQLite\Targets\System.Data.SQLite.References.targets = System.Data.SQLite\Targets\System.Data.SQLite.References.targets Targets\SQLite.NET.Mono.Settings.targets = Targets\SQLite.NET.Mono.Settings.targets Targets\SQLite.NET.NetStandard20.Settings.targets = Targets\SQLite.NET.NetStandard20.Settings.targets Targets\SQLite.NET.NetStandard21.Settings.targets = Targets\SQLite.NET.NetStandard21.Settings.targets Targets\SQLite.NET.Platform.Settings.targets = Targets\SQLite.NET.Platform.Settings.targets Targets\SQLite.NET.Settings.targets = Targets\SQLite.NET.Settings.targets Targets\SQLite.NET.Settings.targets.netFx35 = Targets\SQLite.NET.Settings.targets.netFx35 Targets\SQLite.NET.Settings.targets.netFx40 = Targets\SQLite.NET.Settings.targets.netFx40 Targets\SQLite.NET.targets = Targets\SQLite.NET.targets EndProjectSection EndProject |
︙ | ︙ |
Changes to SQLite.NET.2013.sln.
︙ | ︙ | |||
33 34 35 36 37 38 39 40 41 42 43 44 45 46 | NuGet\SQLite.x86.nuspec = NuGet\SQLite.x86.nuspec readme.htm = readme.htm System.Data.SQLite\Targets\System.Data.SQLite.Files.targets = System.Data.SQLite\Targets\System.Data.SQLite.Files.targets System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets = System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets System.Data.SQLite\Targets\System.Data.SQLite.References.targets = System.Data.SQLite\Targets\System.Data.SQLite.References.targets Targets\SQLite.NET.Mono.Settings.targets = Targets\SQLite.NET.Mono.Settings.targets Targets\SQLite.NET.NetStandard20.Settings.targets = Targets\SQLite.NET.NetStandard20.Settings.targets Targets\SQLite.NET.Platform.Settings.targets = Targets\SQLite.NET.Platform.Settings.targets Targets\SQLite.NET.Settings.targets = Targets\SQLite.NET.Settings.targets Targets\SQLite.NET.Settings.targets.netFx35 = Targets\SQLite.NET.Settings.targets.netFx35 Targets\SQLite.NET.Settings.targets.netFx40 = Targets\SQLite.NET.Settings.targets.netFx40 Targets\SQLite.NET.targets = Targets\SQLite.NET.targets EndProjectSection EndProject | > | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | NuGet\SQLite.x86.nuspec = NuGet\SQLite.x86.nuspec readme.htm = readme.htm System.Data.SQLite\Targets\System.Data.SQLite.Files.targets = System.Data.SQLite\Targets\System.Data.SQLite.Files.targets System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets = System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets System.Data.SQLite\Targets\System.Data.SQLite.References.targets = System.Data.SQLite\Targets\System.Data.SQLite.References.targets Targets\SQLite.NET.Mono.Settings.targets = Targets\SQLite.NET.Mono.Settings.targets Targets\SQLite.NET.NetStandard20.Settings.targets = Targets\SQLite.NET.NetStandard20.Settings.targets Targets\SQLite.NET.NetStandard21.Settings.targets = Targets\SQLite.NET.NetStandard21.Settings.targets Targets\SQLite.NET.Platform.Settings.targets = Targets\SQLite.NET.Platform.Settings.targets Targets\SQLite.NET.Settings.targets = Targets\SQLite.NET.Settings.targets Targets\SQLite.NET.Settings.targets.netFx35 = Targets\SQLite.NET.Settings.targets.netFx35 Targets\SQLite.NET.Settings.targets.netFx40 = Targets\SQLite.NET.Settings.targets.netFx40 Targets\SQLite.NET.targets = Targets\SQLite.NET.targets EndProjectSection EndProject |
︙ | ︙ |
Changes to SQLite.NET.2015.MSBuild.sln.
︙ | ︙ | |||
35 36 37 38 39 40 41 42 43 44 45 46 47 48 | NuGet\SQLite.x86.nuspec = NuGet\SQLite.x86.nuspec readme.htm = readme.htm System.Data.SQLite\Targets\System.Data.SQLite.Files.targets = System.Data.SQLite\Targets\System.Data.SQLite.Files.targets System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets = System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets System.Data.SQLite\Targets\System.Data.SQLite.References.targets = System.Data.SQLite\Targets\System.Data.SQLite.References.targets Targets\SQLite.NET.Mono.Settings.targets = Targets\SQLite.NET.Mono.Settings.targets Targets\SQLite.NET.NetStandard20.Settings.targets = Targets\SQLite.NET.NetStandard20.Settings.targets Targets\SQLite.NET.Platform.Settings.targets = Targets\SQLite.NET.Platform.Settings.targets Targets\SQLite.NET.Settings.targets = Targets\SQLite.NET.Settings.targets Targets\SQLite.NET.Settings.targets.netFx35 = Targets\SQLite.NET.Settings.targets.netFx35 Targets\SQLite.NET.Settings.targets.netFx40 = Targets\SQLite.NET.Settings.targets.netFx40 Targets\SQLite.NET.targets = Targets\SQLite.NET.targets EndProjectSection EndProject | > | 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | NuGet\SQLite.x86.nuspec = NuGet\SQLite.x86.nuspec readme.htm = readme.htm System.Data.SQLite\Targets\System.Data.SQLite.Files.targets = System.Data.SQLite\Targets\System.Data.SQLite.Files.targets System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets = System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets System.Data.SQLite\Targets\System.Data.SQLite.References.targets = System.Data.SQLite\Targets\System.Data.SQLite.References.targets Targets\SQLite.NET.Mono.Settings.targets = Targets\SQLite.NET.Mono.Settings.targets Targets\SQLite.NET.NetStandard20.Settings.targets = Targets\SQLite.NET.NetStandard20.Settings.targets Targets\SQLite.NET.NetStandard21.Settings.targets = Targets\SQLite.NET.NetStandard21.Settings.targets Targets\SQLite.NET.Platform.Settings.targets = Targets\SQLite.NET.Platform.Settings.targets Targets\SQLite.NET.Settings.targets = Targets\SQLite.NET.Settings.targets Targets\SQLite.NET.Settings.targets.netFx35 = Targets\SQLite.NET.Settings.targets.netFx35 Targets\SQLite.NET.Settings.targets.netFx40 = Targets\SQLite.NET.Settings.targets.netFx40 Targets\SQLite.NET.targets = Targets\SQLite.NET.targets EndProjectSection EndProject |
︙ | ︙ |
Changes to SQLite.NET.2015.sln.
︙ | ︙ | |||
35 36 37 38 39 40 41 42 43 44 45 46 47 48 | NuGet\SQLite.x86.nuspec = NuGet\SQLite.x86.nuspec readme.htm = readme.htm System.Data.SQLite\Targets\System.Data.SQLite.Files.targets = System.Data.SQLite\Targets\System.Data.SQLite.Files.targets System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets = System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets System.Data.SQLite\Targets\System.Data.SQLite.References.targets = System.Data.SQLite\Targets\System.Data.SQLite.References.targets Targets\SQLite.NET.Mono.Settings.targets = Targets\SQLite.NET.Mono.Settings.targets Targets\SQLite.NET.NetStandard20.Settings.targets = Targets\SQLite.NET.NetStandard20.Settings.targets Targets\SQLite.NET.Platform.Settings.targets = Targets\SQLite.NET.Platform.Settings.targets Targets\SQLite.NET.Settings.targets = Targets\SQLite.NET.Settings.targets Targets\SQLite.NET.Settings.targets.netFx35 = Targets\SQLite.NET.Settings.targets.netFx35 Targets\SQLite.NET.Settings.targets.netFx40 = Targets\SQLite.NET.Settings.targets.netFx40 Targets\SQLite.NET.targets = Targets\SQLite.NET.targets EndProjectSection EndProject | > | 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | NuGet\SQLite.x86.nuspec = NuGet\SQLite.x86.nuspec readme.htm = readme.htm System.Data.SQLite\Targets\System.Data.SQLite.Files.targets = System.Data.SQLite\Targets\System.Data.SQLite.Files.targets System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets = System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets System.Data.SQLite\Targets\System.Data.SQLite.References.targets = System.Data.SQLite\Targets\System.Data.SQLite.References.targets Targets\SQLite.NET.Mono.Settings.targets = Targets\SQLite.NET.Mono.Settings.targets Targets\SQLite.NET.NetStandard20.Settings.targets = Targets\SQLite.NET.NetStandard20.Settings.targets Targets\SQLite.NET.NetStandard21.Settings.targets = Targets\SQLite.NET.NetStandard21.Settings.targets Targets\SQLite.NET.Platform.Settings.targets = Targets\SQLite.NET.Platform.Settings.targets Targets\SQLite.NET.Settings.targets = Targets\SQLite.NET.Settings.targets Targets\SQLite.NET.Settings.targets.netFx35 = Targets\SQLite.NET.Settings.targets.netFx35 Targets\SQLite.NET.Settings.targets.netFx40 = Targets\SQLite.NET.Settings.targets.netFx40 Targets\SQLite.NET.targets = Targets\SQLite.NET.targets EndProjectSection EndProject |
︙ | ︙ |
Changes to SQLite.NET.2017.MSBuild.sln.
︙ | ︙ | |||
35 36 37 38 39 40 41 42 43 44 45 46 47 48 | NuGet\SQLite.x86.nuspec = NuGet\SQLite.x86.nuspec readme.htm = readme.htm System.Data.SQLite\Targets\System.Data.SQLite.Files.targets = System.Data.SQLite\Targets\System.Data.SQLite.Files.targets System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets = System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets System.Data.SQLite\Targets\System.Data.SQLite.References.targets = System.Data.SQLite\Targets\System.Data.SQLite.References.targets Targets\SQLite.NET.Mono.Settings.targets = Targets\SQLite.NET.Mono.Settings.targets Targets\SQLite.NET.NetStandard20.Settings.targets = Targets\SQLite.NET.NetStandard20.Settings.targets Targets\SQLite.NET.Platform.Settings.targets = Targets\SQLite.NET.Platform.Settings.targets Targets\SQLite.NET.Settings.targets = Targets\SQLite.NET.Settings.targets Targets\SQLite.NET.Settings.targets.netFx35 = Targets\SQLite.NET.Settings.targets.netFx35 Targets\SQLite.NET.Settings.targets.netFx40 = Targets\SQLite.NET.Settings.targets.netFx40 Targets\SQLite.NET.targets = Targets\SQLite.NET.targets EndProjectSection EndProject | > | 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | NuGet\SQLite.x86.nuspec = NuGet\SQLite.x86.nuspec readme.htm = readme.htm System.Data.SQLite\Targets\System.Data.SQLite.Files.targets = System.Data.SQLite\Targets\System.Data.SQLite.Files.targets System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets = System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets System.Data.SQLite\Targets\System.Data.SQLite.References.targets = System.Data.SQLite\Targets\System.Data.SQLite.References.targets Targets\SQLite.NET.Mono.Settings.targets = Targets\SQLite.NET.Mono.Settings.targets Targets\SQLite.NET.NetStandard20.Settings.targets = Targets\SQLite.NET.NetStandard20.Settings.targets Targets\SQLite.NET.NetStandard21.Settings.targets = Targets\SQLite.NET.NetStandard21.Settings.targets Targets\SQLite.NET.Platform.Settings.targets = Targets\SQLite.NET.Platform.Settings.targets Targets\SQLite.NET.Settings.targets = Targets\SQLite.NET.Settings.targets Targets\SQLite.NET.Settings.targets.netFx35 = Targets\SQLite.NET.Settings.targets.netFx35 Targets\SQLite.NET.Settings.targets.netFx40 = Targets\SQLite.NET.Settings.targets.netFx40 Targets\SQLite.NET.targets = Targets\SQLite.NET.targets EndProjectSection EndProject |
︙ | ︙ |
Changes to SQLite.NET.2017.sln.
︙ | ︙ | |||
35 36 37 38 39 40 41 42 43 44 45 46 47 48 | NuGet\SQLite.x86.nuspec = NuGet\SQLite.x86.nuspec readme.htm = readme.htm System.Data.SQLite\Targets\System.Data.SQLite.Files.targets = System.Data.SQLite\Targets\System.Data.SQLite.Files.targets System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets = System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets System.Data.SQLite\Targets\System.Data.SQLite.References.targets = System.Data.SQLite\Targets\System.Data.SQLite.References.targets Targets\SQLite.NET.Mono.Settings.targets = Targets\SQLite.NET.Mono.Settings.targets Targets\SQLite.NET.NetStandard20.Settings.targets = Targets\SQLite.NET.NetStandard20.Settings.targets Targets\SQLite.NET.Platform.Settings.targets = Targets\SQLite.NET.Platform.Settings.targets Targets\SQLite.NET.Settings.targets = Targets\SQLite.NET.Settings.targets Targets\SQLite.NET.Settings.targets.netFx35 = Targets\SQLite.NET.Settings.targets.netFx35 Targets\SQLite.NET.Settings.targets.netFx40 = Targets\SQLite.NET.Settings.targets.netFx40 Targets\SQLite.NET.targets = Targets\SQLite.NET.targets EndProjectSection EndProject | > | 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | NuGet\SQLite.x86.nuspec = NuGet\SQLite.x86.nuspec readme.htm = readme.htm System.Data.SQLite\Targets\System.Data.SQLite.Files.targets = System.Data.SQLite\Targets\System.Data.SQLite.Files.targets System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets = System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets System.Data.SQLite\Targets\System.Data.SQLite.References.targets = System.Data.SQLite\Targets\System.Data.SQLite.References.targets Targets\SQLite.NET.Mono.Settings.targets = Targets\SQLite.NET.Mono.Settings.targets Targets\SQLite.NET.NetStandard20.Settings.targets = Targets\SQLite.NET.NetStandard20.Settings.targets Targets\SQLite.NET.NetStandard21.Settings.targets = Targets\SQLite.NET.NetStandard21.Settings.targets Targets\SQLite.NET.Platform.Settings.targets = Targets\SQLite.NET.Platform.Settings.targets Targets\SQLite.NET.Settings.targets = Targets\SQLite.NET.Settings.targets Targets\SQLite.NET.Settings.targets.netFx35 = Targets\SQLite.NET.Settings.targets.netFx35 Targets\SQLite.NET.Settings.targets.netFx40 = Targets\SQLite.NET.Settings.targets.netFx40 Targets\SQLite.NET.targets = Targets\SQLite.NET.targets EndProjectSection EndProject |
︙ | ︙ |
Changes to SQLite.NET.NetStandard20.MSBuild.sln.
︙ | ︙ | |||
35 36 37 38 39 40 41 42 43 44 45 46 47 48 | NuGet\SQLite.x86.nuspec = NuGet\SQLite.x86.nuspec readme.htm = readme.htm System.Data.SQLite\Targets\System.Data.SQLite.Files.targets = System.Data.SQLite\Targets\System.Data.SQLite.Files.targets System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets = System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets System.Data.SQLite\Targets\System.Data.SQLite.References.targets = System.Data.SQLite\Targets\System.Data.SQLite.References.targets Targets\SQLite.NET.Mono.Settings.targets = Targets\SQLite.NET.Mono.Settings.targets Targets\SQLite.NET.NetStandard20.Settings.targets = Targets\SQLite.NET.NetStandard20.Settings.targets Targets\SQLite.NET.Platform.Settings.targets = Targets\SQLite.NET.Platform.Settings.targets Targets\SQLite.NET.Settings.targets = Targets\SQLite.NET.Settings.targets Targets\SQLite.NET.Settings.targets.netFx35 = Targets\SQLite.NET.Settings.targets.netFx35 Targets\SQLite.NET.Settings.targets.netFx40 = Targets\SQLite.NET.Settings.targets.netFx40 Targets\SQLite.NET.targets = Targets\SQLite.NET.targets EndProjectSection EndProject | > | 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | NuGet\SQLite.x86.nuspec = NuGet\SQLite.x86.nuspec readme.htm = readme.htm System.Data.SQLite\Targets\System.Data.SQLite.Files.targets = System.Data.SQLite\Targets\System.Data.SQLite.Files.targets System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets = System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets System.Data.SQLite\Targets\System.Data.SQLite.References.targets = System.Data.SQLite\Targets\System.Data.SQLite.References.targets Targets\SQLite.NET.Mono.Settings.targets = Targets\SQLite.NET.Mono.Settings.targets Targets\SQLite.NET.NetStandard20.Settings.targets = Targets\SQLite.NET.NetStandard20.Settings.targets Targets\SQLite.NET.NetStandard21.Settings.targets = Targets\SQLite.NET.NetStandard21.Settings.targets Targets\SQLite.NET.Platform.Settings.targets = Targets\SQLite.NET.Platform.Settings.targets Targets\SQLite.NET.Settings.targets = Targets\SQLite.NET.Settings.targets Targets\SQLite.NET.Settings.targets.netFx35 = Targets\SQLite.NET.Settings.targets.netFx35 Targets\SQLite.NET.Settings.targets.netFx40 = Targets\SQLite.NET.Settings.targets.netFx40 Targets\SQLite.NET.targets = Targets\SQLite.NET.targets EndProjectSection EndProject |
︙ | ︙ |
Changes to SQLite.NET.NetStandard20.sln.
︙ | ︙ | |||
35 36 37 38 39 40 41 42 43 44 45 46 47 48 | NuGet\SQLite.x86.nuspec = NuGet\SQLite.x86.nuspec readme.htm = readme.htm System.Data.SQLite\Targets\System.Data.SQLite.Files.targets = System.Data.SQLite\Targets\System.Data.SQLite.Files.targets System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets = System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets System.Data.SQLite\Targets\System.Data.SQLite.References.targets = System.Data.SQLite\Targets\System.Data.SQLite.References.targets Targets\SQLite.NET.Mono.Settings.targets = Targets\SQLite.NET.Mono.Settings.targets Targets\SQLite.NET.NetStandard20.Settings.targets = Targets\SQLite.NET.NetStandard20.Settings.targets Targets\SQLite.NET.Platform.Settings.targets = Targets\SQLite.NET.Platform.Settings.targets Targets\SQLite.NET.Settings.targets = Targets\SQLite.NET.Settings.targets Targets\SQLite.NET.Settings.targets.netFx35 = Targets\SQLite.NET.Settings.targets.netFx35 Targets\SQLite.NET.Settings.targets.netFx40 = Targets\SQLite.NET.Settings.targets.netFx40 Targets\SQLite.NET.targets = Targets\SQLite.NET.targets EndProjectSection EndProject | > | 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | NuGet\SQLite.x86.nuspec = NuGet\SQLite.x86.nuspec readme.htm = readme.htm System.Data.SQLite\Targets\System.Data.SQLite.Files.targets = System.Data.SQLite\Targets\System.Data.SQLite.Files.targets System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets = System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets System.Data.SQLite\Targets\System.Data.SQLite.References.targets = System.Data.SQLite\Targets\System.Data.SQLite.References.targets Targets\SQLite.NET.Mono.Settings.targets = Targets\SQLite.NET.Mono.Settings.targets Targets\SQLite.NET.NetStandard20.Settings.targets = Targets\SQLite.NET.NetStandard20.Settings.targets Targets\SQLite.NET.NetStandard21.Settings.targets = Targets\SQLite.NET.NetStandard21.Settings.targets Targets\SQLite.NET.Platform.Settings.targets = Targets\SQLite.NET.Platform.Settings.targets Targets\SQLite.NET.Settings.targets = Targets\SQLite.NET.Settings.targets Targets\SQLite.NET.Settings.targets.netFx35 = Targets\SQLite.NET.Settings.targets.netFx35 Targets\SQLite.NET.Settings.targets.netFx40 = Targets\SQLite.NET.Settings.targets.netFx40 Targets\SQLite.NET.targets = Targets\SQLite.NET.targets EndProjectSection EndProject |
︙ | ︙ |
Added SQLite.NET.NetStandard21.MSBuild.sln.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 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 | Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 VisualStudioVersion = 16.0.28803.452 MinimumVisualStudioVersion = 10.0.40219.1 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{39A3B743-1EBD-4CC0-8E37-ACE3DD38B1C0}" ProjectSection(SolutionItems) = preProject data\exclude_bin.txt = data\exclude_bin.txt data\exclude_src.txt = data\exclude_src.txt Keys\System.Data.SQLite.CF.snk = Keys\System.Data.SQLite.CF.snk Keys\System.Data.SQLite.snk = Keys\System.Data.SQLite.snk NuGet\shared\Core\build\System.Data.SQLite.Core.targets = NuGet\shared\Core\build\System.Data.SQLite.Core.targets NuGet\shared\Core\content\config.install.xdt = NuGet\shared\Core\content\config.install.xdt NuGet\shared\Core\content\config.transform = NuGet\shared\Core\content\config.transform NuGet\net40\EF6\content\config.transform = NuGet\net40\EF6\content\config.transform NuGet\net40\EF6\tools\provider.ps1 = NuGet\net40\EF6\tools\provider.ps1 NuGet\SQLite.Core.nuspec = NuGet\SQLite.Core.nuspec NuGet\SQLite.Core.Beta.nuspec = NuGet\SQLite.Core.Beta.nuspec NuGet\SQLite.Core.Test.nuspec = NuGet\SQLite.Core.Test.nuspec NuGet\SQLite.Core.MSIL.nuspec = NuGet\SQLite.Core.MSIL.nuspec NuGet\SQLite.Core.MSIL.Beta.nuspec = NuGet\SQLite.Core.MSIL.Beta.nuspec NuGet\SQLite.Core.MSIL.Test.nuspec = NuGet\SQLite.Core.MSIL.Test.nuspec NuGet\SQLite.EF6.nuspec = NuGet\SQLite.EF6.nuspec NuGet\SQLite.EF6.Beta.nuspec = NuGet\SQLite.EF6.Beta.nuspec NuGet\SQLite.EF6.Test.nuspec = NuGet\SQLite.EF6.Test.nuspec NuGet\SQLite.Linq.nuspec = NuGet\SQLite.Linq.nuspec NuGet\SQLite.Linq.Beta.nuspec = NuGet\SQLite.Linq.Beta.nuspec NuGet\SQLite.Linq.Test.nuspec = NuGet\SQLite.Linq.Test.nuspec NuGet\SQLite.MSIL.nuspec = NuGet\SQLite.MSIL.nuspec NuGet\SQLite.MSIL.Beta.nuspec = NuGet\SQLite.MSIL.Beta.nuspec NuGet\SQLite.MSIL.Test.nuspec = NuGet\SQLite.MSIL.Test.nuspec NuGet\SQLite.nuspec = NuGet\SQLite.nuspec NuGet\SQLite.Beta.nuspec = NuGet\SQLite.Beta.nuspec NuGet\SQLite.Test.nuspec = NuGet\SQLite.Test.nuspec NuGet\SQLite.x64.nuspec = NuGet\SQLite.x64.nuspec NuGet\SQLite.x86.nuspec = NuGet\SQLite.x86.nuspec readme.htm = readme.htm System.Data.SQLite\Targets\System.Data.SQLite.Files.targets = System.Data.SQLite\Targets\System.Data.SQLite.Files.targets System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets = System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets System.Data.SQLite\Targets\System.Data.SQLite.References.targets = System.Data.SQLite\Targets\System.Data.SQLite.References.targets Targets\SQLite.NET.Mono.Settings.targets = Targets\SQLite.NET.Mono.Settings.targets Targets\SQLite.NET.NetStandard20.Settings.targets = Targets\SQLite.NET.NetStandard20.Settings.targets Targets\SQLite.NET.NetStandard21.Settings.targets = Targets\SQLite.NET.NetStandard21.Settings.targets Targets\SQLite.NET.Platform.Settings.targets = Targets\SQLite.NET.Platform.Settings.targets Targets\SQLite.NET.Settings.targets = Targets\SQLite.NET.Settings.targets Targets\SQLite.NET.Settings.targets.netFx35 = Targets\SQLite.NET.Settings.targets.netFx35 Targets\SQLite.NET.Settings.targets.netFx40 = Targets\SQLite.NET.Settings.targets.netFx40 Targets\SQLite.NET.targets = Targets\SQLite.NET.targets EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "System.Data.SQLite.NetStandard21", "System.Data.SQLite\System.Data.SQLite.NetStandard21.csproj", "{77BE07F7-8183-4A83-8AEC-D46A0C2C026D}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "System.Data.SQLite.EF6.NetStandard21", "System.Data.SQLite.Linq\System.Data.SQLite.EF6.NetStandard21.csproj", "{F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU Debug|Mixed Platforms = Debug|Mixed Platforms Debug|Win32 = Debug|Win32 Debug|x64 = Debug|x64 DebugManagedOnly|Any CPU = DebugManagedOnly|Any CPU DebugManagedOnly|Mixed Platforms = DebugManagedOnly|Mixed Platforms DebugManagedOnly|Win32 = DebugManagedOnly|Win32 DebugManagedOnly|x64 = DebugManagedOnly|x64 DebugNativeOnly|Any CPU = DebugNativeOnly|Any CPU DebugNativeOnly|Mixed Platforms = DebugNativeOnly|Mixed Platforms DebugNativeOnly|Win32 = DebugNativeOnly|Win32 DebugNativeOnly|x64 = DebugNativeOnly|x64 Release|Any CPU = Release|Any CPU Release|Mixed Platforms = Release|Mixed Platforms Release|Win32 = Release|Win32 Release|x64 = Release|x64 ReleaseManagedOnly|Any CPU = ReleaseManagedOnly|Any CPU ReleaseManagedOnly|Mixed Platforms = ReleaseManagedOnly|Mixed Platforms ReleaseManagedOnly|Win32 = ReleaseManagedOnly|Win32 ReleaseManagedOnly|x64 = ReleaseManagedOnly|x64 ReleaseNativeOnly|Any CPU = ReleaseNativeOnly|Any CPU ReleaseNativeOnly|Mixed Platforms = ReleaseNativeOnly|Mixed Platforms ReleaseNativeOnly|Win32 = ReleaseNativeOnly|Win32 ReleaseNativeOnly|x64 = ReleaseNativeOnly|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.Debug|Any CPU.Build.0 = Debug|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.Debug|Win32.ActiveCfg = Debug|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.Debug|Win32.Build.0 = Debug|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.Debug|x64.ActiveCfg = Debug|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.Debug|x64.Build.0 = Debug|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.DebugManagedOnly|Any CPU.ActiveCfg = Debug|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.DebugManagedOnly|Any CPU.Build.0 = Debug|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.DebugManagedOnly|Mixed Platforms.ActiveCfg = Debug|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.DebugManagedOnly|Mixed Platforms.Build.0 = Debug|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.DebugManagedOnly|Win32.ActiveCfg = Debug|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.DebugManagedOnly|Win32.Build.0 = Debug|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.DebugManagedOnly|x64.ActiveCfg = Debug|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.DebugManagedOnly|x64.Build.0 = Debug|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.DebugNativeOnly|Any CPU.ActiveCfg = Debug|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.DebugNativeOnly|Mixed Platforms.ActiveCfg = Debug|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.DebugNativeOnly|Win32.ActiveCfg = Debug|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.DebugNativeOnly|x64.ActiveCfg = Debug|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.Release|Any CPU.ActiveCfg = Release|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.Release|Any CPU.Build.0 = Release|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.Release|Mixed Platforms.Build.0 = Release|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.Release|Win32.ActiveCfg = Release|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.Release|Win32.Build.0 = Release|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.Release|x64.ActiveCfg = Release|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.Release|x64.Build.0 = Release|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.ReleaseManagedOnly|Any CPU.ActiveCfg = Release|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.ReleaseManagedOnly|Any CPU.Build.0 = Release|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.ReleaseManagedOnly|Mixed Platforms.ActiveCfg = Release|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.ReleaseManagedOnly|Mixed Platforms.Build.0 = Release|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.ReleaseManagedOnly|Win32.ActiveCfg = Release|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.ReleaseManagedOnly|Win32.Build.0 = Release|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.ReleaseManagedOnly|x64.ActiveCfg = Release|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.ReleaseManagedOnly|x64.Build.0 = Release|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.ReleaseNativeOnly|Any CPU.ActiveCfg = Release|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.ReleaseNativeOnly|Mixed Platforms.ActiveCfg = Release|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.ReleaseNativeOnly|Win32.ActiveCfg = Release|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.ReleaseNativeOnly|x64.ActiveCfg = Release|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.Debug|Any CPU.Build.0 = Debug|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.Debug|Win32.ActiveCfg = Debug|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.Debug|Win32.Build.0 = Debug|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.Debug|x64.ActiveCfg = Debug|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.Debug|x64.Build.0 = Debug|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.DebugManagedOnly|Any CPU.ActiveCfg = Debug|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.DebugManagedOnly|Any CPU.Build.0 = Debug|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.DebugManagedOnly|Mixed Platforms.ActiveCfg = Debug|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.DebugManagedOnly|Mixed Platforms.Build.0 = Debug|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.DebugManagedOnly|Win32.ActiveCfg = Debug|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.DebugManagedOnly|Win32.Build.0 = Debug|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.DebugManagedOnly|x64.ActiveCfg = Debug|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.DebugManagedOnly|x64.Build.0 = Debug|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.DebugNativeOnly|Any CPU.ActiveCfg = Debug|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.DebugNativeOnly|Mixed Platforms.ActiveCfg = Debug|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.DebugNativeOnly|Win32.ActiveCfg = Debug|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.DebugNativeOnly|x64.ActiveCfg = Debug|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.Release|Any CPU.ActiveCfg = Release|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.Release|Any CPU.Build.0 = Release|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.Release|Mixed Platforms.Build.0 = Release|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.Release|Win32.ActiveCfg = Release|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.Release|Win32.Build.0 = Release|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.Release|x64.ActiveCfg = Release|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.Release|x64.Build.0 = Release|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.ReleaseManagedOnly|Any CPU.ActiveCfg = Release|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.ReleaseManagedOnly|Any CPU.Build.0 = Release|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.ReleaseManagedOnly|Mixed Platforms.ActiveCfg = Release|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.ReleaseManagedOnly|Mixed Platforms.Build.0 = Release|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.ReleaseManagedOnly|Win32.ActiveCfg = Release|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.ReleaseManagedOnly|Win32.Build.0 = Release|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.ReleaseManagedOnly|x64.ActiveCfg = Release|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.ReleaseManagedOnly|x64.Build.0 = Release|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.ReleaseNativeOnly|Any CPU.ActiveCfg = Release|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.ReleaseNativeOnly|Mixed Platforms.ActiveCfg = Release|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.ReleaseNativeOnly|Win32.ActiveCfg = Release|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.ReleaseNativeOnly|x64.ActiveCfg = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection EndGlobal |
Added SQLite.NET.NetStandard21.sln.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 | Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 VisualStudioVersion = 16.0.28803.452 MinimumVisualStudioVersion = 10.0.40219.1 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{39A3B743-1EBD-4CC0-8E37-ACE3DD38B1C0}" ProjectSection(SolutionItems) = preProject data\exclude_bin.txt = data\exclude_bin.txt data\exclude_src.txt = data\exclude_src.txt Keys\System.Data.SQLite.CF.snk = Keys\System.Data.SQLite.CF.snk Keys\System.Data.SQLite.snk = Keys\System.Data.SQLite.snk NuGet\shared\Core\build\System.Data.SQLite.Core.targets = NuGet\shared\Core\build\System.Data.SQLite.Core.targets NuGet\shared\Core\content\config.install.xdt = NuGet\shared\Core\content\config.install.xdt NuGet\shared\Core\content\config.transform = NuGet\shared\Core\content\config.transform NuGet\net40\EF6\content\config.transform = NuGet\net40\EF6\content\config.transform NuGet\net40\EF6\tools\provider.ps1 = NuGet\net40\EF6\tools\provider.ps1 NuGet\SQLite.Core.nuspec = NuGet\SQLite.Core.nuspec NuGet\SQLite.Core.Beta.nuspec = NuGet\SQLite.Core.Beta.nuspec NuGet\SQLite.Core.Test.nuspec = NuGet\SQLite.Core.Test.nuspec NuGet\SQLite.Core.MSIL.nuspec = NuGet\SQLite.Core.MSIL.nuspec NuGet\SQLite.Core.MSIL.Beta.nuspec = NuGet\SQLite.Core.MSIL.Beta.nuspec NuGet\SQLite.Core.MSIL.Test.nuspec = NuGet\SQLite.Core.MSIL.Test.nuspec NuGet\SQLite.EF6.nuspec = NuGet\SQLite.EF6.nuspec NuGet\SQLite.EF6.Beta.nuspec = NuGet\SQLite.EF6.Beta.nuspec NuGet\SQLite.EF6.Test.nuspec = NuGet\SQLite.EF6.Test.nuspec NuGet\SQLite.Linq.nuspec = NuGet\SQLite.Linq.nuspec NuGet\SQLite.Linq.Beta.nuspec = NuGet\SQLite.Linq.Beta.nuspec NuGet\SQLite.Linq.Test.nuspec = NuGet\SQLite.Linq.Test.nuspec NuGet\SQLite.MSIL.nuspec = NuGet\SQLite.MSIL.nuspec NuGet\SQLite.MSIL.Beta.nuspec = NuGet\SQLite.MSIL.Beta.nuspec NuGet\SQLite.MSIL.Test.nuspec = NuGet\SQLite.MSIL.Test.nuspec NuGet\SQLite.nuspec = NuGet\SQLite.nuspec NuGet\SQLite.Beta.nuspec = NuGet\SQLite.Beta.nuspec NuGet\SQLite.Test.nuspec = NuGet\SQLite.Test.nuspec NuGet\SQLite.x64.nuspec = NuGet\SQLite.x64.nuspec NuGet\SQLite.x86.nuspec = NuGet\SQLite.x86.nuspec readme.htm = readme.htm System.Data.SQLite\Targets\System.Data.SQLite.Files.targets = System.Data.SQLite\Targets\System.Data.SQLite.Files.targets System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets = System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets System.Data.SQLite\Targets\System.Data.SQLite.References.targets = System.Data.SQLite\Targets\System.Data.SQLite.References.targets Targets\SQLite.NET.Mono.Settings.targets = Targets\SQLite.NET.Mono.Settings.targets Targets\SQLite.NET.NetStandard20.Settings.targets = Targets\SQLite.NET.NetStandard20.Settings.targets Targets\SQLite.NET.NetStandard21.Settings.targets = Targets\SQLite.NET.NetStandard21.Settings.targets Targets\SQLite.NET.Platform.Settings.targets = Targets\SQLite.NET.Platform.Settings.targets Targets\SQLite.NET.Settings.targets = Targets\SQLite.NET.Settings.targets Targets\SQLite.NET.Settings.targets.netFx35 = Targets\SQLite.NET.Settings.targets.netFx35 Targets\SQLite.NET.Settings.targets.netFx40 = Targets\SQLite.NET.Settings.targets.netFx40 Targets\SQLite.NET.targets = Targets\SQLite.NET.targets EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "System.Data.SQLite.NetStandard21", "System.Data.SQLite\System.Data.SQLite.NetStandard21.csproj", "{77BE07F7-8183-4A83-8AEC-D46A0C2C026D}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "System.Data.SQLite.EF6.NetStandard21", "System.Data.SQLite.Linq\System.Data.SQLite.EF6.NetStandard21.csproj", "{F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU Debug|Mixed Platforms = Debug|Mixed Platforms Debug|Win32 = Debug|Win32 Debug|x64 = Debug|x64 DebugNativeOnly|Any CPU = DebugNativeOnly|Any CPU DebugNativeOnly|Mixed Platforms = DebugNativeOnly|Mixed Platforms DebugNativeOnly|Win32 = DebugNativeOnly|Win32 DebugNativeOnly|x64 = DebugNativeOnly|x64 Release|Any CPU = Release|Any CPU Release|Mixed Platforms = Release|Mixed Platforms Release|Win32 = Release|Win32 Release|x64 = Release|x64 ReleaseNativeOnly|Any CPU = ReleaseNativeOnly|Any CPU ReleaseNativeOnly|Mixed Platforms = ReleaseNativeOnly|Mixed Platforms ReleaseNativeOnly|Win32 = ReleaseNativeOnly|Win32 ReleaseNativeOnly|x64 = ReleaseNativeOnly|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.Debug|Any CPU.Build.0 = Debug|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.Debug|Win32.ActiveCfg = Debug|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.Debug|Win32.Build.0 = Debug|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.Debug|x64.ActiveCfg = Debug|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.Debug|x64.Build.0 = Debug|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.DebugNativeOnly|Any CPU.ActiveCfg = Debug|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.DebugNativeOnly|Any CPU.Build.0 = Debug|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.DebugNativeOnly|Mixed Platforms.ActiveCfg = Debug|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.DebugNativeOnly|Mixed Platforms.Build.0 = Debug|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.DebugNativeOnly|Win32.ActiveCfg = Debug|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.DebugNativeOnly|x64.ActiveCfg = Debug|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.Release|Any CPU.ActiveCfg = Release|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.Release|Any CPU.Build.0 = Release|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.Release|Mixed Platforms.Build.0 = Release|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.Release|Win32.ActiveCfg = Release|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.Release|Win32.Build.0 = Release|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.Release|x64.ActiveCfg = Release|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.Release|x64.Build.0 = Release|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.ReleaseNativeOnly|Any CPU.ActiveCfg = Release|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.ReleaseNativeOnly|Any CPU.Build.0 = Release|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.ReleaseNativeOnly|Mixed Platforms.ActiveCfg = Release|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.ReleaseNativeOnly|Mixed Platforms.Build.0 = Release|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.ReleaseNativeOnly|Win32.ActiveCfg = Release|Any CPU {77BE07F7-8183-4A83-8AEC-D46A0C2C026D}.ReleaseNativeOnly|x64.ActiveCfg = Release|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.Debug|Any CPU.Build.0 = Debug|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.Debug|Win32.ActiveCfg = Debug|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.Debug|Win32.Build.0 = Debug|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.Debug|x64.ActiveCfg = Debug|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.Debug|x64.Build.0 = Debug|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.DebugNativeOnly|Any CPU.ActiveCfg = Debug|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.DebugNativeOnly|Any CPU.Build.0 = Debug|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.DebugNativeOnly|Mixed Platforms.ActiveCfg = Debug|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.DebugNativeOnly|Mixed Platforms.Build.0 = Debug|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.DebugNativeOnly|Win32.ActiveCfg = Debug|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.DebugNativeOnly|x64.ActiveCfg = Debug|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.Release|Any CPU.ActiveCfg = Release|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.Release|Any CPU.Build.0 = Release|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.Release|Mixed Platforms.Build.0 = Release|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.Release|Win32.ActiveCfg = Release|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.Release|Win32.Build.0 = Release|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.Release|x64.ActiveCfg = Release|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.Release|x64.Build.0 = Release|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.ReleaseNativeOnly|Any CPU.ActiveCfg = Release|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.ReleaseNativeOnly|Any CPU.Build.0 = Release|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.ReleaseNativeOnly|Mixed Platforms.ActiveCfg = Release|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.ReleaseNativeOnly|Mixed Platforms.Build.0 = Release|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.ReleaseNativeOnly|Win32.ActiveCfg = Release|Any CPU {F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}.ReleaseNativeOnly|x64.ActiveCfg = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection EndGlobal |
Added Setup/build-netstandard21-debug.sh.
> > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 | #!/bin/bash scriptdir=`dirname "$BASH_SOURCE"` if [[ -z "$SQLITE_NET_YEAR" ]]; then SQLITE_NET_YEAR=NetStandard21 fi pushd "$scriptdir/.." dotnet build SQLite.NET.$SQLITE_NET_YEAR.MSBuild.sln /property:Configuration=Debug "$@" popd |
Added Setup/build-netstandard21-release.sh.
> > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 | #!/bin/bash scriptdir=`dirname "$BASH_SOURCE"` if [[ -z "$SQLITE_NET_YEAR" ]]; then SQLITE_NET_YEAR=NetStandard21 fi pushd "$scriptdir/.." dotnet build SQLite.NET.$SQLITE_NET_YEAR.MSBuild.sln /property:Configuration=Release "$@" popd |
Changes to Setup/build.bat.
︙ | ︙ | |||
154 155 156 157 158 159 160 161 162 163 164 165 166 167 | %_AECHO% Forcing the use of the .NET Core 2.0... IF NOT DEFINED YEAR ( IF DEFINED NETCORE20YEAR ( SET YEAR=%NETCORE20YEAR% ) ELSE ( SET YEAR=NetStandard20 ) ) CALL :fn_VerifyDotNetCore IF ERRORLEVEL 1 GOTO errors SET NOBUILDTOOLDIR=1 SET USEDOTNET=1 GOTO setup_buildToolDir ) | > > > > > > > > > > > > > > > > | 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 | %_AECHO% Forcing the use of the .NET Core 2.0... IF NOT DEFINED YEAR ( IF DEFINED NETCORE20YEAR ( SET YEAR=%NETCORE20YEAR% ) ELSE ( SET YEAR=NetStandard20 ) ) CALL :fn_VerifyDotNetCore IF ERRORLEVEL 1 GOTO errors SET NOBUILDTOOLDIR=1 SET USEDOTNET=1 GOTO setup_buildToolDir ) IF DEFINED NETCORE30ONLY ( %_AECHO% Forcing the use of the .NET Core 3.0... IF NOT DEFINED YEAR ( IF DEFINED NETCORE30YEAR ( SET YEAR=%NETCORE30YEAR% ) ELSE ( SET YEAR=NetStandard21 ) ) CALL :fn_VerifyDotNetCore IF ERRORLEVEL 1 GOTO errors SET NOBUILDTOOLDIR=1 SET USEDOTNET=1 GOTO setup_buildToolDir ) |
︙ | ︙ |
Added Setup/build_net_standard_21.bat.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 | @ECHO OFF :: :: build_net_standard_21.bat -- :: :: .NET Standard 2.1 Wrapper Tool for MSBuild :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SETLOCAL REM SET __ECHO=ECHO REM SET __ECHO3=ECHO IF NOT DEFINED _AECHO (SET _AECHO=REM) IF NOT DEFINED _CECHO (SET _CECHO=REM) IF NOT DEFINED _VECHO (SET _VECHO=REM) %_AECHO% Running %0 %* SET DUMMY2=%2 IF DEFINED DUMMY2 ( GOTO usage ) SET TOOLS=%~dp0 SET TOOLS=%TOOLS:~0,-1% %_VECHO% Tools = '%TOOLS%' SET BUILD_CONFIGURATIONS=%1 IF DEFINED BUILD_CONFIGURATIONS ( CALL :fn_UnquoteVariable BUILD_CONFIGURATIONS ) ELSE ( %_AECHO% No build configurations specified, using default... IF DEFINED BUILD_DEBUG ( SET BUILD_CONFIGURATIONS=DebugManagedOnly ReleaseManagedOnly ) ELSE ( SET BUILD_CONFIGURATIONS=ReleaseManagedOnly ) ) %_VECHO% BuildConfigurations = '%BUILD_CONFIGURATIONS%' SET YEARS=NetStandard21 SET PLATFORMS="Any CPU" SET NOUSER=1 REM REM TODO: This list of properties must be kept synchronized with the common REM list in the "SQLite.NET.NetStandard21.Settings.targets" file. REM SET MSBUILD_ARGS=/property:ConfigurationSuffix=NetStandard21 SET MSBUILD_ARGS=%MSBUILD_ARGS% /property:InteropCodec=false SET MSBUILD_ARGS=%MSBUILD_ARGS% /property:InteropLog=false IF DEFINED MSBUILD_ARGS_NET_STANDARD_21 ( SET MSBUILD_ARGS=%MSBUILD_ARGS% %MSBUILD_ARGS_NET_STANDARD_21% ) REM REM TODO: This list of properties must be kept synchronized with the debug REM list in the "SQLite.NET.NetStandard21.Settings.targets" file. REM SET MSBUILD_ARGS_DEBUG=/property:CheckState=true SET MSBUILD_ARGS_DEBUG=%MSBUILD_ARGS_DEBUG% /property:CountHandle=true SET MSBUILD_ARGS_DEBUG=%MSBUILD_ARGS_DEBUG% /property:TraceConnection=true SET MSBUILD_ARGS_DEBUG=%MSBUILD_ARGS_DEBUG% /property:TraceDetection=true SET MSBUILD_ARGS_DEBUG=%MSBUILD_ARGS_DEBUG% /property:TraceHandle=true SET MSBUILD_ARGS_DEBUG=%MSBUILD_ARGS_DEBUG% /property:TraceStatement=true SET MSBUILD_ARGS_DEBUG=%MSBUILD_ARGS_DEBUG% /property:TrackMemoryBytes=true REM REM NOTE: For use of the .NET Core SDK build system. REM SET NETCORE30ONLY=1 REM REM NOTE: Prevent output files from being wrongly deleted. REM SET TARGET=Build %__ECHO3% CALL "%TOOLS%\build_all.bat" IF ERRORLEVEL 1 ( ECHO Failed to build .NET Standard 2.1 binaries. GOTO errors ) GOTO no_errors :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 ) SET VALUE=%VALUE:"=% REM " ENDLOCAL && SET %1=%VALUE% GOTO :EOF :fn_UnsetVariable SETLOCAL SET VALUE=%1 IF DEFINED VALUE ( SET VALUE= ENDLOCAL SET %VALUE%= ) ELSE ( ENDLOCAL ) CALL :fn_ResetErrorLevel GOTO :EOF :fn_ResetErrorLevel VERIFY > NUL GOTO :EOF :fn_SetErrorLevel VERIFY MAYBE 2> NUL GOTO :EOF :usage ECHO. ECHO Usage: %~nx0 [configurations] ECHO. GOTO errors :errors CALL :fn_SetErrorLevel ENDLOCAL ECHO. ECHO Build failure, errors were encountered. GOTO end_of_file :no_errors CALL :fn_ResetErrorLevel ENDLOCAL ECHO. ECHO Build success, no errors were encountered. GOTO end_of_file :end_of_file %__ECHO% EXIT /B %ERRORLEVEL% |
Changes to Setup/data/verify.lst.
︙ | ︙ | |||
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 | Setup/archive.bat Setup/bake.bat Setup/bake_all.bat Setup/build-mono-debug.sh Setup/build-mono-release.sh Setup/build-netstandard20-debug.sh Setup/build-netstandard20-release.sh Setup/build.bat Setup/build_all.bat Setup/build_ce_200x.bat Setup/build_ce_2013.bat Setup/build_mono.bat Setup/build_net_standard_20.bat Setup/build_nuget.bat Setup/clean.bat Setup/compile-interop-assembly-debug.sh Setup/compile-interop-assembly-release.sh Setup/data/ Setup/data/CheckForNetFx.pas Setup/data/InitializeSetup.pas Setup/data/SQLite.iss Setup/data/verify.lst Setup/deployAndTestCe200x.eagle Setup/release.bat Setup/release_all.bat Setup/release_ce_200x.bat Setup/release_ce_2013.bat Setup/release_mono.bat Setup/release_net_standard_20.bat Setup/release_static.bat Setup/run-mono-tests-debug.sh Setup/run-mono-tests-release.sh Setup/run-netstandard20-tests-debug.sh Setup/run-netstandard20-tests-release.sh Setup/set_common.bat Setup/set_Debug.bat Setup/set_Debug_ARMV7.bat "Setup/set_Debug_CEPC DevPlatform.bat" "Setup/set_Debug_Pocket PC 2003 (ARMV4).bat" Setup/set_Debug_Win32.bat Setup/set_Debug_x64.bat | > > > > > > | 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 | Setup/archive.bat Setup/bake.bat Setup/bake_all.bat Setup/build-mono-debug.sh Setup/build-mono-release.sh Setup/build-netstandard20-debug.sh Setup/build-netstandard20-release.sh Setup/build-netstandard21-debug.sh Setup/build-netstandard21-release.sh Setup/build.bat Setup/build_all.bat Setup/build_ce_200x.bat Setup/build_ce_2013.bat Setup/build_mono.bat Setup/build_net_standard_20.bat Setup/build_net_standard_21.bat Setup/build_nuget.bat Setup/clean.bat Setup/compile-interop-assembly-debug.sh Setup/compile-interop-assembly-release.sh Setup/data/ Setup/data/CheckForNetFx.pas Setup/data/InitializeSetup.pas Setup/data/SQLite.iss Setup/data/verify.lst Setup/deployAndTestCe200x.eagle Setup/release.bat Setup/release_all.bat Setup/release_ce_200x.bat Setup/release_ce_2013.bat Setup/release_mono.bat Setup/release_net_standard_20.bat Setup/release_net_standard_21.bat Setup/release_static.bat Setup/run-mono-tests-debug.sh Setup/run-mono-tests-release.sh Setup/run-netstandard20-tests-debug.sh Setup/run-netstandard20-tests-release.sh Setup/run-netstandard21-tests-debug.sh Setup/run-netstandard21-tests-release.sh Setup/set_common.bat Setup/set_Debug.bat Setup/set_Debug_ARMV7.bat "Setup/set_Debug_CEPC DevPlatform.bat" "Setup/set_Debug_Pocket PC 2003 (ARMV4).bat" Setup/set_Debug_Win32.bat Setup/set_Debug_x64.bat |
︙ | ︙ | |||
315 316 317 318 319 320 321 322 323 324 325 326 327 328 | 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 | > | 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 | 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_Debug_x86_NetStandard21.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 |
︙ | ︙ | |||
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 | 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_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_netFx472.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 | > > | 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 | 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_DebugNativeOnly_x86_NetStandard21.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_netFx472.bat Setup/set_netStandard20.bat Setup/set_netStandard21.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 |
︙ | ︙ | |||
370 371 372 373 374 375 376 377 378 379 380 381 382 383 | 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 | > | 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 | 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_Release_x86_NetStandard21.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 |
︙ | ︙ | |||
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 | 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/set_year_2005.bat Setup/set_year_2008.bat Setup/set_year_2010.bat Setup/set_year_2012.bat Setup/set_year_2013.bat Setup/set_year_2015.bat Setup/set_year_2017.bat Setup/set_year_NetStandard20.bat Setup/sourceTag.eagle Setup/test.bat Setup/test_all.bat Setup/test_ce_200x.bat Setup/test_net_standard_20.bat Setup/updateFileInfo.tcl Setup/verify.eagle Setup/vsSp.bat SQLite.Designer/ SQLite.Designer/AssemblyInfo.cs SQLite.Designer/ChangePasswordDialog.cs SQLite.Designer/ChangePasswordDialog.Designer.cs | > > > > | 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 | 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_ReleaseNativeOnly_x86_NetStandard21.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/set_x86_NetStandard21.bat Setup/set_year_2005.bat Setup/set_year_2008.bat Setup/set_year_2010.bat Setup/set_year_2012.bat Setup/set_year_2013.bat Setup/set_year_2015.bat Setup/set_year_2017.bat Setup/set_year_NetStandard20.bat Setup/set_year_NetStandard21.bat Setup/sourceTag.eagle Setup/test.bat Setup/test_all.bat Setup/test_ce_200x.bat Setup/test_net_standard_20.bat Setup/test_net_standard_21.bat Setup/updateFileInfo.tcl Setup/verify.eagle Setup/vsSp.bat SQLite.Designer/ SQLite.Designer/AssemblyInfo.cs SQLite.Designer/ChangePasswordDialog.cs SQLite.Designer/ChangePasswordDialog.Designer.cs |
︙ | ︙ | |||
582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 | SQLite.NET.2013.MSBuild.sln SQLite.NET.2013.sln SQLite.NET.2015.MSBuild.sln SQLite.NET.2015.sln SQLite.NET.2017.MSBuild.sln SQLite.NET.2017.sln SQLite.NET.NetStandard20.MSBuild.sln SQLite.NET.NetStandard20.sln System.Data.SQLite.url System.Data.SQLite/ System.Data.SQLite/AssemblyInfo.cs System.Data.SQLite/AssemblySourceIdAttribute.cs System.Data.SQLite/AssemblySourceTimeStampAttribute.cs System.Data.SQLite/Configurations/ System.Data.SQLite/Configurations/System.Data.SQLite.dll.config | > > | 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 | SQLite.NET.2013.MSBuild.sln SQLite.NET.2013.sln SQLite.NET.2015.MSBuild.sln SQLite.NET.2015.sln SQLite.NET.2017.MSBuild.sln SQLite.NET.2017.sln SQLite.NET.NetStandard20.MSBuild.sln SQLite.NET.NetStandard21.MSBuild.sln SQLite.NET.NetStandard20.sln SQLite.NET.NetStandard21.sln System.Data.SQLite.url System.Data.SQLite/ System.Data.SQLite/AssemblyInfo.cs System.Data.SQLite/AssemblySourceIdAttribute.cs System.Data.SQLite/AssemblySourceTimeStampAttribute.cs System.Data.SQLite/Configurations/ System.Data.SQLite/Configurations/System.Data.SQLite.dll.config |
︙ | ︙ | |||
656 657 658 659 660 661 662 663 664 665 666 667 668 669 | System.Data.SQLite/System.Data.SQLite.Module.2008.csproj System.Data.SQLite/System.Data.SQLite.Module.2010.csproj System.Data.SQLite/System.Data.SQLite.Module.2012.csproj System.Data.SQLite/System.Data.SQLite.Module.2013.csproj System.Data.SQLite/System.Data.SQLite.Module.2015.csproj System.Data.SQLite/System.Data.SQLite.Module.2017.csproj System.Data.SQLite/System.Data.SQLite.NetStandard20.csproj System.Data.SQLite/Targets/ System.Data.SQLite/Targets/System.Data.SQLite.Files.targets System.Data.SQLite/Targets/System.Data.SQLite.Properties.targets System.Data.SQLite/Targets/System.Data.SQLite.References.targets System.Data.SQLite/UnsafeNativeMethods.cs System.Data.SQLite.Linq/ System.Data.SQLite.Linq/AssemblyInfo.cs | > | 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 | System.Data.SQLite/System.Data.SQLite.Module.2008.csproj System.Data.SQLite/System.Data.SQLite.Module.2010.csproj System.Data.SQLite/System.Data.SQLite.Module.2012.csproj System.Data.SQLite/System.Data.SQLite.Module.2013.csproj System.Data.SQLite/System.Data.SQLite.Module.2015.csproj System.Data.SQLite/System.Data.SQLite.Module.2017.csproj System.Data.SQLite/System.Data.SQLite.NetStandard20.csproj System.Data.SQLite/System.Data.SQLite.NetStandard21.csproj System.Data.SQLite/Targets/ System.Data.SQLite/Targets/System.Data.SQLite.Files.targets System.Data.SQLite/Targets/System.Data.SQLite.Properties.targets System.Data.SQLite/Targets/System.Data.SQLite.References.targets System.Data.SQLite/UnsafeNativeMethods.cs System.Data.SQLite.Linq/ System.Data.SQLite.Linq/AssemblyInfo.cs |
︙ | ︙ | |||
710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 | System.Data.SQLite.Linq/System.Data.SQLite.Core.2015.csproj System.Data.SQLite.Linq/System.Data.SQLite.Core.2017.csproj System.Data.SQLite.Linq/System.Data.SQLite.EF6.2010.csproj System.Data.SQLite.Linq/System.Data.SQLite.EF6.2012.csproj System.Data.SQLite.Linq/System.Data.SQLite.EF6.2013.csproj System.Data.SQLite.Linq/System.Data.SQLite.EF6.2015.csproj System.Data.SQLite.Linq/System.Data.SQLite.EF6.2017.csproj System.Data.SQLite.Linq/System.Data.SQLite.Linq.2008.csproj System.Data.SQLite.Linq/System.Data.SQLite.Linq.2010.csproj System.Data.SQLite.Linq/System.Data.SQLite.Linq.2012.csproj System.Data.SQLite.Linq/System.Data.SQLite.Linq.2013.csproj System.Data.SQLite.Linq/System.Data.SQLite.Linq.2015.csproj System.Data.SQLite.Linq/System.Data.SQLite.Linq.2017.csproj Targets/ Targets/SQLite.NET.Mono.Settings.targets Targets/SQLite.NET.NetStandard20.Settings.targets Targets/SQLite.NET.Platform.Settings.targets Targets/SQLite.NET.Settings.targets Targets/SQLite.NET.Settings.targets.netFx35 Targets/SQLite.NET.Settings.targets.netFx40 Targets/SQLite.NET.targets test/ test/app.config | > > | 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 | System.Data.SQLite.Linq/System.Data.SQLite.Core.2015.csproj System.Data.SQLite.Linq/System.Data.SQLite.Core.2017.csproj System.Data.SQLite.Linq/System.Data.SQLite.EF6.2010.csproj System.Data.SQLite.Linq/System.Data.SQLite.EF6.2012.csproj System.Data.SQLite.Linq/System.Data.SQLite.EF6.2013.csproj System.Data.SQLite.Linq/System.Data.SQLite.EF6.2015.csproj System.Data.SQLite.Linq/System.Data.SQLite.EF6.2017.csproj System.Data.SQLite.Linq/System.Data.SQLite.EF6.NetStandard21.csproj System.Data.SQLite.Linq/System.Data.SQLite.Linq.2008.csproj System.Data.SQLite.Linq/System.Data.SQLite.Linq.2010.csproj System.Data.SQLite.Linq/System.Data.SQLite.Linq.2012.csproj System.Data.SQLite.Linq/System.Data.SQLite.Linq.2013.csproj System.Data.SQLite.Linq/System.Data.SQLite.Linq.2015.csproj System.Data.SQLite.Linq/System.Data.SQLite.Linq.2017.csproj Targets/ Targets/SQLite.NET.Mono.Settings.targets Targets/SQLite.NET.NetStandard20.Settings.targets Targets/SQLite.NET.NetStandard21.Settings.targets Targets/SQLite.NET.Platform.Settings.targets Targets/SQLite.NET.Settings.targets Targets/SQLite.NET.Settings.targets.netFx35 Targets/SQLite.NET.Settings.targets.netFx40 Targets/SQLite.NET.targets test/ test/app.config |
︙ | ︙ |
Added Setup/release_net_standard_21.bat.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | @ECHO OFF :: :: release_net_standard_21.bat -- :: :: .NET Standard 2.1 Release Tool :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SETLOCAL REM SET __ECHO=ECHO REM SET __ECHO3=ECHO IF NOT DEFINED _AECHO (SET _AECHO=REM) IF NOT DEFINED _CECHO (SET _CECHO=REM) IF NOT DEFINED _VECHO (SET _VECHO=REM) %_AECHO% Running %0 %* SET DUMMY2=%1 IF DEFINED DUMMY2 ( GOTO usage ) SET TOOLS=%~dp0 SET TOOLS=%TOOLS:~0,-1% %_VECHO% Tools = '%TOOLS%' IF DEFINED RELEASE_DEBUG ( SET RELEASE_CONFIGURATIONS=DebugManagedOnly ReleaseManagedOnly ) ELSE ( SET RELEASE_CONFIGURATIONS=ReleaseManagedOnly ) SET BASE_CONFIGURATIONSUFFIX=NetStandard21 SET YEARS=NetStandard21 SET PLATFORMS=MSIL SET BASE_PLATFORM=NetCore30 SET NOBUNDLE=1 SET RELEASE_MANAGEDONLY=1 SET NO_RELEASE_YEAR=1 SET NO_RELEASE_PLATFORM=1 SET NO_RELEASE_RMDIR=1 CALL :fn_ResetErrorLevel %__ECHO3% CALL "%TOOLS%\release_all.bat" IF ERRORLEVEL 1 ( ECHO Failed to build .NET Standard 2.1 release files. GOTO errors ) GOTO no_errors :fn_ResetErrorLevel VERIFY > NUL GOTO :EOF :fn_SetErrorLevel VERIFY MAYBE 2> NUL GOTO :EOF :usage ECHO. ECHO Usage: %~nx0 ECHO. GOTO errors :errors CALL :fn_SetErrorLevel ENDLOCAL ECHO. ECHO Release failure, errors were encountered. GOTO end_of_file :no_errors CALL :fn_ResetErrorLevel ENDLOCAL ECHO. ECHO Release success, no errors were encountered. GOTO end_of_file :end_of_file %__ECHO% EXIT /B %ERRORLEVEL% |
Added Setup/run-netstandard21-tests-debug.sh.
> > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | #!/bin/bash scriptdir=`dirname "$BASH_SOURCE"` if [[ "$OSTYPE" == "darwin"* ]]; then libname=libSQLite.Interop.dylib else libname=libSQLite.Interop.so fi if [[ -z "$SQLITE_NET_YEAR" ]]; then SQLITE_NET_YEAR=2013 fi pushd "$scriptdir/.." SQLITE_INTEROP_DIR=bin/$SQLITE_NET_YEAR/Debug$SQLITE_NET_CONFIGURATION_SUFFIX/bin SQLITE_INTEROP_FILE=$SQLITE_INTEROP_DIR/$libname if [[ -f "${SQLITE_INTEROP_FILE}" ]]; then cp "$SQLITE_INTEROP_FILE" "$SQLITE_INTEROP_DIR/SQLite.Interop.dll" libname=SQLite.Interop.dll fi dotnet exec Externals/Eagle/bin/netStandard20/EagleShell.dll -preInitialize "set test_configuration Debug; set test_configuration_suffix {$SQLITE_NET_CONFIGURATION_SUFFIX}; set test_native_configuration_suffix {$SQLITE_NET_CONFIGURATION_SUFFIX}; set test_year NetStandard21; set test_native_year {$SQLITE_NET_YEAR}" -file Tests/all.eagle "$@" popd |
Added Setup/run-netstandard21-tests-release.sh.
> > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | #!/bin/bash scriptdir=`dirname "$BASH_SOURCE"` if [[ "$OSTYPE" == "darwin"* ]]; then libname=libSQLite.Interop.dylib else libname=libSQLite.Interop.so fi if [[ -z "$SQLITE_NET_YEAR" ]]; then SQLITE_NET_YEAR=2013 fi pushd "$scriptdir/.." SQLITE_INTEROP_DIR=bin/$SQLITE_NET_YEAR/Release$SQLITE_NET_CONFIGURATION_SUFFIX/bin SQLITE_INTEROP_FILE=$SQLITE_INTEROP_DIR/$libname if [[ -f "${SQLITE_INTEROP_FILE}" ]]; then cp "$SQLITE_INTEROP_FILE" "$SQLITE_INTEROP_DIR/SQLite.Interop.dll" libname=SQLite.Interop.dll fi dotnet exec Externals/Eagle/bin/netStandard20/EagleShell.dll -preInitialize "set test_configuration Release; set test_configuration_suffix {$SQLITE_NET_CONFIGURATION_SUFFIX}; set test_native_configuration_suffix {$SQLITE_NET_CONFIGURATION_SUFFIX}; set test_year NetStandard21; set test_native_year {$SQLITE_NET_YEAR}" -file Tests/all.eagle "$@" popd |
Added Setup/set_DebugNativeOnly_x86_NetStandard21.bat.
> > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 | @ECHO OFF :: :: set_DebugNativeOnly_x86_NetStandard21.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET CONFIGURATION=DebugNativeOnly CALL "%~dp0\set_x86_NetStandard21.bat" |
Added Setup/set_Debug_x86_NetStandard21.bat.
> > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 | @ECHO OFF :: :: set_Debug_x86_NetStandard21.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET CONFIGURATION=Debug CALL "%~dp0\set_x86_NetStandard21.bat" |
Added Setup/set_ReleaseNativeOnly_x86_NetStandard21.bat.
> > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 | @ECHO OFF :: :: set_ReleaseNativeOnly_x86_NetStandard21.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET CONFIGURATION=ReleaseNativeOnly CALL "%~dp0\set_x86_NetStandard21.bat" |
Added Setup/set_Release_x86_NetStandard21.bat.
> > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 | @ECHO OFF :: :: set_Release_x86_NetStandard21.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET CONFIGURATION=Release CALL "%~dp0\set_x86_NetStandard21.bat" |
Added Setup/set_netStandard21.bat.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | @ECHO OFF :: :: set_netStandard21.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: IF NOT DEFINED ISNETFX2 ( SET ISNETFX2=False ) IF NOT DEFINED VCRUNTIME ( SET VCRUNTIME=2019_VCU1 ) IF NOT DEFINED CONFIGURATION ( SET CONFIGURATION=Release ) IF NOT DEFINED PLATFORM ( SET PLATFORM=Win32 ) IF NOT DEFINED PROCESSOR ( SET PROCESSOR=x86 ) IF NOT DEFINED YEAR ( SET YEAR=2019 ) IF NOT DEFINED FRAMEWORK ( SET FRAMEWORK=netStandard21 ) :end_of_file |
Added Setup/set_x86_NetStandard21.bat.
> > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | @ECHO OFF :: :: set_x86_NetStandard21.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET ISNETFX2=False SET VCRUNTIME=2019_VCU1 SET PLATFORM=Win32 SET PROCESSOR=x86 SET YEAR=NetStandard21 |
Changes to Setup/set_year_2005.bat.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | @ECHO OFF :: :: set_year_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= | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | @ECHO OFF :: :: set_year_2005.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET NETCORE20ONLY= SET NETCORE30ONLY= SET NETFX20ONLY=1 SET NETFX35ONLY= SET NETFX40ONLY= SET NETFX45ONLY= SET NETFX451ONLY= SET NETFX452ONLY= SET NETFX46ONLY= |
︙ | ︙ |
Changes to Setup/set_year_2008.bat.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | @ECHO OFF :: :: set_year_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= | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | @ECHO OFF :: :: set_year_2008.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET NETCORE20ONLY= SET NETCORE30ONLY= SET NETFX20ONLY= SET NETFX35ONLY=1 SET NETFX40ONLY= SET NETFX45ONLY= SET NETFX451ONLY= SET NETFX452ONLY= SET NETFX46ONLY= |
︙ | ︙ |
Changes to Setup/set_year_2010.bat.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | @ECHO OFF :: :: set_year_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= | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | @ECHO OFF :: :: set_year_2010.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET NETCORE20ONLY= SET NETCORE30ONLY= SET NETFX20ONLY= SET NETFX35ONLY= SET NETFX40ONLY=1 SET NETFX45ONLY= SET NETFX451ONLY= SET NETFX452ONLY= SET NETFX46ONLY= |
︙ | ︙ |
Changes to Setup/set_year_2012.bat.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | @ECHO OFF :: :: set_year_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= | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | @ECHO OFF :: :: set_year_2012.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET NETCORE20ONLY= SET NETCORE30ONLY= SET NETFX20ONLY= SET NETFX35ONLY= SET NETFX40ONLY= SET NETFX45ONLY=1 SET NETFX451ONLY= SET NETFX452ONLY= SET NETFX46ONLY= |
︙ | ︙ |
Changes to Setup/set_year_2013.bat.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | @ECHO OFF :: :: set_year_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= | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | @ECHO OFF :: :: set_year_2013.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET NETCORE20ONLY= SET NETCORE30ONLY= SET NETFX20ONLY= SET NETFX35ONLY= SET NETFX40ONLY= SET NETFX45ONLY= SET NETFX451ONLY=1 SET NETFX452ONLY= SET NETFX46ONLY= |
︙ | ︙ |
Changes to Setup/set_year_2015.bat.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | @ECHO OFF :: :: set_year_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 | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | @ECHO OFF :: :: set_year_2015.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET NETCORE20ONLY= SET NETCORE30ONLY= SET NETFX20ONLY= SET NETFX35ONLY= SET NETFX40ONLY= SET NETFX45ONLY= SET NETFX451ONLY= SET NETFX452ONLY= SET NETFX46ONLY=1 |
︙ | ︙ |
Changes to Setup/set_year_2017.bat.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | @ECHO OFF :: :: set_year_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= | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | @ECHO OFF :: :: set_year_2017.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET NETCORE20ONLY= SET NETCORE30ONLY= SET NETFX20ONLY= SET NETFX35ONLY= SET NETFX40ONLY= SET NETFX45ONLY= SET NETFX451ONLY= SET NETFX452ONLY= SET NETFX46ONLY= |
︙ | ︙ |
Changes to Setup/set_year_NetStandard20.bat.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | @ECHO OFF :: :: set_year_NetStandard20.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET NETCORE20ONLY=1 SET NETFX20ONLY= SET NETFX35ONLY= SET NETFX40ONLY= SET NETFX45ONLY= SET NETFX451ONLY= SET NETFX452ONLY= SET NETFX46ONLY= | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | @ECHO OFF :: :: set_year_NetStandard20.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET NETCORE20ONLY=1 SET NETCORE30ONLY= SET NETFX20ONLY= SET NETFX35ONLY= SET NETFX40ONLY= SET NETFX45ONLY= SET NETFX451ONLY= SET NETFX452ONLY= SET NETFX46ONLY= |
︙ | ︙ |
Added Setup/set_year_NetStandard21.bat.
> > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | @ECHO OFF :: :: set_year_NetStandard21.bat -- :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SET NETCORE20ONLY= SET NETCORE30ONLY=1 SET NETFX20ONLY= SET NETFX35ONLY= SET NETFX40ONLY= SET NETFX45ONLY= SET NETFX451ONLY= SET NETFX452ONLY= SET NETFX46ONLY= SET NETFX461ONLY= SET NETFX462ONLY= SET NETFX47ONLY= SET NETFX471ONLY= SET NETFX472ONLY= VERIFY > NUL |
Added Setup/test_net_standard_21.bat.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 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 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 | @ECHO OFF :: :: test_net_standard_21.bat -- :: :: .NET Standard 2.1 Multiplexing Wrapper Tool for Unit Tests :: :: Written by Joe Mistachkin. :: Released to the public domain, use at your own risk! :: SETLOCAL REM SET __ECHO=ECHO REM SET __ECHO2=ECHO REM SET __ECHO3=ECHO IF NOT DEFINED _AECHO (SET _AECHO=REM) IF NOT DEFINED _CECHO (SET _CECHO=REM) IF NOT DEFINED _VECHO (SET _VECHO=REM) %_AECHO% Running %0 %* SET DUMMY2=%1 IF DEFINED DUMMY2 ( GOTO usage ) REM SET DFLAGS=/L %_VECHO% DFlags = '%DFLAGS%' SET FFLAGS=/V /F /G /H /I /R /Y /Z %_VECHO% FFlags = '%FFLAGS%' SET ROOT=%~dp0\.. SET ROOT=%ROOT:\\=\% %_VECHO% Root = '%ROOT%' SET TOOLS=%~dp0 SET TOOLS=%TOOLS:~0,-1% %_VECHO% Tools = '%TOOLS%' CALL :fn_ResetErrorLevel %__ECHO3% CALL "%TOOLS%\set_common.bat" IF ERRORLEVEL 1 ( ECHO Could not set common variables. GOTO errors ) IF NOT DEFINED DOTNET ( SET DOTNET=dotnet.exe ) %_VECHO% DotNet = '%DOTNET%' IF NOT DEFINED SUBCOMMANDS ( SET SUBCOMMANDS=exec ) %_VECHO% SubCommands = '%SUBCOMMANDS%' IF NOT DEFINED TEST_NATIVE_CONFIGURATIONS ( SET TEST_NATIVE_CONFIGURATIONS=ReleaseNativeOnly ) %_VECHO% TestNativeConfigurations = '%TEST_NATIVE_CONFIGURATIONS%' IF DEFINED PLATFORM ( %_AECHO% Skipping platform detection, already set... GOTO skip_detectPlatform ) IF /I "%PROCESSOR_ARCHITECTURE%" == "x86" ( SET PLATFORM=Win32 ) IF /I "%PROCESSOR_ARCHITECTURE%" == "AMD64" ( SET PLATFORM=x64 ) :skip_detectPlatform IF NOT DEFINED PLATFORM ( ECHO Unsupported platform. GOTO errors ) %_VECHO% Platform = '%PLATFORM%' IF NOT DEFINED YEARS ( SET YEARS=NetStandard21 ) %_VECHO% Years = '%YEARS%' IF NOT DEFINED NATIVE_YEARS ( SET NATIVE_YEARS=2019 2017 2015 ) %_VECHO% NativeYears = '%NATIVE_YEARS%' IF NOT DEFINED TEST_FILE ( SET TEST_FILE=Tests\all.eagle ) %_VECHO% TestFile = '%TEST_FILE%' %_VECHO% PreArgs = '%PREARGS%' %_VECHO% PostArgs = '%POSTARGS%' IF NOT DEFINED EAGLESHELL ( SET EAGLESHELL=EagleShell.dll ) %_VECHO% EagleShell = '%EAGLESHELL%' CALL :fn_VerifyDotNetCore IF ERRORLEVEL 1 GOTO errors %__ECHO2% PUSHD "%ROOT%" IF ERRORLEVEL 1 ( ECHO Could not change directory to "%ROOT%". GOTO errors ) SET TEST_ALL=1 FOR %%C IN (%TEST_NATIVE_CONFIGURATIONS%) DO ( FOR %%Y IN (%YEARS%) DO ( FOR %%N IN (%NATIVE_YEARS%) DO ( CALL :fn_RunDotNetCoreTestSuite %%C %%Y %%N IF ERRORLEVEL 1 GOTO errors ) ) ) %__ECHO2% POPD IF ERRORLEVEL 1 ( ECHO Could not restore directory. GOTO errors ) GOTO no_errors :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. CALL :fn_SetErrorLevel GOTO :EOF ) GOTO :EOF :fn_RunDotNetCoreTestSuite SET NATIVE_CONFIGURATION=%1 IF NOT DEFINED NATIVE_CONFIGURATION ( ECHO Cannot run .NET Core test suite, missing native configuration. CALL :fn_SetErrorLevel GOTO :EOF ) SET YEAR=%2 IF NOT DEFINED YEAR ( ECHO Cannot run .NET Core test suite, missing year. CALL :fn_SetErrorLevel GOTO :EOF ) SET NATIVE_YEAR=%3 IF NOT DEFINED NATIVE_YEAR ( ECHO Cannot run .NET Core test suite, missing native year. CALL :fn_SetErrorLevel GOTO :EOF ) SET CONFIGURATION=%NATIVE_CONFIGURATION% SET CONFIGURATION=%CONFIGURATION:NativeOnly=% IF EXIST "bin\%YEAR%\%CONFIGURATION%NetStandard21\bin" ( IF EXIST "bin\%NATIVE_YEAR%\%PLATFORM%\%NATIVE_CONFIGURATION%" ( %__ECHO% "%DOTNET%" %SUBCOMMANDS% "Externals\Eagle\bin\netStandard20\%EAGLESHELL%" %PREARGS% -anyInitialize "set test_year {%YEAR%}; set test_native_year {%NATIVE_YEAR%}; set test_configuration {%CONFIGURATION%}; set test_configuration_suffix NetStandard21" -initialize -postInitialize "unset -nocomplain no(deleteSqliteImplicitNativeFiles); unset -nocomplain no(copySqliteImplicitNativeFiles)" -file "%TEST_FILE%" %POSTARGS% IF ERRORLEVEL 1 ( ECHO Testing of "%YEAR%/%NATIVE_YEAR%/%CONFIGURATION%" .NET Standard 2.1 assembly failed. CALL :fn_SetErrorLevel GOTO :EOF ) ) ELSE ( %_AECHO% Native directory "bin\%NATIVE_YEAR%\%PLATFORM%\%NATIVE_CONFIGURATION%" not found, skipped. ) ) ELSE ( %_AECHO% Managed directory "bin\%YEAR%\%CONFIGURATION%NetStandard21\bin" not found, skipped. ) GOTO :EOF :fn_SetVariable SETLOCAL SET __ECHO_CMD=ECHO %%%2%% FOR /F "delims=" %%V IN ('%__ECHO_CMD%') DO ( SET VALUE=%%V ) ENDLOCAL && ( SET %1=%VALUE% ) GOTO :EOF :fn_ResetErrorLevel VERIFY > NUL GOTO :EOF :fn_SetErrorLevel VERIFY MAYBE 2> NUL GOTO :EOF :usage ECHO. ECHO Usage: %~nx0 GOTO errors :errors CALL :fn_SetErrorLevel ENDLOCAL ECHO. ECHO Test failure, errors were encountered. GOTO end_of_file :no_errors CALL :fn_ResetErrorLevel ENDLOCAL ECHO. ECHO Test success, no errors were encountered. GOTO end_of_file :end_of_file %__ECHO% EXIT /B %ERRORLEVEL% |
Added System.Data.SQLite.Linq/System.Data.SQLite.EF6.NetStandard21.csproj.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 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 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 | <?xml version="1.0" encoding="utf-8"?> <!-- * * System.Data.SQLite.EF6.NetStandard21.csproj - * * Written by Joe Mistachkin. * Released to the public domain, use at your own risk! * --> <Project ToolsVersion="15.0"> <!-- ****************************************************************************** ** Import .NET Core SDK Properties ** ****************************************************************************** --> <!-- WARNING: This project cannot use the recommended pattern of having the "Project" element simply include the "Sdk" attribute, due to the "BuildDependsOn" property not being honored, see: https://github.com/Microsoft/msbuild/issues/1680 Instead, the .NET Core SDK properties file is imported here and the corresponding targets file is imported right before resetting the "BuildDependsOn" property to include targets necessary for this project. --> <Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" /> <!-- ****************************************************************************** ** Project Specific Properties ** ****************************************************************************** --> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <ProjectGuid>{F1B93C04-C4AE-4D6D-B353-417AEFDCEE7B}</ProjectGuid> <OutputType>Library</OutputType> <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>System.Data.SQLite.EF6</RootNamespace> <AssemblyName>System.Data.SQLite.EF6</AssemblyName> <SQLiteNetDir>$(MSBuildProjectDirectory)\..</SQLiteNetDir> <IsDotNetStandard>true</IsDotNetStandard> <ConfigurationYear>NetStandard21</ConfigurationYear> <UseEntityFramework6>true</UseEntityFramework6> </PropertyGroup> <!-- ****************************************************************************** ** Project / .NET Standard 2.1 Specific Properties ** ****************************************************************************** --> <PropertyGroup> <TargetFramework>netstandard2.1</TargetFramework> <GenerateAssemblyInfo>false</GenerateAssemblyInfo> <Deterministic>False</Deterministic> <EnableDefaultItems>false</EnableDefaultItems> </PropertyGroup> <!-- ****************************************************************************** ** .NET Standard 2.1 Specific Eagle Strong Name Signing Property Overrides ** ****************************************************************************** --> <PropertyGroup> <!-- NOTE: Apparently, the .NET Core build system sets the SignAssembly property to false; therefore, reset it to true. Also, delay signing is currently non-functional due to the inability to run the strong name signing tool (sn.exe). It behaves badly when run against a .NET Core assembly. --> <SignAssembly>true</SignAssembly> <DelaySign>false</DelaySign> <!-- TODO: Why is this needed? It seems that public signing is quite similar to delay signing. Why is this necessary when not running on Windows? --> <PublicSign Condition="'$(OS)' != 'Windows_NT'">true</PublicSign> </PropertyGroup> <!-- ****************************************************************************** ** Import Project Default Settings ** ****************************************************************************** --> <Import Project="$(SQLiteNetDir)\Targets\SQLite.NET.Platform.Settings.targets" /> <Import Project="$(SQLiteNetDir)\Targets\SQLite.NET.Settings.targets" /> <!-- ****************************************************************************** ** Import Project Build Targets ** ****************************************************************************** --> <Import Project="$(SQLiteNetDir)\Targets\SQLite.NET.targets" /> <!-- ****************************************************************************** ** Convert Project Settings To MSBuild Settings ** ****************************************************************************** --> <PropertyGroup Condition="'$(BinaryOutputPath)' != ''"> <OutputPath>$(BinaryOutputPath)</OutputPath> <DocumentationFile>$(BinaryOutputPath)netstandard2.1\System.Data.SQLite.EF6.xml</DocumentationFile> </PropertyGroup> <!-- ****************************************************************************** ** Project Configuration Specific Properties ** ****************************************************************************** --> <PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> <DebugSymbols>true</DebugSymbols> <Optimize>false</Optimize> <DefineConstants>DEBUG;TRACE</DefineConstants> <ErrorReport>prompt</ErrorReport> </PropertyGroup> <!-- ****************************************************************************** --> <PropertyGroup Condition=" '$(Configuration)' == 'Release' "> <Optimize>true</Optimize> <DefineConstants>TRACE</DefineConstants> <ErrorReport>prompt</ErrorReport> </PropertyGroup> <!-- ****************************************************************************** ** Project Source Code Files (Unconditional) ** ****************************************************************************** --> <ItemGroup> <Compile Include="AssemblyInfo.cs" /> <Compile Include="Properties\Resources.Designer.cs"> <AutoGen>True</AutoGen> <DesignTime>True</DesignTime> <DependentUpon>Resources.resx</DependentUpon> </Compile> <Compile Include="SQL Generation\DmlSqlGenerator.cs" /> <Compile Include="SQL Generation\InternalBase.cs" /> <Compile Include="SQL Generation\ISqlFragment.cs" /> <Compile Include="SQL Generation\JoinSymbol.cs" /> <Compile Include="SQL Generation\KeyToListMap.cs" /> <Compile Include="SQL Generation\MetadataHelpers.cs" /> <Compile Include="SQL Generation\SkipClause.cs" /> <Compile Include="SQL Generation\SqlBuilder.cs" /> <Compile Include="SQL Generation\SqlChecker.cs" /> <Compile Include="SQL Generation\SqlGenerator.cs" /> <Compile Include="SQL Generation\SqlSelectStatement.cs" /> <Compile Include="SQL Generation\SqlWriter.cs" /> <Compile Include="SQL Generation\StringUtil.cs" /> <Compile Include="SQL Generation\Symbol.cs" /> <Compile Include="SQL Generation\SymbolPair.cs" /> <Compile Include="SQL Generation\SymbolTable.cs" /> <Compile Include="SQL Generation\TopClause.cs" /> <Compile Include="SQLiteProviderFactory.cs" /> <Compile Include="SQLiteProviderManifest.cs" /> <Compile Include="SQLiteProviderServices.cs" /> </ItemGroup> <!-- ****************************************************************************** ** Project Embedded Resource Files ** ****************************************************************************** --> <ItemGroup> <EmbeddedResource Include="Resources\SQLiteProviderServices.StoreSchemaDefinition.EF6.ssdl"> <LogicalName>System.Data.SQLite.SQLiteProviderServices.StoreSchemaDefinition.ssdl</LogicalName> </EmbeddedResource> <EmbeddedResource Include="Resources\Common.ConceptualSchemaDefinition.csdl"> <LogicalName>System.Data.SQLite.Common.ConceptualSchemaDefinition.csdl</LogicalName> </EmbeddedResource> <EmbeddedResource Include="Resources\SQLiteProviderServices.ProviderManifest.xml"> <LogicalName>System.Data.SQLite.SQLiteProviderServices.ProviderManifest.xml</LogicalName> </EmbeddedResource> <EmbeddedResource Include="Resources\SQLiteProviderServices.StoreSchemaMapping.msl"> <LogicalName>System.Data.SQLite.SQLiteProviderServices.StoreSchemaMapping.msl</LogicalName> </EmbeddedResource> <EmbeddedResource Include="Properties\Resources.resx"> <LogicalName>System.Data.SQLite.Properties.resources</LogicalName> <Generator>ResXFileCodeGenerator</Generator> <LastGenOutput>Resources.Designer.cs</LastGenOutput> </EmbeddedResource> </ItemGroup> <!-- ****************************************************************************** ** Library Project References ** ****************************************************************************** --> <ItemGroup> <ProjectReference Include="..\System.Data.SQLite\System.Data.SQLite.NetStandard20.csproj"> <Project>{AC139952-261A-4463-B6FA-AEBC25283A66}</Project> <Name>System.Data.SQLite.NetStandard20</Name> <Private>False</Private> </ProjectReference> </ItemGroup> <!-- ****************************************************************************** ** .NET Core Assembly References ** ****************************************************************************** --> <ItemGroup> <PackageReference Include="EntityFramework" Version="6.3.0" /> </ItemGroup> <!-- ****************************************************************************** ** Import .NET Core SDK Targets ** ****************************************************************************** --> <!-- WARNING: This project cannot use the recommended pattern of having the "Project" element simply include the "Sdk" attribute, see the comment at the top of this file for more information. --> <Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" /> <!-- ****************************************************************************** ** Import Build Targets ** ****************************************************************************** --> <Import Project="$(SQLiteNetDir)\System.Data.SQLite\Targets\System.Data.SQLite.Properties.targets" /> <!-- ****************************************************************************** ** Add Targets To BuildDependsOn Property ** ****************************************************************************** --> <PropertyGroup> <BuildDependsOn> DetectBuildTool; DetectOperatingSystem; $(BuildDependsOn); CopyConfigurations; </BuildDependsOn> <CleanDependsOn> $(CleanDependsOn); CleanConfigurations; </CleanDependsOn> </PropertyGroup> <!-- To modify your build process, add your task inside one of the targets below and uncomment it. Other similar extension points exist, see Microsoft.Common.targets. <Target Name="BeforeBuild"> </Target> <Target Name="AfterBuild"> </Target> --> </Project> |
Changes to System.Data.SQLite/AssemblyInfo.cs.
︙ | ︙ | |||
51 52 53 54 55 56 57 | #if !PLATFORM_COMPACTFRAMEWORK #if !NET_40 && !NET_45 && !NET_451 && !NET_452 && !NET_46 && !NET_461 && !NET_462 && !NET_47 && !NET_471 && !NET_472 [assembly: AllowPartiallyTrustedCallers] #endif [assembly: ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] | | | 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | #if !PLATFORM_COMPACTFRAMEWORK #if !NET_40 && !NET_45 && !NET_451 && !NET_452 && !NET_46 && !NET_461 && !NET_462 && !NET_47 && !NET_471 && !NET_472 [assembly: AllowPartiallyTrustedCallers] #endif [assembly: ReliabilityContract(Consistency.WillNotCorruptState, Cer.Success)] #if NET_40 || NET_45 || NET_451 || NET_452 || NET_46 || NET_461 || NET_462 || NET_47 || NET_471 || NET_472 || NET_STANDARD_20 || NET_STANDARD_21 // // NOTE: This attribute is only available in .NET Framework 4.0 or higher. // [assembly: SecurityRules(SecurityRuleSet.Level1)] #endif #endif |
︙ | ︙ |
Changes to System.Data.SQLite/LINQ/SQLiteFactory_Linq.cs.
︙ | ︙ | |||
66 67 68 69 70 71 72 | (_dbProviderServicesType != null && serviceType == _dbProviderServicesType)) { return GetSQLiteProviderServicesInstance(); } return null; } | | | 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | (_dbProviderServicesType != null && serviceType == _dbProviderServicesType)) { return GetSQLiteProviderServicesInstance(); } return null; } #if !NET_STANDARD_20 || NET_STANDARD_21 [ReflectionPermission(SecurityAction.Assert, MemberAccess = true)] #endif private object GetSQLiteProviderServicesInstance() { if (_sqliteServices == null) { string typeName = UnsafeNativeMethods.GetSettingValue( |
︙ | ︙ |
Changes to System.Data.SQLite/SQLiteDefineConstants.cs.
︙ | ︙ | |||
147 148 149 150 151 152 153 154 155 156 157 158 159 160 | #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", | > > > > | 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 | #if NET_COMPACT_20 "NET_COMPACT_20", #endif #if NET_STANDARD_20 "NET_STANDARD_20", #endif #if NET_STANDARD_21 "NET_STANDARD_21", #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 | } } /// <summary> /// Using reflection, enumerate all assemblies in the current appdomain looking for classes that /// have a SQLiteFunctionAttribute attribute, and registering them accordingly. /// </summary> | | | 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> #if !PLATFORM_COMPACTFRAMEWORK && !NET_STANDARD_20 && !NET_STANDARD_21 [Security.Permissions.FileIOPermission(Security.Permissions.SecurityAction.Assert, AllFiles = Security.Permissions.FileIOPermissionAccess.PathDiscovery)] #endif static SQLiteFunction() { _registeredFunctions = new Dictionary<SQLiteFunctionAttribute, object>(); try { |
︙ | ︙ |
Added System.Data.SQLite/System.Data.SQLite.NetStandard21.csproj.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 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 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 | <?xml version="1.0" encoding="utf-8"?> <!-- * * System.Data.SQLite.NetStandard21.csproj - * * Written by Joe Mistachkin. * Released to the public domain, use at your own risk! * --> <Project ToolsVersion="15.0"> <!-- ****************************************************************************** ** Import .NET Core SDK Properties ** ****************************************************************************** --> <!-- WARNING: This project cannot use the recommended pattern of having the "Project" element simply include the "Sdk" attribute, due to the "BuildDependsOn" property not being honored, see: https://github.com/Microsoft/msbuild/issues/1680 Instead, the .NET Core SDK properties file is imported here and the corresponding targets file is imported right before resetting the "BuildDependsOn" property to include targets necessary for this project. --> <Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" /> <!-- ****************************************************************************** ** Project Specific Properties ** ****************************************************************************** --> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <ProjectGuid>{77BE07F7-8183-4A83-8AEC-D46A0C2C026D}</ProjectGuid> <OutputType>Library</OutputType> <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>System.Data.SQLite</RootNamespace> <AssemblyName>System.Data.SQLite</AssemblyName> <SQLiteNetDir>$(MSBuildProjectDirectory)\..</SQLiteNetDir> <IsDotNetStandard>true</IsDotNetStandard> <ConfigurationYear>NetStandard21</ConfigurationYear> </PropertyGroup> <!-- ****************************************************************************** ** Project / .NET Standard 2.1 Specific Properties ** ****************************************************************************** --> <PropertyGroup> <TargetFramework>netstandard2.1</TargetFramework> <GenerateAssemblyInfo>false</GenerateAssemblyInfo> <Deterministic>False</Deterministic> <EnableDefaultItems>false</EnableDefaultItems> </PropertyGroup> <!-- ****************************************************************************** ** .NET Standard 2.1 Specific Eagle Strong Name Signing Property Overrides ** ****************************************************************************** --> <PropertyGroup> <!-- NOTE: Apparently, the .NET Core build system sets the SignAssembly property to false; therefore, reset it to true. Also, delay signing is currently non-functional due to the inability to run the strong name signing tool (sn.exe). It behaves badly when run against a .NET Core assembly. --> <SignAssembly>true</SignAssembly> <DelaySign>false</DelaySign> <!-- TODO: Why is this needed? It seems that public signing is quite similar to delay signing. Why is this necessary when not running on Windows? --> <PublicSign Condition="'$(OS)' != 'Windows_NT'">true</PublicSign> </PropertyGroup> <!-- ****************************************************************************** ** .NET Standard 2.1 Specific Targets ** ****************************************************************************** --> <Target Name="GenerateResourcesForNetStandard21" Condition="'$(GenerateResourcesForNetStandard21)' != 'false' And '$(BuildTool)' == 'DotNetCore' And '$(OperatingSystem)' == 'Windows' And '$(MSBuildProjectDirectory)' != '' And !HasTrailingSlash('$(MSBuildProjectDirectory)') And Exists('$(MSBuildProjectDirectory)\..\Externals\ResGen\ResGen.exe')" Inputs="Resources\SR.resx" Outputs="Generated\SR.resources"> <MakeDir Directories="Generated" /> <Exec Command=""$(MSBuildProjectDirectory)\..\Externals\ResGen\ResGen.exe" Resources\SR.resx Generated\SR.resources "$(MSBuildProjectDirectory)\Resources"" /> </Target> <!-- ****************************************************************************** ** Import Project Default Settings ** ****************************************************************************** --> <Import Project="$(SQLiteNetDir)\Targets\SQLite.NET.Platform.Settings.targets" /> <Import Project="$(SQLiteNetDir)\Targets\SQLite.NET.Settings.targets" /> <!-- ****************************************************************************** ** Import Project Build Targets ** ****************************************************************************** --> <Import Project="$(SQLiteNetDir)\Targets\SQLite.NET.targets" /> <!-- ****************************************************************************** ** Convert Project Settings To MSBuild Settings ** ****************************************************************************** --> <PropertyGroup Condition="'$(BinaryOutputPath)' != ''"> <OutputPath>$(BinaryOutputPath)</OutputPath> <DocumentationFile>$(BinaryOutputPath)netstandard2.1\System.Data.SQLite.xml</DocumentationFile> </PropertyGroup> <!-- ****************************************************************************** ** Project Configuration Specific Properties ** ****************************************************************************** --> <PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> <DebugSymbols>true</DebugSymbols> <Optimize>false</Optimize> <DefineConstants>DEBUG;TRACE</DefineConstants> <ErrorReport>prompt</ErrorReport> </PropertyGroup> <!-- ****************************************************************************** --> <PropertyGroup Condition=" '$(Configuration)' == 'Release' "> <Optimize>true</Optimize> <DefineConstants>TRACE</DefineConstants> <ErrorReport>prompt</ErrorReport> </PropertyGroup> <!-- ****************************************************************************** ** Import Assembly References ** ****************************************************************************** --> <Import Project="$(MSBuildProjectDirectory)\Targets\System.Data.SQLite.References.targets" /> <!-- ****************************************************************************** ** Import Project Compile-Time Options (i.e. Define Constants) ** ****************************************************************************** --> <Import Project="$(MSBuildProjectDirectory)\Targets\System.Data.SQLite.Properties.targets" /> <!-- ****************************************************************************** ** Import Project Source Code Files ** ****************************************************************************** --> <Import Project="$(MSBuildProjectDirectory)\Targets\System.Data.SQLite.Files.targets" /> <!-- ****************************************************************************** ** Project Embedded Resource Files ** ****************************************************************************** --> <ItemGroup> <EmbeddedResource Include="Generated\SR.resources"> <LogicalName>System.Data.SQLite.SR.resources</LogicalName> </EmbeddedResource> </ItemGroup> <!-- ****************************************************************************** ** Import .NET Core SDK Targets ** ****************************************************************************** --> <!-- WARNING: This project cannot use the recommended pattern of having the "Project" element simply include the "Sdk" attribute, see the comment at the top of this file for more information. --> <Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" /> <!-- ****************************************************************************** ** Add Targets To BuildDependsOn Property ** ****************************************************************************** --> <PropertyGroup> <BuildDependsOn> DetectBuildTool; DetectOperatingSystem; GenerateResourcesForNetStandard21; $(BuildDependsOn); CopyConfigurations; </BuildDependsOn> <CleanDependsOn> $(CleanDependsOn); CleanConfigurations; </CleanDependsOn> </PropertyGroup> <!-- To modify your build process, add your task inside one of the targets below and uncomment it. Other similar extension points exist, see Microsoft.Common.targets. <Target Name="BeforeBuild"> </Target> <Target Name="AfterBuild"> </Target> --> </Project> |
Changes to System.Data.SQLite/Targets/System.Data.SQLite.Properties.targets.
︙ | ︙ | |||
159 160 161 162 163 164 165 | <!-- NOTE: Only use functionality available in .NET Standard 2.0? By default, this is disabled. This must be enabled to successfully build the project using .NET Core 2.0 SDK (if necessary, it will typically be enabled from within the project file itself). --> | | > > > > > > > > > > > > > > | 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 | <!-- NOTE: Only use functionality available in .NET Standard 2.0? By default, this is disabled. This must be enabled to successfully build the project using .NET Core 2.0 SDK (if necessary, it will typically be enabled from within the project file itself). --> <PropertyGroup Condition="'$(IsDotNetStandard)' != 'false' And ('$(TargetFramework)' == 'netstandard2.0' Or '$(TargetFramework)' == 'netcoreapp2.0')"> <DefineConstants>$(DefineConstants);NET_STANDARD_20</DefineConstants> </PropertyGroup> <!-- NOTE: Only use functionality available in .NET Standard 2.1? By default, this is disabled. This must be enabled to successfully build the project using .NET Core 3.0 SDK (if necessary, it will typically be enabled from within the project file itself). --> <PropertyGroup Condition="'$(IsDotNetStandard)' != 'false' And ('$(TargetFramework)' == 'netstandard2.1' Or '$(TargetFramework)' == 'netcoreapp2.1')"> <DefineConstants>$(DefineConstants);NET_STANDARD_21</DefineConstants> </PropertyGroup> <!-- NOTE: Enable extra internal state checking? --> <PropertyGroup Condition="'$(CheckState)' != 'false'"> <DefineConstants>$(DefineConstants);CHECK_STATE</DefineConstants> </PropertyGroup> |
︙ | ︙ |
Changes to System.Data.SQLite/UnsafeNativeMethods.cs.
︙ | ︙ | |||
1159 1160 1161 1162 1163 1164 1165 | /// <param name="name"> /// Structure containing a preallocated byte buffer to fill with the /// requested information. /// </param> /// <returns> /// Zero for success and less than zero upon failure. /// </returns> | | | 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 | /// <param name="name"> /// Structure containing a preallocated byte buffer to fill with the /// requested information. /// </param> /// <returns> /// Zero for success and less than zero upon failure. /// </returns> #if NET_STANDARD_20 || NET_STANDARD_21 [DllImport("libc", #else [DllImport("__Internal", #endif CallingConvention = CallingConvention.Cdecl)] private static extern int uname(out utsname_interop name); |
︙ | ︙ | |||
1183 1184 1185 1186 1187 1188 1189 | /// <param name="mode"> /// This must be a combination of the individual bit flags RTLD_LAZY, /// RTLD_NOW, RTLD_GLOBAL, and/or RTLD_LOCAL. /// </param> /// <returns> /// The native module handle upon success -OR- IntPtr.Zero on failure. /// </returns> | | | 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 | /// <param name="mode"> /// This must be a combination of the individual bit flags RTLD_LAZY, /// RTLD_NOW, RTLD_GLOBAL, and/or RTLD_LOCAL. /// </param> /// <returns> /// The native module handle upon success -OR- IntPtr.Zero on failure. /// </returns> #if NET_STANDARD_20 || NET_STANDARD_21 [DllImport("libdl", #else [DllImport("__Internal", #endif EntryPoint = "dlopen", CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Ansi, BestFitMapping = false, ThrowOnUnmappableChar = true, |
︙ | ︙ | |||
1206 1207 1208 1209 1210 1211 1212 | /// </summary> /// <param name="module"> /// The handle to the loaded native library. /// </param> /// <returns> /// Zero upon success -OR- non-zero on failure. /// </returns> | | | 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 | /// </summary> /// <param name="module"> /// The handle to the loaded native library. /// </param> /// <returns> /// Zero upon success -OR- non-zero on failure. /// </returns> #if NET_STANDARD_20 || NET_STANDARD_21 [DllImport("libdl", #else [DllImport("__Internal", #endif EntryPoint = "dlclose", CallingConvention = CallingConvention.Cdecl, SetLastError = true)] internal static extern int dlclose(IntPtr module); |
︙ | ︙ | |||
2059 2060 2061 2062 2063 2064 2065 | /// </returns> private static string GetAssemblyTargetFramework( Assembly assembly ) { if (assembly != null) { | | | 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 | /// </returns> private static string GetAssemblyTargetFramework( Assembly assembly ) { if (assembly != null) { #if NET_40 || NET_45 || NET_451 || NET_452 || NET_46 || NET_461 || NET_462 || NET_47 || NET_471 || NET_472 || NET_STANDARD_20 || NET_STANDARD_21 try { if (assembly.IsDefined( typeof(TargetFrameworkAttribute), false)) { TargetFrameworkAttribute targetFramework = (TargetFrameworkAttribute) |
︙ | ︙ |
Added Targets/SQLite.NET.NetStandard21.Settings.targets.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 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 | <!-- * * SQLite.NET.NetStandard21.Settings.targets - * * Written by Joe Mistachkin. * Released to the public domain, use at your own risk! * --> <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <!-- ****************************************************************************** ** .NET Standard 2.1 Specific Settings (Common) ** ****************************************************************************** --> <PropertyGroup> <!-- TODO: This list of properties must be kept synchronized with the common list in the "build_net_standard_21.bat" file. --> <ConfigurationSuffix Condition="'$(ConfigurationSuffix)' == ''">NetStandard21</ConfigurationSuffix> <InteropCodec Condition="'$(InteropCodec)' == ''">false</InteropCodec> <InteropLog Condition="'$(InteropLog)' == ''">false</InteropLog> </PropertyGroup> <!-- ****************************************************************************** ** .NET Standard 2.1 Specific Settings (Debug) ** ****************************************************************************** --> <PropertyGroup Condition="'$(Configuration)' == 'Debug'"> <!-- TODO: This list of properties must be kept synchronized with the debug list in the "build_net_standard_21.bat" file. --> <CheckState Condition="'$(CheckState)' == ''">true</CheckState> <CountHandle Condition="'$(CountHandle)' == ''">true</CountHandle> <TraceConnection Condition="'$(TraceConnection)' == ''">true</TraceConnection> <TraceDetection Condition="'$(TraceDetection)' == ''">true</TraceDetection> <TraceHandle Condition="'$(TraceHandle)' == ''">true</TraceHandle> <TraceStatement Condition="'$(TraceStatement)' == ''">true</TraceStatement> <TrackMemoryBytes Condition="'$(TrackMemoryBytes)' == ''">true</TrackMemoryBytes> </PropertyGroup> </Project> |
Changes to Targets/SQLite.NET.Platform.Settings.targets.
︙ | ︙ | |||
16 17 18 19 20 21 22 | <Import Project="$(SQLiteNetDir)\Targets\SQLite.NET.Mono.Settings.targets" Condition="Exists('$(SQLiteNetDir)\Targets\SQLite.NET.Mono.Settings.targets') And (('$(MonoBuild)' != '' And '$(MonoBuild)' != 'false') Or Exists('$(MSBuildBinPath)\xbuild.exe'))" /> <Import Project="$(SQLiteNetDir)\Targets\SQLite.NET.NetStandard20.Settings.targets" Condition="Exists('$(SQLiteNetDir)\Targets\SQLite.NET.NetStandard20.Settings.targets') And | | | | | > > > > > > > | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | <Import Project="$(SQLiteNetDir)\Targets\SQLite.NET.Mono.Settings.targets" Condition="Exists('$(SQLiteNetDir)\Targets\SQLite.NET.Mono.Settings.targets') And (('$(MonoBuild)' != '' And '$(MonoBuild)' != 'false') Or Exists('$(MSBuildBinPath)\xbuild.exe'))" /> <Import Project="$(SQLiteNetDir)\Targets\SQLite.NET.NetStandard20.Settings.targets" Condition="Exists('$(SQLiteNetDir)\Targets\SQLite.NET.NetStandard20.Settings.targets') And ((('$(DotNetCoreBuild)' != '' And '$(DotNetCoreBuild)' != 'false') Or Exists('$(MSBuildBinPath)\MSBuild.dll')) And ('$(TargetFramework)' == 'netstandard2.0' Or '$(TargetFramework)' == 'netcoreapp2.0'))" /> <Import Project="$(SQLiteNetDir)\Targets\SQLite.NET.NetStandard21.Settings.targets" Condition="Exists('$(SQLiteNetDir)\Targets\SQLite.NET.NetStandard21.Settings.targets') And ((('$(DotNetCoreBuild)' != '' And '$(DotNetCoreBuild)' != 'false') Or Exists('$(MSBuildBinPath)\MSBuild.dll')) And ('$(TargetFramework)' == 'netstandard2.1' Or '$(TargetFramework)' == 'netcoreapp2.1'))" /> </Project> |
Changes to Targets/SQLite.NET.Settings.targets.
︙ | ︙ | |||
440 441 442 443 444 445 446 | <!-- NOTE: Is the project being built to support the .NET Compact Framework? --> <IsCompactFramework Condition="'$(IsCompactFramework)' == ''">false</IsCompactFramework> <!-- | | | 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 | <!-- NOTE: Is the project being built to support the .NET Compact Framework? --> <IsCompactFramework Condition="'$(IsCompactFramework)' == ''">false</IsCompactFramework> <!-- NOTE: Is the project being built to support .NET Standard 2.0 / 2.1? --> <IsDotNetStandard Condition="'$(IsDotNetStandard)' == ''">false</IsDotNetStandard> <!-- NOTE: Emit an AssemblyFlags attribute that includes the Retargetable flag from the AssemblyNameFlags enumeration? --> |
︙ | ︙ |
Changes to lib/System.Data.SQLite/common.eagle.
︙ | ︙ | |||
200 201 202 203 204 205 206 | # NOTE: Use the specified list of test years. # return $::test_years } elseif {[isDotNetCore]} then { # # NOTE: Running on .NET Core, prioritize its list of test years. # | | > | | 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 | # NOTE: Use the specified list of test years. # return $::test_years } elseif {[isDotNetCore]} then { # # NOTE: Running on .NET Core, prioritize its list of test years. # return [list NetStandard20 NetStandard21] } else { # # NOTE: Use the default list of test years (i.e. all). # return [list \ 2005 2008 2010 2012 2013 2015 2017 NetStandard20 NetStandard21] } } # # NOTE: This procedure is only used when adding shimmed test constraints. # proc getBuildClrVersion {} { |
︙ | ︙ | |||
313 314 315 316 317 318 319 320 321 322 323 324 325 326 | } 2017 { return netFx47; # TODO: Or "netFx471" / "netFx472"? } NetStandard20 { return netStandard20 } default { return netFx35; # TODO: Good "fallback" default? } } } } } | > > > | 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 | } 2017 { return netFx47; # TODO: Or "netFx471" / "netFx472"? } NetStandard20 { return netStandard20 } NetStandard21 { return netStandard21 } default { return netFx35; # TODO: Good "fallback" default? } } } } } |
︙ | ︙ | |||
511 512 513 514 515 516 517 | # return $::test_configuration_suffixes } elseif {[isDotNetCore]} then { # # NOTE: Running on .NET Core, prioritize its test configuration # suffixes for library files. # | | | 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 | # return $::test_configuration_suffixes } elseif {[isDotNetCore]} then { # # NOTE: Running on .NET Core, prioritize its test configuration # suffixes for library files. # return [list NetStandard20 NetStandard21 ""] } else { # # NOTE: Use the default list of test configurations suffixes. # return [list ""] } } |
︙ | ︙ | |||
4729 4730 4731 4732 4733 4734 4735 | } else { addConstraint buildConfiguration.none tputs $channel <none>\n } # # NOTE: Check the current build configuration suffix. This will | | > | 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 | } else { addConstraint buildConfiguration.none tputs $channel <none>\n } # # NOTE: Check the current build configuration suffix. This will # normally be either "NetStandard20" or "NetStandard21" or # an empty string. # tputs $channel \ "---- checking for System.Data.SQLite build configuration suffix... " set suffix [getBuildConfigurationSuffix] if {[string length $suffix] > 0} then { |
︙ | ︙ | |||
4843 4844 4845 4846 4847 4848 4849 | # these files may be native and/or managed assemblies that are # required to perform various tests. # set externalFileNames [list \ [file join EntityFramework lib [string map [list Fx ""] \ [string map [list netFx451 netFx45 netFx452 netFx45 netFx46 \ netFx45 netFx461 netFx45 netFx462 netFx45 netFx47 netFx45 \ | | | | 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 | # these files may be native and/or managed assemblies that are # required to perform various tests. # set externalFileNames [list \ [file join EntityFramework lib [string map [list Fx ""] \ [string map [list netFx451 netFx45 netFx452 netFx45 netFx46 \ netFx45 netFx461 netFx45 netFx462 netFx45 netFx47 netFx45 \ netFx471 netFx45 netFx472 netFx45 netStandard20 netFx45 \ netStandard21 netFx45] [getBuildNetFx]]] EntityFramework.dll]] # # NOTE: Build the list of native assembly files that we handle. # set nativeFileNames [list] eval lappend nativeFileNames [getNativeLibraryFileNamesOnly] |
︙ | ︙ | |||
5498 5499 5500 5501 5502 5503 5504 | INTEROP_INCLUDE_ZIPVFS INTEROP_JSON1_EXTENSION \ INTEROP_LEGACY_CLOSE INTEROP_LOG INTEROP_PERCENTILE_EXTENSION \ INTEROP_REGEXP_EXTENSION INTEROP_SESSION_EXTENSION \ INTEROP_SHA1_EXTENSION INTEROP_TEST_EXTENSION \ INTEROP_TOTYPE_EXTENSION INTEROP_VIRTUAL_TABLE \ NET_20 NET_35 NET_40 NET_45 NET_451 NET_452 NET_46 NET_461 \ NET_462 NET_47 NET_471 NET_472 NET_COMPACT_20 NET_STANDARD_20 \ | | | | | | 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 | INTEROP_INCLUDE_ZIPVFS INTEROP_JSON1_EXTENSION \ INTEROP_LEGACY_CLOSE INTEROP_LOG INTEROP_PERCENTILE_EXTENSION \ INTEROP_REGEXP_EXTENSION INTEROP_SESSION_EXTENSION \ INTEROP_SHA1_EXTENSION INTEROP_TEST_EXTENSION \ INTEROP_TOTYPE_EXTENSION INTEROP_VIRTUAL_TABLE \ NET_20 NET_35 NET_40 NET_45 NET_451 NET_452 NET_46 NET_461 \ NET_462 NET_47 NET_471 NET_472 NET_COMPACT_20 NET_STANDARD_20 \ NET_STANDARD_21 PLATFORM_COMPACTFRAMEWORK PRELOAD_NATIVE_LIBRARY \ RETARGETABLE SQLITE_STANDARD THROW_ON_DISPOSED \ TRACE TRACE_CONNECTION TRACE_DETECTION TRACE_HANDLE TRACE_PRELOAD \ TRACE_SHARED TRACE_STATEMENT TRACE_WARNING TRACK_MEMORY_BYTES \ USE_ENTITY_FRAMEWORK_6 USE_INTEROP_DLL USE_PREPARE_V2 WINDOWS] { # # NOTE: Check if the compile-time option is listed in the list of # "define constants" kept track of by the managed assembly. # checkForSQLiteDefineConstant $::test_channel $defineConstant } |
︙ | ︙ |
Changes to www/release.wiki.
︙ | ︙ | |||
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 | </li> <li> Make sure everything succeeds with no errors; the console output may be checked if any errors should occur. </li> </ol> <a name="testNetStandard20Binaries"></a> <h2>Test .NET Standard 2.0 Binaries</h2> <ol> <li>Open a normal command prompt window with "cmd.exe".</li> <li>Change the current directory to "<root>\Setup".</li> <li> Enter the following commands to test all the binaries available for .NET Standard 2.0: <br /> <br /> <b>SET TEST_DEBUG=1</b> <br /> <b>test_net_standard_20.bat</b> </li> <li> Make sure everything succeeds with no errors; the console output may be checked if any errors should occur. </li> </ol> <a name="updateDocumentation"></a> | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 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 | </li> <li> Make sure everything succeeds with no errors; the console output may be checked if any errors should occur. </li> </ol> <a name="buildNetStandard21Binaries"></a> <h2>Build .NET Standard 2.1 Binaries</h2> <ol> <li>Open a normal command prompt window with "cmd.exe".</li> <li>Change the current directory to "<root>\Setup".</li> <li> Enter the following commands to build all the binaries available for .NET Standard 2.1: <br /> <br /> <b>SET BUILD_FULL=</b> <br /> <b>SET BUILD_DEBUG=1</b> <br /> <b>build_net_standard_21.bat</b> </li> <li> Make sure everything succeeds with no errors; the console output may be checked if any errors should occur. </li> </ol> <a name="testNetStandard20Binaries"></a> <h2>Test .NET Standard 2.0 Binaries</h2> <ol> <li>Open a normal command prompt window with "cmd.exe".</li> <li>Change the current directory to "<root>\Setup".</li> <li> Enter the following commands to test all the binaries available for .NET Standard 2.0: <br /> <br /> <b>SET TEST_DEBUG=1</b> <br /> <b>test_net_standard_20.bat</b> </li> <li> Make sure everything succeeds with no errors; the console output may be checked if any errors should occur. </li> </ol> <a name="testNetStandard21Binaries"></a> <h2>Test .NET Standard 2.1 Binaries</h2> <ol> <li>Open a normal command prompt window with "cmd.exe".</li> <li>Change the current directory to "<root>\Setup".</li> <li> Enter the following commands to test all the binaries available for .NET Standard 2.1: <br /> <br /> <b>SET TEST_DEBUG=1</b> <br /> <b>test_net_standard_21.bat</b> </li> <li> Make sure everything succeeds with no errors; the console output may be checked if any errors should occur. </li> </ol> <a name="updateDocumentation"></a> |
︙ | ︙ | |||
499 500 501 502 503 504 505 506 507 508 509 510 511 512 | <br /> <br /> <b>SET RELEASE_DEBUG=1</b> <br /> <b>release_net_standard_20.bat</b> </li> <li> Make sure everything succeeds with no errors; the console output may be checked if any errors should occur. </li> </ol> <a name="buildSourcePackages"></a> | > > > > > > > > > > > > > > > > > > > > > > > | 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 | <br /> <br /> <b>SET RELEASE_DEBUG=1</b> <br /> <b>release_net_standard_20.bat</b> </li> <li> Make sure everything succeeds with no errors; the console output may be checked if any errors should occur. </li> </ol> <a name="buildNetStandard21BinaryPackages"></a> <h2>Build .NET Standard 2.1 Release Packages</h2> <ol> <li>Open a normal command prompt window with "cmd.exe".</li> <li>Change the current directory to "<root>\Setup".</li> <li> Enter the following commands to build all the Mono release packages: <br /> <br /> <b>SET RELEASE_DEBUG=1</b> <br /> <b>release_net_standard_21.bat</b> </li> <li> Make sure everything succeeds with no errors; the console output may be checked if any errors should occur. </li> </ol> <a name="buildSourcePackages"></a> |
︙ | ︙ |