From 8fb9137d403577d5b72ddf88d0f6b7fc5bb57883 Mon Sep 17 00:00:00 2001 From: timerix Date: Sun, 25 Sep 2022 23:07:57 +0600 Subject: [PATCH] DTLib.Exceptions --- .gitmodules | 3 +++ DTLib.Exceptions/Ben.Demystifier | 1 + DTLib.Exceptions/DTLib.Exceptions.csproj | 16 ++++++++++++++++ DTLib.Exceptions/MyExceptions.cs | 10 ++++++++++ 4 files changed, 30 insertions(+) create mode 160000 DTLib.Exceptions/Ben.Demystifier create mode 100644 DTLib.Exceptions/DTLib.Exceptions.csproj create mode 100644 DTLib.Exceptions/MyExceptions.cs diff --git a/.gitmodules b/.gitmodules index 5ae58c5..bf76266 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,6 @@ [submodule "kerep"] path = kerep url = https://github.com/Timerix22/kerep.git +[submodule "DTLib.Exceptions/Ben.Demystifier"] + path = DTLib.Exceptions/Ben.Demystifier + url = https://github.com/Timerix22/Ben.Demystifier diff --git a/DTLib.Exceptions/Ben.Demystifier b/DTLib.Exceptions/Ben.Demystifier new file mode 160000 index 0000000..8db9365 --- /dev/null +++ b/DTLib.Exceptions/Ben.Demystifier @@ -0,0 +1 @@ +Subproject commit 8db93654c2869d3bc5ddb1462682f421c99a056b diff --git a/DTLib.Exceptions/DTLib.Exceptions.csproj b/DTLib.Exceptions/DTLib.Exceptions.csproj new file mode 100644 index 0000000..778d3d2 --- /dev/null +++ b/DTLib.Exceptions/DTLib.Exceptions.csproj @@ -0,0 +1,16 @@ + + + net6.0 + disable + disable + portable + False + Debug;Release + AnyCPU;x64;x86;arm64 + + + + + + + diff --git a/DTLib.Exceptions/MyExceptions.cs b/DTLib.Exceptions/MyExceptions.cs new file mode 100644 index 0000000..c00cf72 --- /dev/null +++ b/DTLib.Exceptions/MyExceptions.cs @@ -0,0 +1,10 @@ +global using DTLib; +global using DTLib.Extensions; +using System.Diagnostics; + +namespace DTLib.Exceptions; + +public static class MyExceptions +{ + +}