diff --git a/.gitignore b/.gitignore index 47b5752..a4d8ada 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ *.dll +packages/ bin/ obj/ *.mdb diff --git a/NOCQ.Application/NOCQ.Application.csproj b/NOCQ.Application/NOCQ.Application.csproj new file mode 100644 index 0000000..9a009b0 --- /dev/null +++ b/NOCQ.Application/NOCQ.Application.csproj @@ -0,0 +1,39 @@ + + + + Debug + AnyCPU + 10.0.0 + 2.0 + {DF8CD7EA-76FC-4B57-B24A-52C6373A8EDF} + Exe + NOCQ.Application + NOCQ.Application + + + true + full + false + bin\Debug + DEBUG; + prompt + 4 + true + + + full + true + bin\Release + prompt + 4 + true + + + + + + + + + + \ No newline at end of file diff --git a/NOCQ.Application/Program.cs b/NOCQ.Application/Program.cs new file mode 100644 index 0000000..afcde55 --- /dev/null +++ b/NOCQ.Application/Program.cs @@ -0,0 +1,12 @@ +using System; + +namespace NOCQ.Application +{ + class MainClass + { + public static void Main (string[] args) + { + Console.WriteLine ("Hello World!"); + } + } +} diff --git a/NOCQ.Application/Properties/AssemblyInfo.cs b/NOCQ.Application/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..f2ded68 --- /dev/null +++ b/NOCQ.Application/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.Application")] +[assembly: AssemblyDescription ("")] +[assembly: AssemblyConfiguration ("")] +[assembly: AssemblyCompany ("")] +[assembly: AssemblyProduct ("")] +[assembly: AssemblyCopyright ("nmaclennan")] +[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("")] + diff --git a/NOCQ.sln b/NOCQ.sln index f0bef2d..08dc15a 100644 --- a/NOCQ.sln +++ b/NOCQ.sln @@ -3,6 +3,8 @@ Microsoft Visual Studio Solution File, Format Version 11.00 # Visual Studio 2010 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NOCQ", "src\NOCQ\NOCQ.csproj", "{83651B7D-B58F-46B8-BFE2-BCC0A6C92C7A}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NOCQ.Application", "NOCQ.Application\NOCQ.Application.csproj", "{DF8CD7EA-76FC-4B57-B24A-52C6373A8EDF}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -13,6 +15,10 @@ Global {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 + {DF8CD7EA-76FC-4B57-B24A-52C6373A8EDF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DF8CD7EA-76FC-4B57-B24A-52C6373A8EDF}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DF8CD7EA-76FC-4B57-B24A-52C6373A8EDF}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DF8CD7EA-76FC-4B57-B24A-52C6373A8EDF}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(MonoDevelopProperties) = preSolution StartupItem = src\NOCQ\NOCQ.csproj diff --git a/NOCQ.userprefs b/NOCQ.userprefs index 004b20d..8ada366 100644 --- a/NOCQ.userprefs +++ b/NOCQ.userprefs @@ -1,8 +1,8 @@  - + - + diff --git a/src/NOCQ/MyClass.cs b/src/NOCQ/MyClass.cs deleted file mode 100644 index 51d22af..0000000 --- a/src/NOCQ/MyClass.cs +++ /dev/null @@ -1,12 +0,0 @@ -using System; - -namespace NOCQ -{ - public class MyClass - { - public MyClass() - { - } - } -} - diff --git a/src/NOCQ/NOCQ.csproj b/src/NOCQ/NOCQ.csproj index d7f3a4d..a39c206 100644 --- a/src/NOCQ/NOCQ.csproj +++ b/src/NOCQ/NOCQ.csproj @@ -9,6 +9,7 @@ Library NOCQ NOCQ + v4.5 true @@ -30,10 +31,29 @@ + + + + ..\..\packages\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.AttributedModel.dll + + + ..\..\packages\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.Convention.dll + + + ..\..\packages\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.Hosting.dll + + + ..\..\packages\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.Runtime.dll + + + ..\..\packages\Microsoft.Composition.1.0.27\lib\portable-net45+win8+wp8+wpa81\System.Composition.TypedParts.dll + - + + + \ No newline at end of file diff --git a/src/NOCQ/packages.config b/src/NOCQ/packages.config new file mode 100644 index 0000000..845e173 --- /dev/null +++ b/src/NOCQ/packages.config @@ -0,0 +1,4 @@ + + + + \ No newline at end of file