diff --git a/NOCQ.sln b/NOCQ.sln new file mode 100644 index 0000000..214d292 --- /dev/null +++ b/NOCQ.sln @@ -0,0 +1,20 @@ + +Microsoft Visual Studio Solution File, Format Version 11.00 +# Visual Studio 2010 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NOCQ", "NOCQ\NOCQ.csproj", "{83651B7D-B58F-46B8-BFE2-BCC0A6C92C7A}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {83651B7D-B58F-46B8-BFE2-BCC0A6C92C7A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {83651B7D-B58F-46B8-BFE2-BCC0A6C92C7A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {83651B7D-B58F-46B8-BFE2-BCC0A6C92C7A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {83651B7D-B58F-46B8-BFE2-BCC0A6C92C7A}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(MonoDevelopProperties) = preSolution + StartupItem = NOCQ\NOCQ.csproj + EndGlobalSection +EndGlobal diff --git a/NOCQ.userprefs b/NOCQ.userprefs new file mode 100644 index 0000000..004b20d --- /dev/null +++ b/NOCQ.userprefs @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/NOCQ/MyClass.cs b/NOCQ/MyClass.cs new file mode 100644 index 0000000..51d22af --- /dev/null +++ b/NOCQ/MyClass.cs @@ -0,0 +1,12 @@ +using System; + +namespace NOCQ +{ + public class MyClass + { + public MyClass() + { + } + } +} + diff --git a/NOCQ/NOCQ.csproj b/NOCQ/NOCQ.csproj new file mode 100644 index 0000000..d7f3a4d --- /dev/null +++ b/NOCQ/NOCQ.csproj @@ -0,0 +1,39 @@ + + + + Debug + AnyCPU + 10.0.0 + 2.0 + {83651B7D-B58F-46B8-BFE2-BCC0A6C92C7A} + Library + NOCQ + NOCQ + + + true + full + false + bin\Debug + DEBUG; + prompt + 4 + false + + + full + true + bin\Release + prompt + 4 + false + + + + + + + + + + \ No newline at end of file diff --git a/NOCQ/Properties/AssemblyInfo.cs b/NOCQ/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..29cfbc3 --- /dev/null +++ b/NOCQ/Properties/AssemblyInfo.cs @@ -0,0 +1,22 @@ +using System.Reflection; +using System.Runtime.CompilerServices; + +// Information about this assembly is defined by the following attributes. +// Change them to the values specific to your project. +[assembly: AssemblyTitle("NOCQ")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("")] +[assembly: AssemblyCopyright("tparnell")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] +// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}". +// The form "{Major}.{Minor}.*" will automatically update the build and revision, +// and "{Major}.{Minor}.{Build}.*" will update just the revision. +[assembly: AssemblyVersion("1.0.*")] +// The following attributes are used to specify the signing key for the assembly, +// if desired. See the Mono documentation for more information about signing. +//[assembly: AssemblyDelaySign(false)] +//[assembly: AssemblyKeyFile("")] +