DTLib.Exceptions

This commit is contained in:
timerix 2022-09-25 23:07:57 +06:00
parent 762d53af19
commit 8fb9137d40
4 changed files with 30 additions and 0 deletions

3
.gitmodules vendored
View File

@ -1,3 +1,6 @@
[submodule "kerep"] [submodule "kerep"]
path = kerep path = kerep
url = https://github.com/Timerix22/kerep.git url = https://github.com/Timerix22/kerep.git
[submodule "DTLib.Exceptions/Ben.Demystifier"]
path = DTLib.Exceptions/Ben.Demystifier
url = https://github.com/Timerix22/Ben.Demystifier

@ -0,0 +1 @@
Subproject commit 8db93654c2869d3bc5ddb1462682f421c99a056b

View File

@ -0,0 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
<DebugType>portable</DebugType>
<ProduceReferenceAssembly>False</ProduceReferenceAssembly>
<Configurations>Debug;Release</Configurations>
<Platforms>AnyCPU;x64;x86;arm64</Platforms>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\DTLib\DTLib.csproj" />
<ProjectReference Include="Ben.Demystifier\src\Ben.Demystifier\Ben.Demystifier.csproj" />
</ItemGroup>
</Project>

View File

@ -0,0 +1,10 @@
global using DTLib;
global using DTLib.Extensions;
using System.Diagnostics;
namespace DTLib.Exceptions;
public static class MyExceptions
{
}