From ff6c04df8f93192a2b562ff8a13f0a819fab4024 Mon Sep 17 00:00:00 2001 From: Name Surname Date: Mon, 24 Feb 2025 11:13:49 +0300 Subject: [PATCH] =?UTF-8?q?=D0=B1=D0=BB=D0=B0=20=D0=B1=D0=BB=D0=B0=20?= =?UTF-8?q?=D0=B1=D0=BB=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 + App.config | 6 +++ Program.cs | 16 +++++++ Properties/AssemblyInfo.cs | 36 ++++++++++++++ SimKons.csproj | 53 +++++++++++++++++++++ SimKons.sln | 25 ++++++++++ ...NETFramework,Version=v4.8.AssemblyAttributes.cs | 4 ++ .../DesignTimeResolveAssemblyReferencesInput.cache | Bin 0 -> 1682 bytes obj/Debug/SimKons.csproj.AssemblyReference.cache | Bin 0 -> 4061 bytes 9 files changed, 141 insertions(+) create mode 100644 .gitignore create mode 100644 App.config create mode 100644 Program.cs create mode 100644 Properties/AssemblyInfo.cs create mode 100644 SimKons.csproj create mode 100644 SimKons.sln create mode 100644 obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs create mode 100644 obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache create mode 100644 obj/Debug/SimKons.csproj.AssemblyReference.cache diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b66ae99 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/.vs \ No newline at end of file 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/Program.cs b/Program.cs new file mode 100644 index 0000000..4e9aac3 --- /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 SimKons +{ + internal class Program + { + static void Main(string[] args) + { + + } + } +} diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..cd06d8f --- /dev/null +++ b/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// Общие сведения об этой сборке предоставляются следующим набором +// набора атрибутов. Измените значения этих атрибутов для изменения сведений, +// связанные с этой сборкой. +[assembly: AssemblyTitle("SimKons")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("SimKons")] +[assembly: AssemblyCopyright("Copyright © 2025")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Установка значения False для параметра ComVisible делает типы в этой сборке невидимыми +// для компонентов COM. Если необходимо обратиться к типу в этой сборке через +// из модели COM задайте для атрибута ComVisible этого типа значение true. +[assembly: ComVisible(false)] + +// Следующий GUID представляет идентификатор typelib, если этот проект доступен из модели COM +[assembly: Guid("985eb19d-e86a-4fdc-a110-a38fe4ac3f89")] + +// Сведения о версии сборки состоят из указанных ниже четырех значений: +// +// Основной номер версии +// Дополнительный номер версии +// Номер сборки +// Номер редакции +// +// Можно задать все значения или принять номера сборки и редакции по умолчанию +// используя "*", как показано ниже: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/SimKons.csproj b/SimKons.csproj new file mode 100644 index 0000000..8e05174 --- /dev/null +++ b/SimKons.csproj @@ -0,0 +1,53 @@ + + + + + Debug + AnyCPU + {985EB19D-E86A-4FDC-A110-A38FE4AC3F89} + Exe + SimKons + SimKons + 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/SimKons.sln b/SimKons.sln new file mode 100644 index 0000000..2d11772 --- /dev/null +++ b/SimKons.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.9.34607.119 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimKons", "SimKons.csproj", "{985EB19D-E86A-4FDC-A110-A38FE4AC3F89}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {985EB19D-E86A-4FDC-A110-A38FE4AC3F89}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {985EB19D-E86A-4FDC-A110-A38FE4AC3F89}.Debug|Any CPU.Build.0 = Debug|Any CPU + {985EB19D-E86A-4FDC-A110-A38FE4AC3F89}.Release|Any CPU.ActiveCfg = Release|Any CPU + {985EB19D-E86A-4FDC-A110-A38FE4AC3F89}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {32CA8848-866E-4158-A7EC-72D18B0EC3A9} + EndGlobalSection +EndGlobal 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/DesignTimeResolveAssemblyReferencesInput.cache b/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000000000000000000000000000000000000..ec4bad4a0a1a467a7e1ea58348e5d0448b60b60c GIT binary patch literal 1682 zcmcJP-)q}25XZgE^r5hqzHIc#ds`uhl$5Ot?4gTex^)dD4rMTnA=?*6n|@@H+9VkN z?>!~Op$~nV43h2haUY%U?)&Cd6h#MQ#g(jLQV9_gSVMG()_3WU4*DPYGUFoWlH$73 z%F>JFl9XD_d0mf&^v3AgFqxne*yR2C{KE;I!W;~!5|RsRK^B68rPsVP+UmKZ8T!LY zo4=Gy#!F zUOP~hW0?ZywS{6{zry8((dXf!Pr#8&=eGUD!eM?$;VTg^5l{He)jyBHsf}LX$^#_i zi}*xO@ixj4k9J{j}}r=ND+g!==;Xi(k& literal 0 HcmV?d00001 diff --git a/obj/Debug/SimKons.csproj.AssemblyReference.cache b/obj/Debug/SimKons.csproj.AssemblyReference.cache new file mode 100644 index 0000000000000000000000000000000000000000..5ec4636ac70fba756a734da979f7c1722731682f GIT binary patch literal 4061 zcmcIn&2H2%5Y7mwwp#?^M@W@8>=7rD7&2k;!7iEo998d7ioF{398k<{QN#-+{h8X^RZE zhRTew)w0MlIt>{CODyM^40FASI3 zmVvIx2Ulxo`A{I`4sL-IPC^vUj51`}<{i*>Ed*o~o=~;unkkHmLjoA!jxVtNm87X) zjWVa)t*bRQ?SQPpT~}jOMb4)HEIGsA39Cy#@Npk0Dm7(JSal<={%@>zy}`*cwauEf zGlnnxkGy+@qKqgz5pv!r