From a0d2cb92bfa807cc59b9ff8253b2c6e4e5bd7de4 Mon Sep 17 00:00:00 2001 From: glax Date: Wed, 17 May 2023 22:13:15 +0200 Subject: [PATCH] initial commit --- .gitignore | 19 +++++++++++++++++++ Class1.cs | 5 +++++ Tranga.csproj | 9 +++++++++ Tranga.sln | 16 ++++++++++++++++ 4 files changed, 49 insertions(+) create mode 100644 .gitignore create mode 100644 Class1.cs create mode 100644 Tranga.csproj create mode 100644 Tranga.sln diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..540a502 --- /dev/null +++ b/.gitignore @@ -0,0 +1,19 @@ +bin/ +obj/ +/packages/ +riderModule.iml +/_ReSharper.Caches/ +# Default ignored files +/shelf/ +/workspace.xml +# Rider ignored files +/projectSettingsUpdater.xml +/.idea.Tranga.iml +/contentModel.xml +/modules.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +/.idea \ No newline at end of file diff --git a/Class1.cs b/Class1.cs new file mode 100644 index 0000000..c4c30b0 --- /dev/null +++ b/Class1.cs @@ -0,0 +1,5 @@ +namespace Tranga; + +public class Class1 +{ +} \ No newline at end of file diff --git a/Tranga.csproj b/Tranga.csproj new file mode 100644 index 0000000..6836c68 --- /dev/null +++ b/Tranga.csproj @@ -0,0 +1,9 @@ + + + + net7.0 + enable + enable + + + diff --git a/Tranga.sln b/Tranga.sln new file mode 100644 index 0000000..7bd9c5d --- /dev/null +++ b/Tranga.sln @@ -0,0 +1,16 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tranga", "Tranga.csproj", "{545E81B9-D96B-4C8F-A97F-2C02414DE566}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {545E81B9-D96B-4C8F-A97F-2C02414DE566}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {545E81B9-D96B-4C8F-A97F-2C02414DE566}.Debug|Any CPU.Build.0 = Debug|Any CPU + {545E81B9-D96B-4C8F-A97F-2C02414DE566}.Release|Any CPU.ActiveCfg = Release|Any CPU + {545E81B9-D96B-4C8F-A97F-2C02414DE566}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal