From 84a7cec1bc5f962deafdbb8286a6f37f72bb3f13 Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Sat, 4 May 2024 12:45:42 +0200 Subject: [PATCH] Initial --- .gitignore | 178 ++++++++++++++++++ .../.idea.CSV Metrics Logger/.idea/.gitignore | 13 ++ .idea/.idea.CSV Metrics Logger/.idea/.name | 1 + .../.idea/encodings.xml | 4 + .../.idea/indexLayout.xml | 8 + .idea/.idea.CSV Metrics Logger/.idea/vcs.xml | 6 + CSV Metrics Logger.sln | 16 ++ CSV Metrics Logger/CSV Metrics Logger.csproj | 12 ++ 8 files changed, 238 insertions(+) create mode 100644 .gitignore create mode 100644 .idea/.idea.CSV Metrics Logger/.idea/.gitignore create mode 100644 .idea/.idea.CSV Metrics Logger/.idea/.name create mode 100644 .idea/.idea.CSV Metrics Logger/.idea/encodings.xml create mode 100644 .idea/.idea.CSV Metrics Logger/.idea/indexLayout.xml create mode 100644 .idea/.idea.CSV Metrics Logger/.idea/vcs.xml create mode 100644 CSV Metrics Logger.sln create mode 100644 CSV Metrics Logger/CSV Metrics Logger.csproj diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5857325 --- /dev/null +++ b/.gitignore @@ -0,0 +1,178 @@ +### JetBrains template +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 + +# User-specific stuff +.idea/**/workspace.xml +.idea/**/tasks.xml +.idea/**/usage.statistics.xml +.idea/**/dictionaries +.idea/**/shelf + +# Generated files +.idea/**/contentModel.xml + +# Sensitive or high-churn files +.idea/**/dataSources/ +.idea/**/dataSources.ids +.idea/**/dataSources.local.xml +.idea/**/sqlDataSources.xml +.idea/**/dynamic.xml +.idea/**/uiDesigner.xml +.idea/**/dbnavigator.xml + +# Editor-based Rest Client +.idea/httpRequests + +### DotnetCore template +# .NET Core build folders +bin/ +obj/ + +### Csharp template +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. +## +## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore + +# User-specific files +*.rsuser +*.suo +*.user +*.userosscache +*.sln.docstates + +# User-specific files (MonoDevelop/Xamarin Studio) +*.userprefs + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +[Ww][Ii][Nn]32/ +[Aa][Rr][Mm]/ +[Aa][Rr][Mm]64/ +bld/ +[Bb]in/ +[Oo]bj/ +[Ll]og/ +[Ll]ogs/ + +# Visual Studio 2015/2017 cache/options directory +.vs/ +# Uncomment if you have tasks that create the project's static files in wwwroot +#wwwroot/ + +# Visual Studio 2017 auto generated files +Generated\ Files/ + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +# NUnit +*.VisualState.xml +TestResult.xml +nunit-*.xml + +# Benchmark Results +BenchmarkDotNet.Artifacts/ + +# .NET Core +project.lock.json +project.fragment.lock.json +artifacts/ + +# ASP.NET Scaffolding +ScaffoldingReadMe.txt + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper +*.DotSettings.user + +# DotCover is a Code Coverage Tool +*.dotCover + +# Click-Once directory +publish/ + +# NuGet Packages +*.nupkg +# NuGet Symbol Packages +*.snupkg +# The packages folder can be ignored because of Package Restore +**/[Pp]ackages/* +# except build/, which is used as an MSBuild target. +!**/[Pp]ackages/build/ +# Uncomment if necessary however generally it will be regenerated when needed +#!**/[Pp]ackages/repositories.config +# NuGet v3's project.json files produces more ignorable files +*.nuget.props +*.nuget.targets + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!?*.[Cc]ache/ + +# Others +ClientBin/ +~$* +*~ +*.dbmdl +*.dbproj.schemaview +*.jfm +*.pfx +*.publishsettings +orleans.codegen.cs + +# VS Code files for those working on multiple tools +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +*.code-workspace + +# Local History for Visual Studio Code +.history/ + +# Windows Installer files from build outputs +*.cab +*.msi +*.msix +*.msm +*.msp + +# JetBrains Rider +*.sln.iml + +### macOS template +# General +.DS_Store +.AppleDouble +.LSOverride + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk \ No newline at end of file diff --git a/.idea/.idea.CSV Metrics Logger/.idea/.gitignore b/.idea/.idea.CSV Metrics Logger/.idea/.gitignore new file mode 100644 index 0000000..c8b67a1 --- /dev/null +++ b/.idea/.idea.CSV Metrics Logger/.idea/.gitignore @@ -0,0 +1,13 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Rider ignored files +/.idea.CSV Metrics Logger.iml +/projectSettingsUpdater.xml +/modules.xml +/contentModel.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/.idea.CSV Metrics Logger/.idea/.name b/.idea/.idea.CSV Metrics Logger/.idea/.name new file mode 100644 index 0000000..2b13ebd --- /dev/null +++ b/.idea/.idea.CSV Metrics Logger/.idea/.name @@ -0,0 +1 @@ +CSV Metrics Logger \ No newline at end of file diff --git a/.idea/.idea.CSV Metrics Logger/.idea/encodings.xml b/.idea/.idea.CSV Metrics Logger/.idea/encodings.xml new file mode 100644 index 0000000..df87cf9 --- /dev/null +++ b/.idea/.idea.CSV Metrics Logger/.idea/encodings.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/.idea.CSV Metrics Logger/.idea/indexLayout.xml b/.idea/.idea.CSV Metrics Logger/.idea/indexLayout.xml new file mode 100644 index 0000000..7b08163 --- /dev/null +++ b/.idea/.idea.CSV Metrics Logger/.idea/indexLayout.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.CSV Metrics Logger/.idea/vcs.xml b/.idea/.idea.CSV Metrics Logger/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/.idea.CSV Metrics Logger/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/CSV Metrics Logger.sln b/CSV Metrics Logger.sln new file mode 100644 index 0000000..7cbdcd0 --- /dev/null +++ b/CSV Metrics Logger.sln @@ -0,0 +1,16 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CSV Metrics Logger", "CSV Metrics Logger\CSV Metrics Logger.csproj", "{BFFEE7AC-0227-4FCA-BBE7-4F6E23CD5CD7}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {BFFEE7AC-0227-4FCA-BBE7-4F6E23CD5CD7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {BFFEE7AC-0227-4FCA-BBE7-4F6E23CD5CD7}.Debug|Any CPU.Build.0 = Debug|Any CPU + {BFFEE7AC-0227-4FCA-BBE7-4F6E23CD5CD7}.Release|Any CPU.ActiveCfg = Release|Any CPU + {BFFEE7AC-0227-4FCA-BBE7-4F6E23CD5CD7}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/CSV Metrics Logger/CSV Metrics Logger.csproj b/CSV Metrics Logger/CSV Metrics Logger.csproj new file mode 100644 index 0000000..ed5bd50 --- /dev/null +++ b/CSV Metrics Logger/CSV Metrics Logger.csproj @@ -0,0 +1,12 @@ + + + + net8.0 + CSV_Metrics_Logger + latest + enable + enable + CS8600;CS8602;CS8603 + + +