From 35aea49e507670072e71ae034174991a76fe4b74 Mon Sep 17 00:00:00 2001 From: Adam Frisby Date: Thu, 3 May 2007 02:13:23 +0000 Subject: * Added /libraries directory to trunk (for related-but-independent libraries such as libTerrain) * Added /libraries/libLSL shell for future LSL Object Interpreter --- libraries/libLSL/Properties/AssemblyInfo.cs | 35 +++++++++++++++++++++ libraries/libLSL/libLSL.csproj | 47 +++++++++++++++++++++++++++++ libraries/libLSL/lslscript.cs | 10 ++++++ 3 files changed, 92 insertions(+) create mode 100644 libraries/libLSL/Properties/AssemblyInfo.cs create mode 100644 libraries/libLSL/libLSL.csproj create mode 100644 libraries/libLSL/lslscript.cs (limited to 'libraries') diff --git a/libraries/libLSL/Properties/AssemblyInfo.cs b/libraries/libLSL/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..205dd95 --- /dev/null +++ b/libraries/libLSL/Properties/AssemblyInfo.cs @@ -0,0 +1,35 @@ +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("libLSL")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("libLSL")] +[assembly: AssemblyCopyright("Copyright © 2007")] +[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 +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("65895724-efca-49f8-8efc-211594b4c716")] + +// Version information for an assembly consists of the following four values: +// +// 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.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/libraries/libLSL/libLSL.csproj b/libraries/libLSL/libLSL.csproj new file mode 100644 index 0000000..0735cca --- /dev/null +++ b/libraries/libLSL/libLSL.csproj @@ -0,0 +1,47 @@ + + + Debug + AnyCPU + 8.0.50727 + 2.0 + {E213BD9C-85C9-4739-B613-E1B58543370C} + Library + Properties + libLSL + libLSL + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + \ No newline at end of file diff --git a/libraries/libLSL/lslscript.cs b/libraries/libLSL/lslscript.cs new file mode 100644 index 0000000..d9d57bd --- /dev/null +++ b/libraries/libLSL/lslscript.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace libLSL +{ + public class LSLScript + { + } +} -- cgit v1.1