Bladeren bron

Initial project setup

Lukas Angerer 8 jaren geleden
commit
b17ad2f5e3
8 gewijzigde bestanden met toevoegingen van 121 en 0 verwijderingen
  1. 20 0
      .editorconfig
  2. 5 0
      .gitignore
  3. 43 0
      Larkdown.sln
  4. 9 0
      Parser/Parser.csproj
  5. 12 0
      Server/Program.cs
  6. 10 0
      Server/Server.csproj
  7. 12 0
      WebApi/Program.cs
  8. 10 0
      WebApi/WebApi.csproj

+ 20 - 0
.editorconfig

@@ -0,0 +1,20 @@
+# EditorConfig is awesome: http://EditorConfig.org
+
+# top-most EditorConfig file
+root = true
+
+[*]
+# Unix-style newlines with a newline ending every file
+end_of_line = lf
+insert_final_newline = true
+# All files UTF-8; no exceptions
+charset = utf-8
+# Default to single 4-wide tab indentation
+indent_style = tab
+# NOT setting the indent_size for tabs allows the user's IDE configuration to determine the tab size
+# indent_size = 4
+
+
+[*.{md,yaml,yml}]
+indent_style = space
+indent_size = 4

+ 5 - 0
.gitignore

@@ -0,0 +1,5 @@
+.vs/
+bin/
+obj/
+
+*.user

+ 43 - 0
Larkdown.sln

@@ -0,0 +1,43 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio 15
+VisualStudioVersion = 15.0.27130.2010
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Parser", "Parser\Parser.csproj", "{626DC59E-49D9-4166-ABB5-C32641EA551C}"
+EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Server", "Server\Server.csproj", "{CE29E06C-1725-4E79-B78B-B271ED582CA0}"
+EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WebApi", "WebApi\WebApi.csproj", "{0EC07CFF-2179-4151-B807-B619DFE5ECB1}"
+EndProject
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{DFFA9417-6F2C-4C7D-8743-A7B12C029A0C}"
+	ProjectSection(SolutionItems) = preProject
+		.editorconfig = .editorconfig
+		.gitignore = .gitignore
+	EndProjectSection
+EndProject
+Global
+	GlobalSection(SolutionConfigurationPlatforms) = preSolution
+		Debug|Any CPU = Debug|Any CPU
+		Release|Any CPU = Release|Any CPU
+	EndGlobalSection
+	GlobalSection(ProjectConfigurationPlatforms) = postSolution
+		{626DC59E-49D9-4166-ABB5-C32641EA551C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+		{626DC59E-49D9-4166-ABB5-C32641EA551C}.Debug|Any CPU.Build.0 = Debug|Any CPU
+		{626DC59E-49D9-4166-ABB5-C32641EA551C}.Release|Any CPU.ActiveCfg = Release|Any CPU
+		{626DC59E-49D9-4166-ABB5-C32641EA551C}.Release|Any CPU.Build.0 = Release|Any CPU
+		{CE29E06C-1725-4E79-B78B-B271ED582CA0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+		{CE29E06C-1725-4E79-B78B-B271ED582CA0}.Debug|Any CPU.Build.0 = Debug|Any CPU
+		{CE29E06C-1725-4E79-B78B-B271ED582CA0}.Release|Any CPU.ActiveCfg = Release|Any CPU
+		{CE29E06C-1725-4E79-B78B-B271ED582CA0}.Release|Any CPU.Build.0 = Release|Any CPU
+		{0EC07CFF-2179-4151-B807-B619DFE5ECB1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+		{0EC07CFF-2179-4151-B807-B619DFE5ECB1}.Debug|Any CPU.Build.0 = Debug|Any CPU
+		{0EC07CFF-2179-4151-B807-B619DFE5ECB1}.Release|Any CPU.ActiveCfg = Release|Any CPU
+		{0EC07CFF-2179-4151-B807-B619DFE5ECB1}.Release|Any CPU.Build.0 = Release|Any CPU
+	EndGlobalSection
+	GlobalSection(SolutionProperties) = preSolution
+		HideSolutionNode = FALSE
+	EndGlobalSection
+	GlobalSection(ExtensibilityGlobals) = postSolution
+		SolutionGuid = {23FA6C08-0E4F-43A5-9746-9D520AD66451}
+	EndGlobalSection
+EndGlobal

+ 9 - 0
Parser/Parser.csproj

@@ -0,0 +1,9 @@
+<Project Sdk="Microsoft.NET.Sdk">
+
+  <PropertyGroup>
+    <TargetFramework>netcoreapp2.0</TargetFramework>
+    <AssemblyName>Larkdown.Parser</AssemblyName>
+    <RootNamespace>Larkdown.Parser</RootNamespace>
+  </PropertyGroup>
+
+</Project>

+ 12 - 0
Server/Program.cs

@@ -0,0 +1,12 @@
+using System;
+
+namespace Larkdown.Server
+{
+    class Program
+    {
+        static void Main(string[] args)
+        {
+            Console.WriteLine("Hello World!");
+        }
+    }
+}

+ 10 - 0
Server/Server.csproj

@@ -0,0 +1,10 @@
+<Project Sdk="Microsoft.NET.Sdk">
+
+  <PropertyGroup>
+    <OutputType>Exe</OutputType>
+    <TargetFramework>netcoreapp2.0</TargetFramework>
+    <AssemblyName>Larkdown.Server</AssemblyName>
+    <RootNamespace>Larkdown.Server</RootNamespace>
+  </PropertyGroup>
+
+</Project>

+ 12 - 0
WebApi/Program.cs

@@ -0,0 +1,12 @@
+using System;
+
+namespace WebApi
+{
+    class Program
+    {
+        static void Main(string[] args)
+        {
+            Console.WriteLine("Hello World!");
+        }
+    }
+}

+ 10 - 0
WebApi/WebApi.csproj

@@ -0,0 +1,10 @@
+<Project Sdk="Microsoft.NET.Sdk">
+
+  <PropertyGroup>
+    <OutputType>Exe</OutputType>
+    <TargetFramework>netcoreapp2.0</TargetFramework>
+    <AssemblyName>Larkdown.WebApi</AssemblyName>
+    <RootNamespace>Larkdown.WebApi</RootNamespace>
+  </PropertyGroup>
+
+</Project>