Forráskód Böngészése

Add project files.

bastien.monsarrat 6 éve
szülő
commit
f669badc11
3 módosított fájl, 45 hozzáadás és 0 törlés
  1. 25 0
      Adv2016.sln
  2. 8 0
      Adv2016/Adv2016.csproj
  3. 12 0
      Adv2016/Program.cs

+ 25 - 0
Adv2016.sln

@@ -0,0 +1,25 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio 15
+VisualStudioVersion = 15.0.28307.421
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Adv2016", "Adv2016\Adv2016.csproj", "{BFC32D85-5E89-4365-B038-01A75BDB8B94}"
+EndProject
+Global
+	GlobalSection(SolutionConfigurationPlatforms) = preSolution
+		Debug|Any CPU = Debug|Any CPU
+		Release|Any CPU = Release|Any CPU
+	EndGlobalSection
+	GlobalSection(ProjectConfigurationPlatforms) = postSolution
+		{BFC32D85-5E89-4365-B038-01A75BDB8B94}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+		{BFC32D85-5E89-4365-B038-01A75BDB8B94}.Debug|Any CPU.Build.0 = Debug|Any CPU
+		{BFC32D85-5E89-4365-B038-01A75BDB8B94}.Release|Any CPU.ActiveCfg = Release|Any CPU
+		{BFC32D85-5E89-4365-B038-01A75BDB8B94}.Release|Any CPU.Build.0 = Release|Any CPU
+	EndGlobalSection
+	GlobalSection(SolutionProperties) = preSolution
+		HideSolutionNode = FALSE
+	EndGlobalSection
+	GlobalSection(ExtensibilityGlobals) = postSolution
+		SolutionGuid = {08D1C5B9-C22E-4522-9227-94847301D716}
+	EndGlobalSection
+EndGlobal

+ 8 - 0
Adv2016/Adv2016.csproj

@@ -0,0 +1,8 @@
+<Project Sdk="Microsoft.NET.Sdk">
+
+  <PropertyGroup>
+    <OutputType>Exe</OutputType>
+    <TargetFramework>netcoreapp2.1</TargetFramework>
+  </PropertyGroup>
+
+</Project>

+ 12 - 0
Adv2016/Program.cs

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