System.Data.SQLite

Check-in [311fc5a801]
Login

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

Overview
Comment:Project loading fix. Allow the SQLite.Interop projects for VS 2005/2008 to load without the INTEROP_EXTRA_PROPS_FILE environment variable being set.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 311fc5a801322eb39cb45c16324e13aefde6f1b1
User & Date: mistachkin 2013-07-25 23:51:42.235
Context
2013-08-05
21:52
Fix an issue that can occur during the disposal of a managed virtual table object instance. check-in: 574f754156 user: mistachkin tags: trunk
2013-07-25
23:51
Project loading fix. Allow the SQLite.Interop projects for VS 2005/2008 to load without the INTEROP_EXTRA_PROPS_FILE environment variable being set. check-in: 311fc5a801 user: mistachkin tags: trunk
20:37
Add an empty (placeholder) Visual Studio 2005/2008 compatible properties file. check-in: 1d3dd7ea19 user: mistachkin tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to SQLite.Interop/props/include.vsprops.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
















16
<?xml version="1.0" encoding="Windows-1252"?>
<!--
 *
 * include.vsprops -
 *
 * Written by Joe Mistachkin.
 * Released to the public domain, use at your own risk!
 *
-->
<VisualStudioPropertySheet
	ProjectType="Visual C++"
	Version="8.00"
	Name="include"
	InheritedPropertySheets="$(INTEROP_EXTRA_PROPS_FILE)"
	>
















</VisualStudioPropertySheet>













|

>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>

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
<?xml version="1.0" encoding="Windows-1252"?>
<!--
 *
 * include.vsprops -
 *
 * Written by Joe Mistachkin.
 * Released to the public domain, use at your own risk!
 *
-->
<VisualStudioPropertySheet
	ProjectType="Visual C++"
	Version="8.00"
	Name="include"
	InheritedPropertySheets=""
	>
  <!--
      NOTE: The value of the "InheritedPropertySheets" attribute (above)
            should actually be "$(INTEROP_EXTRA_PROPS_FILE)".

            Unfortunately, due to how Visual Studio 2005/2008 parses the
            "InheritedPropertySheets" attribute value, it cannot be set to
            "$(INTEROP_EXTRA_PROPS_FILE)" when the referenced macro should
            expand to an empty string.

            If a custom Visual Studio properties file is needed, the value
            of the "InheritedPropertySheets" attribute (above) should be
            manually changed to "$(INTEROP_EXTRA_PROPS_FILE)".  In addition,
            the "INTEROP_EXTRA_PROPS_FILE" environment variable should be set
            to the fully qualified file name of the Visual Studio properties
            file to include.
  -->
</VisualStudioPropertySheet>