Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update various assembly information settings. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
606af726e9d9752515e13ee95fddb5a5 |
User & Date: | shaneh 2011-05-24 01:20:39.405 |
Context
2011-05-24
| ||
01:39 | Minor optimization to GetBytes() to avoid calling sqlite3_column_blob() on null destination buffers. Fix for [8c1650482e]. check-in: a97d149d1e user: shaneh tags: trunk | |
01:20 | Update various assembly information settings. check-in: 606af726e9 user: shaneh tags: trunk | |
01:17 | Correct System.Data.SQLite.Linq version and resource information. Fix for [6489c5a396] and [133daf50d6]. check-in: 9ce4a2e044 user: shaneh tags: trunk | |
Changes
Changes to SQLite.Designer/AssemblyInfo.cs.
1 2 3 4 5 6 7 8 9 10 11 12 | using System; using System.Reflection; using System.Runtime.InteropServices; using System.Runtime.ConstrainedExecution; using System.Resources; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("SQLite.Designer")] [assembly: AssemblyDescription("ADO.NET 4.0 Data Designer for SQLite")] [assembly: AssemblyConfiguration("")] | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | using System; using System.Reflection; using System.Runtime.InteropServices; using System.Runtime.ConstrainedExecution; using System.Resources; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("SQLite.Designer")] [assembly: AssemblyDescription("ADO.NET 4.0 Data Designer for SQLite")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("http://system.data.sqlite.org")] [assembly: AssemblyProduct("SQLite Designer")] [assembly: AssemblyCopyright("Public Domain")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] // Setting ComVisible to false makes the types in this assembly not visible // to COM componenets. If you need to access a type in this assembly from |
︙ | ︙ |
Changes to System.Data.SQLite.Linq/AssemblyInfo.cs.
︙ | ︙ | |||
8 9 10 11 12 13 14 | // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("System.Data.SQLite.Linq")] [assembly: AssemblyDescription("ADO.NET 4.0 Entity Framework support for SQLite")] [assembly: AssemblyConfiguration("")] | | | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("System.Data.SQLite.Linq")] [assembly: AssemblyDescription("ADO.NET 4.0 Entity Framework support for SQLite")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("http://system.data.sqlite.org")] [assembly: AssemblyProduct("System.Data.SQLite")] [assembly: AssemblyCopyright("Public Domain")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] // Setting ComVisible to false makes the types in this assembly not visible // to COM components. If you need to access a type in this assembly from |
︙ | ︙ |
Changes to System.Data.SQLite/AssemblyInfo.cs.
︙ | ︙ | |||
12 13 14 15 16 17 18 | // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("System.Data.SQLite")] [assembly: AssemblyDescription("ADO.NET Data Provider for SQLite")] [assembly: AssemblyConfiguration("")] | | | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("System.Data.SQLite")] [assembly: AssemblyDescription("ADO.NET Data Provider for SQLite")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("http://system.data.sqlite.org")] [assembly: AssemblyProduct("System.Data.SQLite")] [assembly: AssemblyCopyright("Public Domain")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] #if PLATFORM_COMPACTFRAMEWORK && RETARGETABLE [assembly: AssemblyFlags(AssemblyNameFlags.Retargetable)] |
︙ | ︙ |
Changes to tools/install/Properties/AssemblyInfo.cs.
1 2 3 4 5 6 7 | using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("SQLite.Designer Installer")] [assembly: AssemblyDescription("SQLite ADO.NET 4.0 Design-Time Installer")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("http://system.data.sqlite.org")] [assembly: AssemblyProduct("SQLite Installer")] [assembly: AssemblyCopyright("Public Domain")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] // Setting ComVisible to false makes the types in this assembly not visible // to COM components. If you need to access a type in this assembly from |
︙ | ︙ |