From ceb1043f4695fddf825174919f9900014e196a8b Mon Sep 17 00:00:00 2001 From: ss Date: Wed, 9 Oct 2024 11:04:17 +0200 Subject: [PATCH] Add project files. --- Osztondij.sln | 25 +++++++++++++ Osztondij/App.config | 6 ++++ Osztondij/Osztondij.csproj | 53 ++++++++++++++++++++++++++++ Osztondij/Program.cs | 15 ++++++++ Osztondij/Properties/AssemblyInfo.cs | 33 +++++++++++++++++ 5 files changed, 132 insertions(+) create mode 100644 Osztondij.sln create mode 100644 Osztondij/App.config create mode 100644 Osztondij/Osztondij.csproj create mode 100644 Osztondij/Program.cs create mode 100644 Osztondij/Properties/AssemblyInfo.cs diff --git a/Osztondij.sln b/Osztondij.sln new file mode 100644 index 0000000..4caefca --- /dev/null +++ b/Osztondij.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.11.35312.102 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Osztondij", "Osztondij\Osztondij.csproj", "{AD68F815-B255-4666-94FD-0318B4892F4C}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {AD68F815-B255-4666-94FD-0318B4892F4C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {AD68F815-B255-4666-94FD-0318B4892F4C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {AD68F815-B255-4666-94FD-0318B4892F4C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {AD68F815-B255-4666-94FD-0318B4892F4C}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {F105E3D1-A209-42B1-AD2B-393F38D535F9} + EndGlobalSection +EndGlobal diff --git a/Osztondij/App.config b/Osztondij/App.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/Osztondij/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Osztondij/Osztondij.csproj b/Osztondij/Osztondij.csproj new file mode 100644 index 0000000..7cb3c90 --- /dev/null +++ b/Osztondij/Osztondij.csproj @@ -0,0 +1,53 @@ + + + + + Debug + AnyCPU + {AD68F815-B255-4666-94FD-0318B4892F4C} + Exe + Osztondij + Osztondij + 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/Osztondij/Program.cs b/Osztondij/Program.cs new file mode 100644 index 0000000..c5a885f --- /dev/null +++ b/Osztondij/Program.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Osztondij +{ + internal class Program + { + static void Main(string[] args) + { + } + } +} diff --git a/Osztondij/Properties/AssemblyInfo.cs b/Osztondij/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..7937f9f --- /dev/null +++ b/Osztondij/Properties/AssemblyInfo.cs @@ -0,0 +1,33 @@ +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("Osztondij")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Osztondij")] +[assembly: AssemblyCopyright("Copyright © 2024")] +[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("ad68f815-b255-4666-94fd-0318b4892f4c")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")]