Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix issue with the VERSIONINFO resource where the DEBUG flag was not being set correctly. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
ddd4705c6735dfcd0be55443979f13f6 |
User & Date: | mistachkin 2011-02-26 12:37:00.131 |
Context
2011-02-26
| ||
13:51 | Preparation for the native-only interop targets (i.e. SQLite.Interop.dll). Avoid having the project name being used to help name any of the output files. check-in: 1688fbec2c user: mistachkin tags: trunk | |
12:37 | Fix issue with the VERSIONINFO resource where the DEBUG flag was not being set correctly. check-in: ddd4705c67 user: mistachkin tags: trunk | |
12:16 | Add the interop project to the VS 2010 specific solution. check-in: 66d8e45055 user: mistachkin tags: trunk | |
Changes
Changes to SQLite.Interop/SQLite.Interop.2008.vcproj.
︙ | ︙ | |||
63 64 65 66 67 68 69 | DisableSpecificWarnings="$(SQLITE_DISABLE_WARNINGS)" /> <Tool Name="VCManagedResourceCompilerTool" /> <Tool Name="VCResourceCompilerTool" | | | 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | DisableSpecificWarnings="$(SQLITE_DISABLE_WARNINGS)" /> <Tool Name="VCManagedResourceCompilerTool" /> <Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="_DEBUG;_UNICODE;UNICODE;"INTEROP_RC_VERSION=$(INTEROP_RC_VERSION)"" /> <Tool Name="VCPreLinkEventTool" /> <Tool Name="VCLinkerTool" AdditionalOptions="$(INTEROP_ASSEMBLY_RESOURCES)" |
︙ | ︙ | |||
159 160 161 162 163 164 165 | DisableSpecificWarnings="$(SQLITE_DISABLE_WARNINGS)" /> <Tool Name="VCManagedResourceCompilerTool" /> <Tool Name="VCResourceCompilerTool" | | | 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 | DisableSpecificWarnings="$(SQLITE_DISABLE_WARNINGS)" /> <Tool Name="VCManagedResourceCompilerTool" /> <Tool Name="VCResourceCompilerTool" PreprocessorDefinitions="NDEBUG;_UNICODE;UNICODE;"INTEROP_RC_VERSION=$(INTEROP_RC_VERSION)"" /> <Tool Name="VCPreLinkEventTool" /> <Tool Name="VCLinkerTool" AdditionalOptions="$(INTEROP_ASSEMBLY_RESOURCES)" |
︙ | ︙ |
Changes to SQLite.Interop/SQLite.Interop.2010.vcxproj.
︙ | ︙ | |||
54 55 56 57 58 59 60 | <BrowseInformation>true</BrowseInformation> <WarningLevel>Level4</WarningLevel> <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> <CompileAs>Default</CompileAs> <DisableSpecificWarnings>$(SQLITE_DISABLE_WARNINGS);%(DisableSpecificWarnings)</DisableSpecificWarnings> </ClCompile> <ResourceCompile> | | | 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | <BrowseInformation>true</BrowseInformation> <WarningLevel>Level4</WarningLevel> <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> <CompileAs>Default</CompileAs> <DisableSpecificWarnings>$(SQLITE_DISABLE_WARNINGS);%(DisableSpecificWarnings)</DisableSpecificWarnings> </ClCompile> <ResourceCompile> <PreprocessorDefinitions>_DEBUG;_UNICODE;UNICODE;INTEROP_RC_VERSION=$(INTEROP_RC_VERSION);%(PreprocessorDefinitions)</PreprocessorDefinitions> </ResourceCompile> <Link> <AdditionalOptions>$(INTEROP_ASSEMBLY_RESOURCES) %(AdditionalOptions)</AdditionalOptions> <AdditionalDependencies>$(ProjectDir)..\bin\$(Configuration)Module\bin\System.Data.SQLite.netmodule;%(AdditionalDependencies)</AdditionalDependencies> <Version>$(INTEROP_MANIFEST_VERSION)</Version> <ModuleDefinitionFile>src\core\sqlite3.def</ModuleDefinitionFile> <GenerateDebugInformation>true</GenerateDebugInformation> |
︙ | ︙ | |||
100 101 102 103 104 105 106 | <BrowseInformation>true</BrowseInformation> <WarningLevel>Level4</WarningLevel> <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> <CompileAs>Default</CompileAs> <DisableSpecificWarnings>$(SQLITE_DISABLE_WARNINGS);%(DisableSpecificWarnings)</DisableSpecificWarnings> </ClCompile> <ResourceCompile> | | | 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 | <BrowseInformation>true</BrowseInformation> <WarningLevel>Level4</WarningLevel> <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> <CompileAs>Default</CompileAs> <DisableSpecificWarnings>$(SQLITE_DISABLE_WARNINGS);%(DisableSpecificWarnings)</DisableSpecificWarnings> </ClCompile> <ResourceCompile> <PreprocessorDefinitions>NDEBUG;_UNICODE;UNICODE;INTEROP_RC_VERSION=$(INTEROP_RC_VERSION);%(PreprocessorDefinitions)</PreprocessorDefinitions> </ResourceCompile> <Link> <AdditionalOptions>$(INTEROP_ASSEMBLY_RESOURCES) %(AdditionalOptions)</AdditionalOptions> <AdditionalDependencies>$(ProjectDir)..\bin\$(Configuration)Module\bin\System.Data.SQLite.netmodule;%(AdditionalDependencies)</AdditionalDependencies> <Version>$(INTEROP_MANIFEST_VERSION)</Version> <ModuleDefinitionFile>src\core\sqlite3.def</ModuleDefinitionFile> <GenerateDebugInformation>true</GenerateDebugInformation> |
︙ | ︙ |