Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | 1.0.21 RTM |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | sourceforge |
Files: | files | file ages | folders |
SHA1: |
28597a833b56c2501b798150825c073e |
User & Date: | rmsimpson 2005-11-03 20:32:33.000 |
Context
2005-11-03
| ||
20:38 | 1.0.21 RTM check-in: c5b1eab3b4 user: rmsimpson tags: sourceforge | |
20:32 | 1.0.21 RTM check-in: 28597a833b user: rmsimpson tags: sourceforge | |
20:31 | Uses XMLDOM for cleaner install check-in: f4336dee18 user: rmsimpson tags: sourceforge | |
Changes
Changes to SQLite.Designer/AssemblyInfo.cs.
︙ | ︙ | |||
28 29 30 31 32 33 34 | // Major Version // Minor Version // Build Number // Revision // // You can specify all the values or you can default the Revision and Build Numbers // by using the '*' as shown below: | | | | 28 29 30 31 32 33 34 35 36 37 38 39 | // Major Version // Minor Version // Build Number // Revision // // You can specify all the values or you can default the Revision and Build Numbers // by using the '*' as shown below: [assembly: AssemblyVersion("1.0.21.0")] [assembly: AssemblyFileVersion("1.0.21.0")] [assembly:AssemblyDelaySignAttribute(false)] [assembly:AssemblyKeyFileAttribute("..\\System.Data.SQLite\\System.Data.SQLite.snk")] [assembly:AssemblyKeyNameAttribute("")] |
Changes to SQLite.Designer/SQLite.Designer.csproj.
1 2 3 4 | <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | | | 1 2 3 4 5 6 7 8 9 10 11 12 | <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <ProductVersion>8.0.50727</ProductVersion> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{9B4A5CF6-5BE5-4926-ACC7-B729A8C05198}</ProjectGuid> <OutputType>Library</OutputType> <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>SQLite.Designer</RootNamespace> <AssemblyName>SQLite.Designer</AssemblyName> <SignAssembly>false</SignAssembly> |
︙ | ︙ | |||
33 34 35 36 37 38 39 40 | <WarningLevel>4</WarningLevel> <NoWarn>1701;1702;1699</NoWarn> </PropertyGroup> <ItemGroup> <Reference Include="Microsoft.VisualStudio.Data, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> <HintPath>..\..\..\VSNET2005\Common7\IDE\Microsoft.VisualStudio.Data.dll</HintPath> </Reference> | > | > > | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | <WarningLevel>4</WarningLevel> <NoWarn>1701;1702;1699</NoWarn> </PropertyGroup> <ItemGroup> <Reference Include="Microsoft.VisualStudio.Data, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> <HintPath>..\..\..\VSNET2005\Common7\IDE\Microsoft.VisualStudio.Data.dll</HintPath> <Private>False</Private> </Reference> <Reference Include="Microsoft.VisualStudio.OLE.Interop, Version=7.1.40304.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> <SpecificVersion>False</SpecificVersion> </Reference> <Reference Include="System" /> <Reference Include="System.Data" /> <Reference Include="System.Xml" /> </ItemGroup> <ItemGroup> <Compile Include="SQLiteDataObjectIdentifierResolver.cs" /> <Compile Include="SQLiteDataSourceInformation.cs" /> |
︙ | ︙ |
Changes to SQLite.Designer/SQLiteDataSourceInformation.cs.
︙ | ︙ | |||
25 26 27 28 29 30 31 | } private void Initialize() { AddProperty(DefaultSchema); AddProperty(DefaultCatalog, "main"); AddProperty(SupportsAnsi92Sql, true); | | | 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | } private void Initialize() { AddProperty(DefaultSchema); AddProperty(DefaultCatalog, "main"); AddProperty(SupportsAnsi92Sql, true); AddProperty(SupportsQuotedIdentifierParts, true); AddProperty(IdentifierOpenQuote, "["); AddProperty(IdentifierCloseQuote, "]"); AddProperty(CatalogSeparator, "."); AddProperty(CatalogSupported, true); AddProperty(CatalogSupportedInDml, true); AddProperty(SchemaSupported, false); AddProperty(SchemaSupportedInDml, false); |
︙ | ︙ |
Changes to SQLite.Interop/SQLite.Interop.rc.
︙ | ︙ | |||
49 50 51 52 53 54 55 | ///////////////////////////////////////////////////////////////////////////// // // Version // VS_VERSION_INFO VERSIONINFO | | | | 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | ///////////////////////////////////////////////////////////////////////////// // // Version // VS_VERSION_INFO VERSIONINFO FILEVERSION 1,0,21,0 PRODUCTVERSION 1,0,0,0 FILEFLAGSMASK 0x17L #ifdef _DEBUG FILEFLAGS 0x1L #else FILEFLAGS 0x0L #endif FILEOS 0x4L FILETYPE 0x2L FILESUBTYPE 0x0L BEGIN BLOCK "StringFileInfo" BEGIN BLOCK "040904b0" BEGIN VALUE "Comments", "http://sourceforge.net/projects/sqlite-dotnet2" VALUE "FileDescription", "SQLite.NET Interop Library" VALUE "FileVersion", "1.0.21" VALUE "InternalName", "SQLite.Interop.DLL" VALUE "LegalCopyright", "Released to the public domain" VALUE "OriginalFilename", "SQLite3.DLL 3.2.7" VALUE "ProductName", "SQLite.NET" VALUE "ProductVersion", "1.0" END END |
︙ | ︙ |
Changes to SQLite.Interop/SQLite.Interop.vcproj.
︙ | ︙ | |||
67 68 69 70 71 72 73 | Name="VCResourceCompilerTool" /> <Tool Name="VCPreLinkEventTool" /> <Tool Name="VCLinkerTool" | < | | 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | Name="VCResourceCompilerTool" /> <Tool Name="VCPreLinkEventTool" /> <Tool Name="VCLinkerTool" AdditionalDependencies="SQLite.netmodule $(NOINHERIT)" OutputFile="$(SolutionDir)bin/System.Data.SQLite.DLL" ModuleDefinitionFile="src\sqlite3.def" GenerateDebugInformation="true" ImportLibrary="$(TargetDir)$(TargetName).lib" TargetMachine="1" KeyFile="..\System.Data.SQLite\System.Data.SQLite.snk" /> |
︙ | ︙ |