|
1 | 1 | using System.Reflection; |
2 | 2 | using System.Runtime.InteropServices; |
3 | 3 |
|
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. |
7 | 4 | [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.")] |
11 | 9 | [assembly: AssemblyProduct("SQLite.CodeFirst")] |
12 | | -[assembly: AssemblyCopyright("Copyright © 2015")] |
13 | | -[assembly: AssemblyTrademark("")] |
14 | | -[assembly: AssemblyCulture("")] |
| 10 | +[assembly: AssemblyCopyright("Copyright © Marc Sallin")] |
15 | 11 |
|
16 | 12 | // Setting ComVisible to false makes the types in this assembly not visible |
17 | 13 | // to COM components. If you need to access a type in this assembly from |
|
21 | 17 | // The following GUID is for the ID of the typelib if this project is exposed to COM |
22 | 18 | [assembly: Guid("46603902-448a-4c50-87ec-09cb792b740f")] |
23 | 19 |
|
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 |
34 | 21 | [assembly: AssemblyVersion("1.0.0.0")] |
35 | 22 | [assembly: AssemblyFileVersion("1.0.0.0")] |
| 23 | +[assembly: AssemblyInformationalVersion("1.0.0.0")] |
0 commit comments