Skip to content

Commit 19db759

Browse files
committed
Updated assembly infos
1 parent c642e39 commit 19db759

File tree

2 files changed

+11
-40
lines changed

2 files changed

+11
-40
lines changed
Lines changed: 4 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,10 @@
11
using System.Reflection;
2-
using System.Runtime.CompilerServices;
32
using System.Runtime.InteropServices;
43

5-
// General Information about an assembly is controlled through the following
6-
// set of attributes. Change these attribute values to modify the information
7-
// associated with an assembly.
8-
[assembly: AssemblyTitle("SQLite.CodeFirst.Console")]
9-
[assembly: AssemblyDescription("")]
10-
[assembly: AssemblyConfiguration("")]
11-
[assembly: AssemblyCompany("")]
4+
[assembly: AssemblyTitle("SQLite.CodeFirst")]
5+
[assembly: AssemblyDescription("A console application which demonstrates how to use QLite.CodeFirst.")]
126
[assembly: AssemblyProduct("SQLite.CodeFirst")]
13-
[assembly: AssemblyCopyright("Copyright © 2015")]
14-
[assembly: AssemblyTrademark("")]
15-
[assembly: AssemblyCulture("")]
7+
[assembly: AssemblyCopyright("Copyright © Marc Sallin")]
168

179
// Setting ComVisible to false makes the types in this assembly not visible
1810
// to COM components. If you need to access a type in this assembly from
@@ -22,15 +14,6 @@
2214
// The following GUID is for the ID of the typelib if this project is exposed to COM
2315
[assembly: Guid("945f6a68-1bcd-47ff-a551-a2820b88ff8c")]
2416

25-
// Version information for an assembly consists of the following four values:
26-
//
27-
// Major Version
28-
// Minor Version
29-
// Build Number
30-
// Revision
31-
//
32-
// You can specify all the values or you can default the Build and Revision Numbers
33-
// by using the '*' as shown below:
34-
// [assembly: AssemblyVersion("1.0.*")]
3517
[assembly: AssemblyVersion("1.0.0.0")]
3618
[assembly: AssemblyFileVersion("1.0.0.0")]
19+
[assembly: AssemblyInformationalVersion("1.0.0.0")]
Lines changed: 7 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,13 @@
11
using System.Reflection;
22
using System.Runtime.InteropServices;
33

4-
// General Information about an assembly is controlled through the following
5-
// set of attributes. Change these attribute values to modify the information
6-
// associated with an assembly.
74
[assembly: AssemblyTitle("SQLite.CodeFirst")]
8-
[assembly: AssemblyDescription("")]
9-
[assembly: AssemblyConfiguration("")]
10-
[assembly: AssemblyCompany("")]
5+
[assembly: AssemblyDescription(
6+
"Creates a SQLite Database from Code, using Entity Framework CodeFirst. " +
7+
"This Project ships several IDbInitializer which creates " +
8+
"a new SQLite Database, based on your model/code.")]
119
[assembly: AssemblyProduct("SQLite.CodeFirst")]
12-
[assembly: AssemblyCopyright("Copyright © 2015")]
13-
[assembly: AssemblyTrademark("")]
14-
[assembly: AssemblyCulture("")]
10+
[assembly: AssemblyCopyright("Copyright © Marc Sallin")]
1511

1612
// Setting ComVisible to false makes the types in this assembly not visible
1713
// to COM components. If you need to access a type in this assembly from
@@ -21,15 +17,7 @@
2117
// The following GUID is for the ID of the typelib if this project is exposed to COM
2218
[assembly: Guid("46603902-448a-4c50-87ec-09cb792b740f")]
2319

24-
// Version information for an assembly consists of the following four values:
25-
//
26-
// Major Version
27-
// Minor Version
28-
// Build Number
29-
// Revision
30-
//
31-
// You can specify all the values or you can default the Build and Revision Numbers
32-
// by using the '*' as shown below:
33-
// [assembly: AssemblyVersion("1.0.*")]
20+
// Will be replaced by the build server
3421
[assembly: AssemblyVersion("1.0.0.0")]
3522
[assembly: AssemblyFileVersion("1.0.0.0")]
23+
[assembly: AssemblyInformationalVersion("1.0.0.0")]

0 commit comments

Comments
 (0)