diff options
* Added ThirdParty node for external library sources that are shipped with the solution.
* Added conceptual TribalMedia.Framework.Data library; this is meant as a generic database layer abstraction library, that should be specialized into OpenSim.Framework.Data
* OpenSim.Framework.Data should subclass FieldMappers to extend LLVector3 and LLQuaternions
Diffstat (limited to 'ThirdParty/TribalMedia/TribalMedia.Framework.Data/Properties')
-rw-r--r-- | ThirdParty/TribalMedia/TribalMedia.Framework.Data/Properties/AssemblyInfo.cs | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/ThirdParty/TribalMedia/TribalMedia.Framework.Data/Properties/AssemblyInfo.cs b/ThirdParty/TribalMedia/TribalMedia.Framework.Data/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..4a073e9 --- /dev/null +++ b/ThirdParty/TribalMedia/TribalMedia.Framework.Data/Properties/AssemblyInfo.cs | |||
@@ -0,0 +1,40 @@ | |||
1 | using System.Reflection; | ||
2 | using System.Runtime.InteropServices; | ||
3 | using System.Security; | ||
4 | |||
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 | |||
9 | [assembly : AssemblyTitle("TribalMedia.Framework.Data")] | ||
10 | [assembly : AssemblyDescription("Generic Database Abstraction Layer")] | ||
11 | [assembly : AssemblyConfiguration("")] | ||
12 | [assembly : AssemblyCompany("TribalMedia")] | ||
13 | [assembly : AssemblyProduct("TribalMedia.Framework.Data")] | ||
14 | [assembly: AssemblyCopyright("Copyright © 2007 Tribal Media")] | ||
15 | [assembly : AssemblyTrademark("")] | ||
16 | [assembly : AssemblyCulture("")] | ||
17 | |||
18 | // Setting ComVisible to false makes the types in this assembly not visible | ||
19 | // to COM components. If you need to access a type in this assembly from | ||
20 | // COM, set the ComVisible attribute to true on that type. | ||
21 | |||
22 | [assembly : ComVisible(false)] | ||
23 | |||
24 | // The following GUID is for the ID of the typelib if this project is exposed to COM | ||
25 | |||
26 | [assembly : Guid("9269f421-19d9-4eea-bfe3-c0ffe426fada")] | ||
27 | |||
28 | // Version information for an assembly consists of the following four values: | ||
29 | // | ||
30 | // Major Version | ||
31 | // Minor Version | ||
32 | // Build Number | ||
33 | // Revision | ||
34 | // | ||
35 | // You can specify all the values or you can default the Revision and Build Numbers | ||
36 | // by using the '*' as shown below: | ||
37 | |||
38 | [assembly : AssemblyVersion("1.0.0.0")] | ||
39 | [assembly : AssemblyFileVersion("1.0.0.0")] | ||
40 | [assembly : AllowPartiallyTrustedCallers] \ No newline at end of file | ||