System.Data.SQLite

Check-in [def4e34cfb]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Add shell scripts to build .NET Core binaries on POSIX.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | netStandard20
Files: files | file ages | folders
SHA1: def4e34cfb063db128e83b0278094cd367b425d1
User & Date: mistachkin 2018-04-07 17:22:33.188
Context
2018-04-07
17:23
Update master release archive manifest again. check-in: 01e39a76a6 user: mistachkin tags: netStandard20
17:22
Add shell scripts to build .NET Core binaries on POSIX. check-in: def4e34cfb user: mistachkin tags: netStandard20
17:10
Update master release archive manifest. check-in: bfd5fa15ea user: mistachkin tags: netStandard20
Changes
Unified Diff Show Whitespace Changes Patch
Added Setup/build-netstandard20-tests-debug.sh.
















>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
#!/bin/bash

scriptdir=`dirname "$BASH_SOURCE"`
pushd "$scriptdir/.."

dotnet build SQLite.NET.NetStandard20.MSBuild.sln /property:Configuration=Debug /property:ConfigurationSuffix=NetStandard20 /property:InteropCodec=false /property:InteropLog=false /property:CheckState=true /property:CountHandle=true /property:TraceConnection=true /property:TraceDetection=true /property:TraceHandle=true /property:TraceStatement=true /property:TrackMemoryBytes=true "$@"

popd
Added Setup/build-netstandard20-tests-release.sh.
















>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
#!/bin/bash

scriptdir=`dirname "$BASH_SOURCE"`
pushd "$scriptdir/.."

dotnet build SQLite.NET.NetStandard20.MSBuild.sln /property:Configuration=Release /property:ConfigurationSuffix=NetStandard20 /property:InteropCodec=false /property:InteropLog=false "$@"

popd