From 4ad26570250e521670fc41cb8919085908d4c6f0 Mon Sep 17 00:00:00 2001 From: Pustalorc Date: Wed, 15 Jul 2020 19:01:39 +0000 Subject: [PATCH] Create a new C# Project Created a new C# Project with the default starting files and some settings modified. --- C# DDC Algorithm/App.config | 6 +++ C# DDC Algorithm/DDC Algorithm.csproj | 54 +++++++++++++++++++++ C# DDC Algorithm/DDC Algorithm.sln | 25 ++++++++++ C# DDC Algorithm/Program.cs | 15 ++++++ C# DDC Algorithm/Properties/AssemblyInfo.cs | 15 ++++++ 5 files changed, 115 insertions(+) create mode 100644 C# DDC Algorithm/App.config create mode 100644 C# DDC Algorithm/DDC Algorithm.csproj create mode 100644 C# DDC Algorithm/DDC Algorithm.sln create mode 100644 C# DDC Algorithm/Program.cs create mode 100644 C# DDC Algorithm/Properties/AssemblyInfo.cs diff --git a/C# DDC Algorithm/App.config b/C# DDC Algorithm/App.config new file mode 100644 index 0000000..193aecc --- /dev/null +++ b/C# DDC Algorithm/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/C# DDC Algorithm/DDC Algorithm.csproj b/C# DDC Algorithm/DDC Algorithm.csproj new file mode 100644 index 0000000..e287be8 --- /dev/null +++ b/C# DDC Algorithm/DDC Algorithm.csproj @@ -0,0 +1,54 @@ + + + + + Debug + AnyCPU + {44D56546-6FE3-4BB1-A4B5-6B555BC35905} + Exe + Pustalorc.University.DDC_Algorithm + DDC Algorithm + v4.8 + 512 + true + true + default + + + 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/C# DDC Algorithm/DDC Algorithm.sln b/C# DDC Algorithm/DDC Algorithm.sln new file mode 100644 index 0000000..c8d8f4b --- /dev/null +++ b/C# DDC Algorithm/DDC Algorithm.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.30320.27 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DDC Algorithm", "DDC Algorithm.csproj", "{44D56546-6FE3-4BB1-A4B5-6B555BC35905}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {44D56546-6FE3-4BB1-A4B5-6B555BC35905}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {44D56546-6FE3-4BB1-A4B5-6B555BC35905}.Debug|Any CPU.Build.0 = Debug|Any CPU + {44D56546-6FE3-4BB1-A4B5-6B555BC35905}.Release|Any CPU.ActiveCfg = Release|Any CPU + {44D56546-6FE3-4BB1-A4B5-6B555BC35905}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {3F991B57-2921-411B-8BF8-E511C424A537} + EndGlobalSection +EndGlobal diff --git a/C# DDC Algorithm/Program.cs b/C# DDC Algorithm/Program.cs new file mode 100644 index 0000000..22d04d8 --- /dev/null +++ b/C# DDC Algorithm/Program.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace DDC_Algorithm +{ + class Program + { + static void Main(string[] args) + { + } + } +} diff --git a/C# DDC Algorithm/Properties/AssemblyInfo.cs b/C# DDC Algorithm/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..78d6924 --- /dev/null +++ b/C# DDC Algorithm/Properties/AssemblyInfo.cs @@ -0,0 +1,15 @@ +using System.Reflection; +using System.Runtime.InteropServices; + +[assembly: AssemblyTitle("DDC Algorithm")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Pustalorc")] +[assembly: AssemblyProduct("DDC Algorithm")] +[assembly: AssemblyCopyright("Copyright © Pustalorc 2020")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] +[assembly: ComVisible(false)] +[assembly: Guid("44d56546-6fe3-4bb1-a4b5-6b555bc35905")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")]