From c0c4c99fc5c6d55954be113e90dd19b38362b70d Mon Sep 17 00:00:00 2001 From: Debug_pro Date: Thu, 26 Feb 2026 00:16:48 +0300 Subject: [PATCH] base setup --- DrawFigureLibrary/DrawFigureLibrary.csproj | 10 ++++++++++ Main/App.xaml | 9 +++++++++ Main/App.xaml.cs | 14 ++++++++++++++ Main/AssemblyInfo.cs | 10 ++++++++++ Main/Main.csproj | 15 +++++++++++++++ 5 files changed, 58 insertions(+) create mode 100644 DrawFigureLibrary/DrawFigureLibrary.csproj create mode 100644 Main/App.xaml create mode 100644 Main/App.xaml.cs create mode 100644 Main/AssemblyInfo.cs create mode 100644 Main/Main.csproj diff --git a/DrawFigureLibrary/DrawFigureLibrary.csproj b/DrawFigureLibrary/DrawFigureLibrary.csproj new file mode 100644 index 0000000..ac07c5b --- /dev/null +++ b/DrawFigureLibrary/DrawFigureLibrary.csproj @@ -0,0 +1,10 @@ + + + + net9.0-windows + enable + true + enable + + + diff --git a/Main/App.xaml b/Main/App.xaml new file mode 100644 index 0000000..24107c8 --- /dev/null +++ b/Main/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/Main/App.xaml.cs b/Main/App.xaml.cs new file mode 100644 index 0000000..b326a12 --- /dev/null +++ b/Main/App.xaml.cs @@ -0,0 +1,14 @@ +using System.Configuration; +using System.Data; +using System.Windows; + +namespace Main +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } + +} diff --git a/Main/AssemblyInfo.cs b/Main/AssemblyInfo.cs new file mode 100644 index 0000000..b0ec827 --- /dev/null +++ b/Main/AssemblyInfo.cs @@ -0,0 +1,10 @@ +using System.Windows; + +[assembly: ThemeInfo( + ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located + //(used if a resource is not found in the page, + // or application resource dictionaries) + ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located + //(used if a resource is not found in the page, + // app, or any theme specific resource dictionaries) +)] diff --git a/Main/Main.csproj b/Main/Main.csproj new file mode 100644 index 0000000..18e94aa --- /dev/null +++ b/Main/Main.csproj @@ -0,0 +1,15 @@ + + + + WinExe + net9.0-windows + enable + enable + true + + + + + + +