commit 9759455d2dc3b92db86b0c2f66b90e5d68e5c7f2 Author: thewarrior1220 Date: Mon Feb 7 12:19:48 2022 +0100 Init diff --git a/.vs/c-sharp/v16/.suo b/.vs/c-sharp/v16/.suo new file mode 100644 index 0000000..a1dc8dc Binary files /dev/null and b/.vs/c-sharp/v16/.suo differ diff --git a/c-sharp.sln b/c-sharp.sln new file mode 100644 index 0000000..76857d8 --- /dev/null +++ b/c-sharp.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.31911.196 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "c-sharp", "c-sharp\c-sharp.csproj", "{A6876A09-53D2-47AF-A648-81BAD791D19D}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {A6876A09-53D2-47AF-A648-81BAD791D19D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A6876A09-53D2-47AF-A648-81BAD791D19D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A6876A09-53D2-47AF-A648-81BAD791D19D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A6876A09-53D2-47AF-A648-81BAD791D19D}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {EC420C46-4A87-46F7-8B05-32F2730A7370} + EndGlobalSection +EndGlobal diff --git a/c-sharp/App.config b/c-sharp/App.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/c-sharp/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/c-sharp/Program.cs b/c-sharp/Program.cs new file mode 100644 index 0000000..25cf2fd --- /dev/null +++ b/c-sharp/Program.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace c_sharp +{ + class Program + { + static void Main(string[] args) + { + } + } +} diff --git a/c-sharp/Properties/AssemblyInfo.cs b/c-sharp/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..2dae359 --- /dev/null +++ b/c-sharp/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("c-sharp")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("c-sharp")] +[assembly: AssemblyCopyright("Copyright © 2022")] +[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("a6876a09-53d2-47af-a648-81bad791d19d")] + +// 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")] diff --git a/c-sharp/c-sharp.csproj b/c-sharp/c-sharp.csproj new file mode 100644 index 0000000..b604b34 --- /dev/null +++ b/c-sharp/c-sharp.csproj @@ -0,0 +1,53 @@ + + + + + Debug + AnyCPU + {A6876A09-53D2-47AF-A648-81BAD791D19D} + Exe + c_sharp + c-sharp + v4.7.2 + 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/c-sharp/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs b/c-sharp/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs new file mode 100644 index 0000000..3871b18 --- /dev/null +++ b/c-sharp/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] diff --git a/c-sharp/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/c-sharp/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..84e30cd Binary files /dev/null and b/c-sharp/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/c-sharp/obj/Debug/c-sharp.csproj.AssemblyReference.cache b/c-sharp/obj/Debug/c-sharp.csproj.AssemblyReference.cache new file mode 100644 index 0000000..4eb356a Binary files /dev/null and b/c-sharp/obj/Debug/c-sharp.csproj.AssemblyReference.cache differ