commit aab7040cf6a4b69992ffd42e079f5a93aa903511 Author: Name Surname Date: Mon Feb 24 13:04:42 2025 +0300 first commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/.vs/ConsoleForGid/FileContentIndex/74d0f5da-0279-46df-814b-a9eae9b9cbbd.vsidx b/.vs/ConsoleForGid/FileContentIndex/74d0f5da-0279-46df-814b-a9eae9b9cbbd.vsidx new file mode 100644 index 0000000..a9d9905 Binary files /dev/null and b/.vs/ConsoleForGid/FileContentIndex/74d0f5da-0279-46df-814b-a9eae9b9cbbd.vsidx differ diff --git a/.vs/ConsoleForGid/v17/.suo b/.vs/ConsoleForGid/v17/.suo new file mode 100644 index 0000000..3938693 Binary files /dev/null and b/.vs/ConsoleForGid/v17/.suo differ diff --git a/App.config b/App.config new file mode 100644 index 0000000..193aecc --- /dev/null +++ b/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/ConsoleForGid.csproj b/ConsoleForGid.csproj new file mode 100644 index 0000000..92802e8 --- /dev/null +++ b/ConsoleForGid.csproj @@ -0,0 +1,53 @@ + + + + + Debug + AnyCPU + {FC9E8515-AB99-4D15-89F9-A7420FCA0038} + Exe + ConsoleForGid + ConsoleForGid + v4.8 + 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/ConsoleForGid.sln b/ConsoleForGid.sln new file mode 100644 index 0000000..7e3c712 --- /dev/null +++ b/ConsoleForGid.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.8.34330.188 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConsoleForGid", "ConsoleForGid.csproj", "{FC9E8515-AB99-4D15-89F9-A7420FCA0038}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {FC9E8515-AB99-4D15-89F9-A7420FCA0038}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {FC9E8515-AB99-4D15-89F9-A7420FCA0038}.Debug|Any CPU.Build.0 = Debug|Any CPU + {FC9E8515-AB99-4D15-89F9-A7420FCA0038}.Release|Any CPU.ActiveCfg = Release|Any CPU + {FC9E8515-AB99-4D15-89F9-A7420FCA0038}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {9EC28AE5-6530-4102-97B9-558ABEC01D3E} + EndGlobalSection +EndGlobal diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..f6a7d0f --- /dev/null +++ b/Program.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace ConsoleForGid +{ + internal class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello World"); + } + } +} diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..35c680a --- /dev/null +++ b/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// Общие сведения об этой сборке предоставляются следующим набором +// набора атрибутов. Измените значения этих атрибутов для изменения сведений, +// связанные с этой сборкой. +[assembly: AssemblyTitle("ConsoleForGid")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("ConsoleForGid")] +[assembly: AssemblyCopyright("Copyright © 2025")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Установка значения False для параметра ComVisible делает типы в этой сборке невидимыми +// для компонентов COM. Если необходимо обратиться к типу в этой сборке через +// из модели COM задайте для атрибута ComVisible этого типа значение true. +[assembly: ComVisible(false)] + +// Следующий GUID представляет идентификатор typelib, если этот проект доступен из модели COM +[assembly: Guid("fc9e8515-ab99-4d15-89f9-a7420fca0038")] + +// Сведения о версии сборки состоят из указанных ниже четырех значений: +// +// Основной номер версии +// Дополнительный номер версии +// Номер сборки +// Номер редакции +// +// Можно задать все значения или принять номера сборки и редакции по умолчанию +// используя "*", как показано ниже: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/bin/Debug/ConsoleForGid.exe b/bin/Debug/ConsoleForGid.exe new file mode 100644 index 0000000..1202b46 Binary files /dev/null and b/bin/Debug/ConsoleForGid.exe differ diff --git a/bin/Debug/ConsoleForGid.exe.config b/bin/Debug/ConsoleForGid.exe.config new file mode 100644 index 0000000..193aecc --- /dev/null +++ b/bin/Debug/ConsoleForGid.exe.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/bin/Debug/ConsoleForGid.pdb b/bin/Debug/ConsoleForGid.pdb new file mode 100644 index 0000000..d3408ca Binary files /dev/null and b/bin/Debug/ConsoleForGid.pdb differ diff --git a/ffff.txt b/ffff.txt new file mode 100644 index 0000000..0a079b6 --- /dev/null +++ b/ffff.txt @@ -0,0 +1,2 @@ +/bin +/obj \ No newline at end of file diff --git a/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs b/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs new file mode 100644 index 0000000..15efebf --- /dev/null +++ b/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")] diff --git a/obj/Debug/ConsoleForGid.csproj.AssemblyReference.cache b/obj/Debug/ConsoleForGid.csproj.AssemblyReference.cache new file mode 100644 index 0000000..5ec4636 Binary files /dev/null and b/obj/Debug/ConsoleForGid.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/ConsoleForGid.csproj.CoreCompileInputs.cache b/obj/Debug/ConsoleForGid.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..01d20de --- /dev/null +++ b/obj/Debug/ConsoleForGid.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +25f359d3fd7d560a1dec87ab383b84f91627954af157e6d29c6e8f4a1e97b265 diff --git a/obj/Debug/ConsoleForGid.csproj.FileListAbsolute.txt b/obj/Debug/ConsoleForGid.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..dc43db9 --- /dev/null +++ b/obj/Debug/ConsoleForGid.csproj.FileListAbsolute.txt @@ -0,0 +1,7 @@ +D:\IP407\ConsoleForGid\obj\Debug\ConsoleForGid.csproj.AssemblyReference.cache +D:\IP407\ConsoleForGid\obj\Debug\ConsoleForGid.csproj.CoreCompileInputs.cache +D:\IP407\ConsoleForGid\bin\Debug\ConsoleForGid.exe.config +D:\IP407\ConsoleForGid\bin\Debug\ConsoleForGid.exe +D:\IP407\ConsoleForGid\bin\Debug\ConsoleForGid.pdb +D:\IP407\ConsoleForGid\obj\Debug\ConsoleForGid.exe +D:\IP407\ConsoleForGid\obj\Debug\ConsoleForGid.pdb diff --git a/obj/Debug/ConsoleForGid.exe b/obj/Debug/ConsoleForGid.exe new file mode 100644 index 0000000..1202b46 Binary files /dev/null and b/obj/Debug/ConsoleForGid.exe differ diff --git a/obj/Debug/ConsoleForGid.pdb b/obj/Debug/ConsoleForGid.pdb new file mode 100644 index 0000000..d3408ca Binary files /dev/null and b/obj/Debug/ConsoleForGid.pdb differ diff --git a/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..dc1920c Binary files /dev/null and b/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ