System.Data.SQLite

Check-in [3a6bab736c]
Login

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

Overview
Comment:Add Setup/set_netFx40.bat to pre-configure the environment for building VS 2010 binary and setup packages.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 3a6bab736c5696bbce317edc2ab478b4c39cd1a7
User & Date: mistachkin 2012-01-25 06:46:25.179
Context
2012-01-25
08:59
Remove superfluous reference assemblies (i.e. and use the corresponding SDK ones instead). check-in: 00d9698e72 user: mistachkin tags: trunk
06:46
Add Setup/set_netFx40.bat to pre-configure the environment for building VS 2010 binary and setup packages. check-in: 3a6bab736c user: mistachkin tags: trunk
06:44
Rename Setup/set_default.bat to Setup/set_netFx20.bat. check-in: 81d1f0553d user: mistachkin tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Added Setup/set_netFx40.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_netFx40.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=2010_SP1
)

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=2010
)

IF NOT DEFINED FRAMEWORK (
  SET FRAMEWORK=netFx40
)

:end_of_file