diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..ee32bda --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,21 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Rider ignored files +/contentModel.xml +/.idea.HttpKeys.iml +/projectSettingsUpdater.xml +/modules.xml +# Ignored default folder with query files +/queries/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +# Editor-based HTTP Client requests +/httpRequests/ + + +bin/ +obj/ +.vs/ +.idea/ \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..df87cf9 --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/HttpKeys.sln b/HttpKeys.sln new file mode 100644 index 0000000..8ad03e9 --- /dev/null +++ b/HttpKeys.sln @@ -0,0 +1,16 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HttpKeys", "HttpKeys\HttpKeys.csproj", "{88DF988A-6151-423C-BF29-CF125A7E93D5}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {88DF988A-6151-423C-BF29-CF125A7E93D5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {88DF988A-6151-423C-BF29-CF125A7E93D5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {88DF988A-6151-423C-BF29-CF125A7E93D5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {88DF988A-6151-423C-BF29-CF125A7E93D5}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/HttpKeys/App.xaml b/HttpKeys/App.xaml new file mode 100644 index 0000000..470bb14 --- /dev/null +++ b/HttpKeys/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/HttpKeys/App.xaml.cs b/HttpKeys/App.xaml.cs new file mode 100644 index 0000000..a804fab --- /dev/null +++ b/HttpKeys/App.xaml.cs @@ -0,0 +1,13 @@ +using System.Configuration; +using System.Data; +using System.Windows; + +namespace HttpKeys; + +/// +/// Interaction logic for App.xaml +/// +public partial class App : Application +{ +} + diff --git a/HttpKeys/AssemblyInfo.cs b/HttpKeys/AssemblyInfo.cs new file mode 100644 index 0000000..cc29e7f --- /dev/null +++ b/HttpKeys/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/HttpKeys/HttpKeys.csproj b/HttpKeys/HttpKeys.csproj new file mode 100644 index 0000000..212659c --- /dev/null +++ b/HttpKeys/HttpKeys.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net10.0-windows + enable + enable + true + + + diff --git a/HttpKeys/MainWindow.xaml b/HttpKeys/MainWindow.xaml new file mode 100644 index 0000000..b9f82bb --- /dev/null +++ b/HttpKeys/MainWindow.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/HttpKeys/MainWindow.xaml.cs b/HttpKeys/MainWindow.xaml.cs new file mode 100644 index 0000000..0829d0d --- /dev/null +++ b/HttpKeys/MainWindow.xaml.cs @@ -0,0 +1,23 @@ +using System.Text; +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 HttpKeys; + +/// +/// Interaction logic for MainWindow.xaml +/// +public partial class MainWindow : Window +{ + public MainWindow() + { + InitializeComponent(); + } +} \ No newline at end of file