From d034bac8577d26f4955f11fe5ee7d49050782a4a Mon Sep 17 00:00:00 2001 From: Nathan McRae Date: Wed, 14 Feb 2024 14:30:49 -0800 Subject: [PATCH] Add default namespaces --- SaneTsv.cs | 2 -- SaneTsv.csproj | 5 +++-- SaneTsvTest/SaneTsvTest.csproj | 3 ++- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/SaneTsv.cs b/SaneTsv.cs index 93e7c45..76d8cf2 100644 --- a/SaneTsv.cs +++ b/SaneTsv.cs @@ -26,8 +26,6 @@ public class SaneTsv public Dictionary> Columns { get; protected set; } public List Records { get; protected set; } - // TODO: Parse with specified columns / types - public static SaneTsv Parse(byte[] inputBuffer) { var parsed = new SaneTsv(); diff --git a/SaneTsv.csproj b/SaneTsv.csproj index 9e1cda3..fbf1f20 100644 --- a/SaneTsv.csproj +++ b/SaneTsv.csproj @@ -1,11 +1,12 @@ - + net6.0 enable disable false - false + false + NathanMcRae diff --git a/SaneTsvTest/SaneTsvTest.csproj b/SaneTsvTest/SaneTsvTest.csproj index d08a6f4..94b7930 100644 --- a/SaneTsvTest/SaneTsvTest.csproj +++ b/SaneTsvTest/SaneTsvTest.csproj @@ -1,10 +1,11 @@ - + Exe net6.0 enable enable + NathanMcRae