From 9a1eed7f80a5c4486b1464de34ae39e537a3b078 Mon Sep 17 00:00:00 2001 From: Samuele Lorefice Date: Tue, 31 Dec 2024 02:00:55 +0100 Subject: [PATCH] BaseFiles --- .gitignore | 5 +++++ .idea/.idea.WaifuCellar/.idea/.gitignore | 13 +++++++++++++ .idea/.idea.WaifuCellar/.idea/indexLayout.xml | 8 ++++++++ .idea/.idea.WaifuCellar/.idea/vcs.xml | 6 ++++++ WaifuCellar.csproj | 10 ++++++++++ WaifuCellar.sln | 16 ++++++++++++++++ 6 files changed, 58 insertions(+) create mode 100644 .gitignore create mode 100644 .idea/.idea.WaifuCellar/.idea/.gitignore create mode 100644 .idea/.idea.WaifuCellar/.idea/indexLayout.xml create mode 100644 .idea/.idea.WaifuCellar/.idea/vcs.xml create mode 100644 WaifuCellar.csproj create mode 100644 WaifuCellar.sln diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..add57be --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +bin/ +obj/ +/packages/ +riderModule.iml +/_ReSharper.Caches/ \ No newline at end of file diff --git a/.idea/.idea.WaifuCellar/.idea/.gitignore b/.idea/.idea.WaifuCellar/.idea/.gitignore new file mode 100644 index 0000000..8241457 --- /dev/null +++ b/.idea/.idea.WaifuCellar/.idea/.gitignore @@ -0,0 +1,13 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Rider ignored files +/modules.xml +/contentModel.xml +/.idea.WaifuCellar.iml +/projectSettingsUpdater.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/.idea.WaifuCellar/.idea/indexLayout.xml b/.idea/.idea.WaifuCellar/.idea/indexLayout.xml new file mode 100644 index 0000000..7b08163 --- /dev/null +++ b/.idea/.idea.WaifuCellar/.idea/indexLayout.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.WaifuCellar/.idea/vcs.xml b/.idea/.idea.WaifuCellar/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/.idea.WaifuCellar/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/WaifuCellar.csproj b/WaifuCellar.csproj new file mode 100644 index 0000000..e0439ac --- /dev/null +++ b/WaifuCellar.csproj @@ -0,0 +1,10 @@ + + + + net9.0 + latest + enable + enable + + + diff --git a/WaifuCellar.sln b/WaifuCellar.sln new file mode 100644 index 0000000..80d0ff6 --- /dev/null +++ b/WaifuCellar.sln @@ -0,0 +1,16 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WaifuCellar", "WaifuCellar.csproj", "{0F19353E-7F8E-4F9A-9EBE-55F057549727}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {0F19353E-7F8E-4F9A-9EBE-55F057549727}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {0F19353E-7F8E-4F9A-9EBE-55F057549727}.Debug|Any CPU.Build.0 = Debug|Any CPU + {0F19353E-7F8E-4F9A-9EBE-55F057549727}.Release|Any CPU.ActiveCfg = Release|Any CPU + {0F19353E-7F8E-4F9A-9EBE-55F057549727}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal