From 8b7837048045fea12593ba102b9100b8de174ee0 Mon Sep 17 00:00:00 2001 From: SuNetVerseWolk <150458547+SuNetVerseWolk@users.noreply.github.com> Date: Mon, 14 Apr 2025 11:12:35 +0300 Subject: [PATCH] first commit --- .gitignore | 3 + README.md | 0 Test2demo.sln | 25 +++++ Test2demo/App.config | 6 ++ Test2demo/App.xaml | 9 ++ Test2demo/App.xaml.cs | 17 +++ Test2demo/MainWindow.xaml | 12 +++ Test2demo/MainWindow.xaml.cs | 28 +++++ Test2demo/Properties/AssemblyInfo.cs | 55 ++++++++++ Test2demo/Properties/Resources.Designer.cs | 71 +++++++++++++ Test2demo/Properties/Resources.resx | 117 +++++++++++++++++++++ Test2demo/Properties/Settings.Designer.cs | 30 ++++++ Test2demo/Properties/Settings.settings | 7 ++ Test2demo/Test2demo.csproj | 98 +++++++++++++++++ ...TFramework,Version=v4.7.2.AssemblyAttributes.cs | 4 + Test2demo/obj/Debug/App.g.i.cs | 70 ++++++++++++ .../DesignTimeResolveAssemblyReferencesInput.cache | Bin 0 -> 2263 bytes Test2demo/obj/Debug/MainWindow.g.i.cs | 75 +++++++++++++ .../Debug/Test2demo.csproj.AssemblyReference.cache | Bin 0 -> 7357 bytes .../obj/Debug/Test2demo_MarkupCompile.i.cache | 20 ++++ Test2demo/obj/Debug/Test2demo_MarkupCompile.i.lref | 4 + 21 files changed, 651 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 Test2demo.sln create mode 100644 Test2demo/App.config create mode 100644 Test2demo/App.xaml create mode 100644 Test2demo/App.xaml.cs create mode 100644 Test2demo/MainWindow.xaml create mode 100644 Test2demo/MainWindow.xaml.cs create mode 100644 Test2demo/Properties/AssemblyInfo.cs create mode 100644 Test2demo/Properties/Resources.Designer.cs create mode 100644 Test2demo/Properties/Resources.resx create mode 100644 Test2demo/Properties/Settings.Designer.cs create mode 100644 Test2demo/Properties/Settings.settings create mode 100644 Test2demo/Test2demo.csproj create mode 100644 Test2demo/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs create mode 100644 Test2demo/obj/Debug/App.g.i.cs create mode 100644 Test2demo/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache create mode 100644 Test2demo/obj/Debug/MainWindow.g.i.cs create mode 100644 Test2demo/obj/Debug/Test2demo.csproj.AssemblyReference.cache create mode 100644 Test2demo/obj/Debug/Test2demo_MarkupCompile.i.cache create mode 100644 Test2demo/obj/Debug/Test2demo_MarkupCompile.i.lref diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3b2080f --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +.vs +/bin +/obj \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/Test2demo.sln b/Test2demo.sln new file mode 100644 index 0000000..91f726f --- /dev/null +++ b/Test2demo.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}") = "Test2demo", "Test2demo\Test2demo.csproj", "{02943CB5-16D5-40B8-AE1F-9F0752E95484}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {02943CB5-16D5-40B8-AE1F-9F0752E95484}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {02943CB5-16D5-40B8-AE1F-9F0752E95484}.Debug|Any CPU.Build.0 = Debug|Any CPU + {02943CB5-16D5-40B8-AE1F-9F0752E95484}.Release|Any CPU.ActiveCfg = Release|Any CPU + {02943CB5-16D5-40B8-AE1F-9F0752E95484}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {DBF9B0DB-5DBE-46A8-81D4-E52561121784} + EndGlobalSection +EndGlobal diff --git a/Test2demo/App.config b/Test2demo/App.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/Test2demo/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Test2demo/App.xaml b/Test2demo/App.xaml new file mode 100644 index 0000000..5e84fbe --- /dev/null +++ b/Test2demo/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/Test2demo/App.xaml.cs b/Test2demo/App.xaml.cs new file mode 100644 index 0000000..0a1069e --- /dev/null +++ b/Test2demo/App.xaml.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Data; +using System.Linq; +using System.Threading.Tasks; +using System.Windows; + +namespace Test2demo +{ + /// + /// Логика взаимодействия для App.xaml + /// + public partial class App : Application + { + } +} diff --git a/Test2demo/MainWindow.xaml b/Test2demo/MainWindow.xaml new file mode 100644 index 0000000..fb0bb77 --- /dev/null +++ b/Test2demo/MainWindow.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/Test2demo/MainWindow.xaml.cs b/Test2demo/MainWindow.xaml.cs new file mode 100644 index 0000000..a04cb88 --- /dev/null +++ b/Test2demo/MainWindow.xaml.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; + +namespace Test2demo +{ + /// + /// Логика взаимодействия для MainWindow.xaml + /// + public partial class MainWindow : Window + { + public MainWindow() + { + InitializeComponent(); + } + } +} diff --git a/Test2demo/Properties/AssemblyInfo.cs b/Test2demo/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..60a987f --- /dev/null +++ b/Test2demo/Properties/AssemblyInfo.cs @@ -0,0 +1,55 @@ +using System.Reflection; +using System.Resources; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; +using System.Windows; + +// Общие сведения об этой сборке предоставляются следующим набором +// набор атрибутов. Измените значения этих атрибутов, чтобы изменить сведения, +// связанные со сборкой. +[assembly: AssemblyTitle("Test2demo")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Test2demo")] +[assembly: AssemblyCopyright("Copyright © 2025")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Установка значения False для параметра ComVisible делает типы в этой сборке невидимыми +// для компонентов COM. Если необходимо обратиться к типу в этой сборке через +// из модели COM, установите атрибут ComVisible для этого типа в значение true. +[assembly: ComVisible(false)] + +//Чтобы начать создание локализуемых приложений, задайте +//CultureYouAreCodingWith в файле .csproj +//в . Например, при использовании английского (США) +//в своих исходных файлах установите в en-US. Затем отмените преобразование в комментарий +//атрибута NeutralResourceLanguage ниже. Обновите "en-US" в +//строка внизу для обеспечения соответствия настройки UICulture в файле проекта. + +//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)] + + +[assembly: ThemeInfo( + ResourceDictionaryLocation.None, //где расположены словари ресурсов по конкретным тематикам + //(используется, если ресурс не найден на странице, + // или в словарях ресурсов приложения) + ResourceDictionaryLocation.SourceAssembly //где расположен словарь универсальных ресурсов + //(используется, если ресурс не найден на странице, + // в приложении или в каких-либо словарях ресурсов для конкретной темы) +)] + + +// Сведения о версии для сборки включают четыре следующих значения: +// +// Основной номер версии +// Дополнительный номер версии +// Номер сборки +// Номер редакции +// +// Можно задать все значения или принять номера сборки и редакции по умолчанию +// используя "*", как показано ниже: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Test2demo/Properties/Resources.Designer.cs b/Test2demo/Properties/Resources.Designer.cs new file mode 100644 index 0000000..b0d86e0 --- /dev/null +++ b/Test2demo/Properties/Resources.Designer.cs @@ -0,0 +1,71 @@ +//------------------------------------------------------------------------------ +// +// Этот код был создан программным средством. +// Версия среды выполнения: 4.0.30319.42000 +// +// Изменения в этом файле могут привести к неправильному поведению и будут утрачены, если +// код создан повторно. +// +//------------------------------------------------------------------------------ + +namespace Test2demo.Properties +{ + + + /// + /// Класс ресурсов со строгим типом для поиска локализованных строк и пр. + /// + // Этот класс был автоматически создан при помощи StronglyTypedResourceBuilder + // класс с помощью таких средств, как ResGen или Visual Studio. + // Для добавления или удаления члена измените файл .ResX, а затем перезапустите ResGen + // с параметром /str или заново постройте свой VS-проект. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources + { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() + { + } + + /// + /// Возврат кэшированного экземпляра ResourceManager, используемого этим классом. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager + { + get + { + if ((resourceMan == null)) + { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Test2demo.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Переопределяет свойство CurrentUICulture текущего потока для всех + /// подстановки ресурсов с помощью этого класса ресурсов со строгим типом. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture + { + get + { + return resourceCulture; + } + set + { + resourceCulture = value; + } + } + } +} diff --git a/Test2demo/Properties/Resources.resx b/Test2demo/Properties/Resources.resx new file mode 100644 index 0000000..af7dbeb --- /dev/null +++ b/Test2demo/Properties/Resources.resx @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Test2demo/Properties/Settings.Designer.cs b/Test2demo/Properties/Settings.Designer.cs new file mode 100644 index 0000000..de13fe1 --- /dev/null +++ b/Test2demo/Properties/Settings.Designer.cs @@ -0,0 +1,30 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Test2demo.Properties +{ + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase + { + + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); + + public static Settings Default + { + get + { + return defaultInstance; + } + } + } +} diff --git a/Test2demo/Properties/Settings.settings b/Test2demo/Properties/Settings.settings new file mode 100644 index 0000000..033d7a5 --- /dev/null +++ b/Test2demo/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/Test2demo/Test2demo.csproj b/Test2demo/Test2demo.csproj new file mode 100644 index 0000000..6a5b6a2 --- /dev/null +++ b/Test2demo/Test2demo.csproj @@ -0,0 +1,98 @@ + + + + + Debug + AnyCPU + {02943CB5-16D5-40B8-AE1F-9F0752E95484} + WinExe + Test2demo + Test2demo + v4.7.2 + 512 + {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + 4 + true + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + 4.0 + + + + + + + + MSBuild:Compile + Designer + + + MSBuild:Compile + Designer + + + App.xaml + Code + + + MainWindow.xaml + Code + + + + + Code + + + True + True + Resources.resx + + + True + Settings.settings + True + + + ResXFileCodeGenerator + Resources.Designer.cs + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + + + + + \ No newline at end of file diff --git a/Test2demo/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs b/Test2demo/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs new file mode 100644 index 0000000..3871b18 --- /dev/null +++ b/Test2demo/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/Test2demo/obj/Debug/App.g.i.cs b/Test2demo/obj/Debug/App.g.i.cs new file mode 100644 index 0000000..f55a0ff --- /dev/null +++ b/Test2demo/obj/Debug/App.g.i.cs @@ -0,0 +1,70 @@ +#pragma checksum "..\..\App.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "9A1E4E6F80ECC8FD4CF77EEBC6D9936573078AC93676922F7C357F84B5656A29" +//------------------------------------------------------------------------------ +// +// Этот код создан программой. +// Исполняемая версия:4.0.30319.42000 +// +// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае +// повторной генерации кода. +// +//------------------------------------------------------------------------------ + +using System; +using System.Diagnostics; +using System.Windows; +using System.Windows.Automation; +using System.Windows.Controls; +using System.Windows.Controls.Primitives; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Ink; +using System.Windows.Input; +using System.Windows.Markup; +using System.Windows.Media; +using System.Windows.Media.Animation; +using System.Windows.Media.Effects; +using System.Windows.Media.Imaging; +using System.Windows.Media.Media3D; +using System.Windows.Media.TextFormatting; +using System.Windows.Navigation; +using System.Windows.Shapes; +using System.Windows.Shell; +using Test2demo; + + +namespace Test2demo { + + + /// + /// App + /// + public partial class App : System.Windows.Application { + + /// + /// InitializeComponent + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] + public void InitializeComponent() { + + #line 5 "..\..\App.xaml" + this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative); + + #line default + #line hidden + } + + /// + /// Application Entry Point. + /// + [System.STAThreadAttribute()] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] + public static void Main() { + Test2demo.App app = new Test2demo.App(); + app.InitializeComponent(); + app.Run(); + } + } +} + diff --git a/Test2demo/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/Test2demo/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000000000000000000000000000000000000..24729e13bf1cb8cdc7cc6a09a5022eee606dec7c GIT binary patch literal 2263 zcmcIl(TdYR6s=nNAS{9iiujPn73xs8i>n16)}~mb^ZHQ zzjqRjA@?DZqavIG>Z8QOH=>D>D^QvNhBMHbi4+O$g5$fVIbE$tEX9JQY&Zx_(p1sR z3m6CV4vV*MUWQXxfC3SNcZvvE#4Y4!7AuKzp~Jwehg_;3AsLV6`?vKmIUz^;g=9Ee zQnj*tsS~6OW2rccEP@*@69ouDQ_Z9pN(B~4IN@>=sVS+2OPs*XHmD&Ze>tsPg7{QZ zVjpH|M}-D~rkd!STMcUp_}wKplYi+l{}?nm)4D!HPAB1^i{Z3l7UL5W zKi$pOHzpF9;|Geh9vBgC-81(WCzZ3A+rbs*7G{5SO!%xEQjxHPYS`)YrdILlae2ms zo>09El*~SwgI+x^=TxPj8)@;Gf>=wnsr+&ZDMPI`gPD={oGRFB_-%>rZY93kz)7Bf z!ckEjlvA2p^s(`V>L1)FVj}b*x=O>E+<)23#of(NMwdHyACRSD&N7$+O1^Gt+PEQ- zn8r)EZ#L?t*B4GED4;P-jDf$n<<{M=rg27x-)~#`#QyY}>F{bR?`;3IGi3asiF>5q K>%V^2OyM7e93`Cq literal 0 HcmV?d00001 diff --git a/Test2demo/obj/Debug/MainWindow.g.i.cs b/Test2demo/obj/Debug/MainWindow.g.i.cs new file mode 100644 index 0000000..48ee0ed --- /dev/null +++ b/Test2demo/obj/Debug/MainWindow.g.i.cs @@ -0,0 +1,75 @@ +#pragma checksum "..\..\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "F094DF88229B7D063A4B196A0F3F5400FFCC677B23C013DB61F38933429771AB" +//------------------------------------------------------------------------------ +// +// Этот код создан программой. +// Исполняемая версия:4.0.30319.42000 +// +// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае +// повторной генерации кода. +// +//------------------------------------------------------------------------------ + +using System; +using System.Diagnostics; +using System.Windows; +using System.Windows.Automation; +using System.Windows.Controls; +using System.Windows.Controls.Primitives; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Ink; +using System.Windows.Input; +using System.Windows.Markup; +using System.Windows.Media; +using System.Windows.Media.Animation; +using System.Windows.Media.Effects; +using System.Windows.Media.Imaging; +using System.Windows.Media.Media3D; +using System.Windows.Media.TextFormatting; +using System.Windows.Navigation; +using System.Windows.Shapes; +using System.Windows.Shell; +using Test2demo; + + +namespace Test2demo { + + + /// + /// MainWindow + /// + public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { + + private bool _contentLoaded; + + /// + /// InitializeComponent + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] + public void InitializeComponent() { + if (_contentLoaded) { + return; + } + _contentLoaded = true; + System.Uri resourceLocater = new System.Uri("/Test2demo;component/mainwindow.xaml", System.UriKind.Relative); + + #line 1 "..\..\MainWindow.xaml" + System.Windows.Application.LoadComponent(this, resourceLocater); + + #line default + #line hidden + } + + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] + void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { + this._contentLoaded = true; + } + } +} + diff --git a/Test2demo/obj/Debug/Test2demo.csproj.AssemblyReference.cache b/Test2demo/obj/Debug/Test2demo.csproj.AssemblyReference.cache new file mode 100644 index 0000000000000000000000000000000000000000..631152c5266df91e10f9df8f9805aa514ba47b15 GIT binary patch literal 7357 zcmdT}&rcIU6z)VNSOi3ghJ*w0q?ZlI50Q((3Xwz_LIF86A;WeG6Lx2pnb|_QaQ5uq zVdBlBe+75{3eWB=JJ|hU%w*q0?4jv)o44g&_W+M~P@}QkMrJ=*sqb{Cjd1@RPRFT-*75)mw00IWOD3 za0BkqL#N|;2*uB-J)QbF{rPIRmRz8F@iz}xzJ$}}#Ge0{&_qv7-td!B}3rYNvBJL>Y5E|BXqPwcbk{7y6zf9_`q2c)Q+eLeC zYT?JHuJP&-!qDn%}hnhqTI2G@;fYX z3Doyh7En+RT?11A6og>FMd)$bq#cf#z^-b#sFc`v8n7Apgj2U#FnCfvNz>bon4~^& z8rVIi?8vC(Jkdwen2mrFqd-}vBQ%u;T4R#%kW)cgg!iaR%uvkcR}_$IQ$VrWOZ20h z=~n6IQ3`dU_tvRb&7|P%v)DCirE52fsncj3V;=qwy#v$Rm?lA=VV}B2+Wnizj;*vS zO<0NS17)Wr-BLphn9`tD8Hg2cI;~whcWjLmd-TG5P|4da5TA;Y?b+l&;#}&jMdaGK zBuuEayMz&--m9@v4>r@6>pPB=e?9=Rtq}O-)e-d4)OcAbO^b1 z=)%}*k-m1o{YY6SI1_KNASEuN_LN}jjuy6R|9+iEgbh1MNLb|Ss zh6T6%)4R16aU))}I_TY6k=S--;4MxBVKNycRA)-qU58{hh%pbS(TI|B-tYFSGRL0G%9uN-%A2Fz5^0WK^BCq7 z6if{xQ2K;0i-&_)8m~R}l?laj-96(H?MoTh9mlpwd~kUq3nMw_`#Cnqj@^w)vGhE# w#c6!LYIv@iPYiJIvh09%2JY0g|1gq(9`r!C43vsBhd};8(7^x(+`_{53;ycY5&!@I literal 0 HcmV?d00001 diff --git a/Test2demo/obj/Debug/Test2demo_MarkupCompile.i.cache b/Test2demo/obj/Debug/Test2demo_MarkupCompile.i.cache new file mode 100644 index 0000000..c5b59be --- /dev/null +++ b/Test2demo/obj/Debug/Test2demo_MarkupCompile.i.cache @@ -0,0 +1,20 @@ +Test2demo + + +winexe +C# +.cs +D:\ИП-307\NewDemoEx\Test2demo\Test2demo\obj\Debug\ +Test2demo +none +false +DEBUG;TRACE +D:\ИП-307\NewDemoEx\Test2demo\Test2demo\App.xaml +1219584333 + +6-502434485 +13-1310406943 +MainWindow.xaml; + +True + diff --git a/Test2demo/obj/Debug/Test2demo_MarkupCompile.i.lref b/Test2demo/obj/Debug/Test2demo_MarkupCompile.i.lref new file mode 100644 index 0000000..4619788 --- /dev/null +++ b/Test2demo/obj/Debug/Test2demo_MarkupCompile.i.lref @@ -0,0 +1,4 @@ + + +FD:\ИП-307\NewDemoEx\Test2demo\Test2demo\MainWindow.xaml;; +