Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: |
Downloads: |
Tarball
| ZIP archive
|
---|
Timelines: |
family
| ancestors
| descendants
| both
| netStandard20
|
Files: |
files
| file ages
| folders
|
SHA1: |
d2a2b5d8f41e08918655b98bf3d8e83578863ba7 |
User & Date: |
mistachkin
2018-04-23 02:35:00.916 |
Context
2018-04-25
| | |
18:20 |
|
check-in: f72560a85a user: mistachkin tags: netStandard20
|
2018-04-23
| | |
02:35 |
|
check-in: d2a2b5d8f4 user: mistachkin tags: netStandard20
|
02:28 |
|
check-in: 23f04e9da0 user: mistachkin tags: netStandard20
|
| | |
Changes
Changes to lib/System.Data.SQLite/common.eagle.
︙ | | |
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
|
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
|
-
-
+
+
+
-
-
+
+
+
-
-
+
+
+
-
-
-
+
+
+
+
-
-
-
+
+
+
+
-
-
-
+
+
+
+
-
-
-
+
+
+
+
|
}
}
}
foreach fileNameOnly $nativeFileNames {
catch {
tputs $::test_channel [appendArgs \
"---- file version of \"" $fileNameOnly "\"... \"" \
[file version [getBinaryFileName $fileNameOnly]] \"\n]
"---- file version of \"" native/ $fileNameOnly \
"\"... \"" [file version [getBinaryFileName \
$fileNameOnly]] \"\n]
}
}
foreach fileNameOnly $mixedFileNames {
catch {
tputs $::test_channel [appendArgs \
"---- file version of \"" $fileNameOnly "\"... \"" \
[file version [getBinaryFileName $fileNameOnly]] \"\n]
"---- file version of \"" mixed/ $fileNameOnly \
"\"... \"" [file version [getBinaryFileName \
$fileNameOnly]] \"\n]
}
}
foreach fileNameOnly $managedFileNames {
catch {
tputs $::test_channel [appendArgs \
"---- file version of \"" $fileNameOnly "\"... \"" \
[file version [getBinaryFileName $fileNameOnly]] \"\n]
"---- file version of \"" managed/ $fileNameOnly \
"\"... \"" [file version [getBinaryFileName \
$fileNameOnly]] \"\n]
}
}
if {[string length $platform] > 0} then {
foreach fileNameOnly $nativeFileNames {
catch {
tputs $::test_channel [appendArgs \
"---- file version of \"" $platform \
/ $fileNameOnly "\"... \"" [file version \
[getBinaryFileName $fileNameOnly $platform]] \"\n]
"---- file version of \"" native/platform/ \
$platform / $fileNameOnly "\"... \"" [file \
version [getBinaryFileName $fileNameOnly \
$platform]] \"\n]
}
}
foreach fileNameOnly $mixedFileNames {
catch {
tputs $::test_channel [appendArgs \
"---- file version of \"" $platform \
/ $fileNameOnly "\"... \"" [file version \
[getBinaryFileName $fileNameOnly $platform]] \"\n]
"---- file version of \"" mixed/platform/ \
$platform / $fileNameOnly "\"... \"" [file \
version [getBinaryFileName $fileNameOnly \
$platform]] \"\n]
}
}
}
if {[string length $architecture] > 0} then {
foreach fileNameOnly $nativeFileNames {
catch {
tputs $::test_channel [appendArgs \
"---- file version of \"" $architecture \
/ $fileNameOnly "\"... \"" [file version \
[getBinaryFileName $fileNameOnly $architecture]] \"\n]
"---- file version of \"" native/architecture/ \
$architecture / $fileNameOnly "\"... \"" [file \
version [getBinaryFileName $fileNameOnly \
$architecture]] \"\n]
}
}
foreach fileNameOnly $mixedFileNames {
catch {
tputs $::test_channel [appendArgs \
"---- file version of \"" $architecture \
/ $fileNameOnly "\"... \"" [file version \
[getBinaryFileName $fileNameOnly $architecture]] \"\n]
"---- file version of \"" mixed/architecture/ \
$architecture / $fileNameOnly "\"... \"" [file \
version [getBinaryFileName $fileNameOnly \
$architecture]] \"\n]
}
}
}
#
# NOTE: Grab the list of managed assemblies for the current process
# and report on the System.Data.SQLite related ones.
|
︙ | | |