small changes

This commit is contained in:
2022-09-26 17:16:40 +06:00
parent 1c9d44d15e
commit 076affd1e4
6 changed files with 25 additions and 9 deletions

View File

@@ -10,8 +10,9 @@
</PropertyGroup>
<ItemGroup>
<Compile Remove="Ben.Demystifier\**"/>
<Compile Remove="Ben.Demystifier\**" />
<None Remove="Ben.Demystifier\**" />
<ProjectReference Include="..\DTLib\DTLib.csproj" />
<ProjectReference Include="Ben.Demystifier\src\Ben.Demystifier\Ben.Demystifier.csproj" />
<ProjectReference Include="Ben.Demystifier\src\Ben.Demystifier\Ben.Demystifier.csproj" />
</ItemGroup>
</Project>

View File

@@ -1,10 +1,14 @@
global using DTLib;
global using DTLib.Extensions;
global using System;
using Ben.Demystifier;
namespace DTLib.Exceptions;
public static class MyExceptions
public static class MyExceptionHelper
{
public static string ExToString(Exception ex)
{
return ex.ToStringDemystified();
}
}