diff --git a/.gitignore b/.gitignore index dfcfd56f..a73a38f3 100644 --- a/.gitignore +++ b/.gitignore @@ -348,3 +348,4 @@ MigrationBackup/ # Ionide (cross platform F# VS Code tools) working folder .ionide/ +.DS_Store diff --git a/src/O2NextGen-Prototypes.sln b/src/O2NextGen-Prototypes.sln new file mode 100644 index 00000000..bba50e0b --- /dev/null +++ b/src/O2NextGen-Prototypes.sln @@ -0,0 +1,18 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.26124.0 +MinimumVisualStudioVersion = 15.0.26124.0 +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|Any CPU = Release|Any CPU + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/src/Prototypes/cgen-prototype/CGen-App/CGen-App.csproj b/src/Prototypes/cgen-prototype/CGen-App/CGen-App.csproj new file mode 100644 index 00000000..d0f1ad57 --- /dev/null +++ b/src/Prototypes/cgen-prototype/CGen-App/CGen-App.csproj @@ -0,0 +1,11 @@ + + + Exe + netcoreapp2.1 + CGen_App + + + + + + \ No newline at end of file diff --git a/src/Prototypes/cgen-prototype/CGen-App/CGen-App.sln b/src/Prototypes/cgen-prototype/CGen-App/CGen-App.sln new file mode 100644 index 00000000..9334f1d3 --- /dev/null +++ b/src/Prototypes/cgen-prototype/CGen-App/CGen-App.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.810.10 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CGen-App", "CGen-App.csproj", "{683B16C9-E45C-4D68-9282-09B9FC206116}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {683B16C9-E45C-4D68-9282-09B9FC206116}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {683B16C9-E45C-4D68-9282-09B9FC206116}.Debug|Any CPU.Build.0 = Debug|Any CPU + {683B16C9-E45C-4D68-9282-09B9FC206116}.Release|Any CPU.ActiveCfg = Release|Any CPU + {683B16C9-E45C-4D68-9282-09B9FC206116}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {E3B3F68F-A9A6-400B-9353-B27FD550B6E9} + EndGlobalSection +EndGlobal diff --git a/src/Prototypes/cgen-prototype/CGen-App/Program.cs b/src/Prototypes/cgen-prototype/CGen-App/Program.cs new file mode 100644 index 00000000..1fff8d99 --- /dev/null +++ b/src/Prototypes/cgen-prototype/CGen-App/Program.cs @@ -0,0 +1,12 @@ +using System; + +namespace CGen_App +{ + class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello CGen App!"); + } + } +}