From f85ebf48d159bd8b2643dc695e624bf82686022b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tommy=20=C3=96man?= Date: Wed, 28 Nov 2018 22:22:46 +0100 Subject: [PATCH] Add project files. --- 2017_01.sln | 25 ++++++++++++++ 2017_01/2017_01.csproj | 53 ++++++++++++++++++++++++++++++ 2017_01/App.config | 6 ++++ 2017_01/Program.cs | 15 +++++++++ 2017_01/Properties/AssemblyInfo.cs | 36 ++++++++++++++++++++ 5 files changed, 135 insertions(+) create mode 100644 2017_01.sln create mode 100644 2017_01/2017_01.csproj create mode 100644 2017_01/App.config create mode 100644 2017_01/Program.cs create mode 100644 2017_01/Properties/AssemblyInfo.cs diff --git a/2017_01.sln b/2017_01.sln new file mode 100644 index 0000000..5fb3d46 --- /dev/null +++ b/2017_01.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.28010.2048 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "2017_01", "2017_01\2017_01.csproj", "{06CE1756-7EB8-4E0C-910C-9EC316D4E04E}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {06CE1756-7EB8-4E0C-910C-9EC316D4E04E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {06CE1756-7EB8-4E0C-910C-9EC316D4E04E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {06CE1756-7EB8-4E0C-910C-9EC316D4E04E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {06CE1756-7EB8-4E0C-910C-9EC316D4E04E}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {03AD54F0-CF5D-409C-801B-45464BFF9001} + EndGlobalSection +EndGlobal diff --git a/2017_01/2017_01.csproj b/2017_01/2017_01.csproj new file mode 100644 index 0000000..f73f8b5 --- /dev/null +++ b/2017_01/2017_01.csproj @@ -0,0 +1,53 @@ + + + + + Debug + AnyCPU + {06CE1756-7EB8-4E0C-910C-9EC316D4E04E} + Exe + _2017_01 + 2017_01 + v4.6.1 + 512 + true + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/2017_01/App.config b/2017_01/App.config new file mode 100644 index 0000000..731f6de --- /dev/null +++ b/2017_01/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/2017_01/Program.cs b/2017_01/Program.cs new file mode 100644 index 0000000..0b82d25 --- /dev/null +++ b/2017_01/Program.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace _2017_01 +{ + class Program + { + static void Main(string[] args) + { + } + } +} diff --git a/2017_01/Properties/AssemblyInfo.cs b/2017_01/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..b55dde2 --- /dev/null +++ b/2017_01/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("2017_01")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("2017_01")] +[assembly: AssemblyCopyright("Copyright © 2018")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("06ce1756-7eb8-4e0c-910c-9ec316d4e04e")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")]