System.Data.SQLite

Check-in [1ed84c66c8]
Login

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

Overview
Comment:Add the correct directory to the path. Fix for [50515a0c8e].
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 1ed84c66c87c624290a6616975dbecc06098c13d
User & Date: shaneh 2011-05-02 02:16:15.449
References
2011-05-02
02:17 Fixed ticket [50515a0c8e]: Wrong directory is added to the system path (v. 1.0.71) plus 4 other changes artifact: ba08daa579 user: shane
Context
2011-05-02
02:59
Remove the need to set the version for the Inno setup packages. check-in: 315f26a68d user: shaneh tags: trunk
02:16
Add the correct directory to the path. Fix for [50515a0c8e]. check-in: 1ed84c66c8 user: shaneh tags: trunk
2011-04-27
22:09
Update downloads and news pages for v1.0.71.0 (3.7.6+). check-in: b1306568f3 user: shaneh tags: trunk, release
Changes
Unified Diff Ignore Whitespace Patch
Changes to Setup/SQLite.iss.
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#include "InitializeSetup.pas"
const
	ModPathName = 'gac\modifypath';
	ModPathType = 'system';
function ModPathDir(): TArrayOfString;
begin
	setArrayLength(Result, 1)
	Result[0] := ExpandConstant('{app}');
end;
#include "modpath.iss"

[Components]
Name: Application; Description: System.Data.SQLite components.; Types: custom compact full
Name: Application\Core; Description: Core components.; Types: custom compact full
Name: Application\Core\MSIL; Description: Core managed components.; Types: custom compact full







|







37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#include "InitializeSetup.pas"
const
	ModPathName = 'gac\modifypath';
	ModPathType = 'system';
function ModPathDir(): TArrayOfString;
begin
	setArrayLength(Result, 1)
	Result[0] := ExpandConstant('{app}\bin');
end;
#include "modpath.iss"

[Components]
Name: Application; Description: System.Data.SQLite components.; Types: custom compact full
Name: Application\Core; Description: Core components.; Types: custom compact full
Name: Application\Core\MSIL; Description: Core managed components.; Types: custom compact full