From 9726072211d118262b2e95bdfcf5d1d0c0848d8c Mon Sep 17 00:00:00 2001 From: Stedd Date: Thu, 29 Jul 2021 13:13:10 +0200 Subject: [PATCH] Add project files. --- App.xaml | 9 +++++++++ App.xaml.cs | 17 +++++++++++++++++ AssemblyInfo.cs | 10 ++++++++++ CryptoCalc.csproj | 9 +++++++++ CryptoCalc.sln | 25 +++++++++++++++++++++++++ MainWindow.xaml | 12 ++++++++++++ MainWindow.xaml.cs | 28 ++++++++++++++++++++++++++++ 7 files changed, 110 insertions(+) create mode 100644 App.xaml create mode 100644 App.xaml.cs create mode 100644 AssemblyInfo.cs create mode 100644 CryptoCalc.csproj create mode 100644 CryptoCalc.sln create mode 100644 MainWindow.xaml create mode 100644 MainWindow.xaml.cs diff --git a/App.xaml b/App.xaml new file mode 100644 index 0000000..0438e9c --- /dev/null +++ b/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/App.xaml.cs b/App.xaml.cs new file mode 100644 index 0000000..f3dcbf3 --- /dev/null +++ b/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 CryptoCalc +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/AssemblyInfo.cs b/AssemblyInfo.cs new file mode 100644 index 0000000..8b5504e --- /dev/null +++ b/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/CryptoCalc.csproj b/CryptoCalc.csproj new file mode 100644 index 0000000..407932c --- /dev/null +++ b/CryptoCalc.csproj @@ -0,0 +1,9 @@ + + + + WinExe + net5.0-windows + true + + + diff --git a/CryptoCalc.sln b/CryptoCalc.sln new file mode 100644 index 0000000..7202f7b --- /dev/null +++ b/CryptoCalc.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.31515.178 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CryptoCalc", "CryptoCalc.csproj", "{E83CB079-DF59-452D-9FA3-F5736553DC07}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {E83CB079-DF59-452D-9FA3-F5736553DC07}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E83CB079-DF59-452D-9FA3-F5736553DC07}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E83CB079-DF59-452D-9FA3-F5736553DC07}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E83CB079-DF59-452D-9FA3-F5736553DC07}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {47C8A123-ED3F-4C98-A9B2-D3039FD03D8E} + EndGlobalSection +EndGlobal diff --git a/MainWindow.xaml b/MainWindow.xaml new file mode 100644 index 0000000..49ac95b --- /dev/null +++ b/MainWindow.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/MainWindow.xaml.cs b/MainWindow.xaml.cs new file mode 100644 index 0000000..240cce0 --- /dev/null +++ b/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 CryptoCalc +{ + /// + /// Interaction logic for MainWindow.xaml + /// + public partial class MainWindow : Window + { + public MainWindow() + { + InitializeComponent(); + } + } +}