diff --git a/CHANGELOG.md b/CHANGELOG.md index a9f656d..5885c74 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] ### Changed - Improved methods for human formatted timespan, including without milliseconds. + - Removed Obfuscation ## [17.0.0] 2022-12-02 ### Changed diff --git a/ICD.Common.Utils/ICD.Common.Utils_NetStandard.csproj b/ICD.Common.Utils/ICD.Common.Utils_NetStandard.csproj index 9b3e067..f05a247 100644 --- a/ICD.Common.Utils/ICD.Common.Utils_NetStandard.csproj +++ b/ICD.Common.Utils/ICD.Common.Utils_NetStandard.csproj @@ -1,6 +1,5 @@  - Library netstandard2.0;net472 @@ -8,9 +7,6 @@ ICD.Common.Utils false true - MSBuild - Release - 2018.2 TRACE;DEBUG diff --git a/ICD.Common.Utils/ICD.Common.Utils_SimplSharp.csproj b/ICD.Common.Utils/ICD.Common.Utils_SimplSharp.csproj index 562e95b..aeab5d9 100644 --- a/ICD.Common.Utils/ICD.Common.Utils_SimplSharp.csproj +++ b/ICD.Common.Utils/ICD.Common.Utils_SimplSharp.csproj @@ -126,7 +126,6 @@ - @@ -262,8 +261,4 @@ - - if /I "$(ConfigurationName)" == "Release" Eazfuscator.NET.exe "$(TargetPath)" --msbuild-project-path "$(ProjectPath)" --msbuild-project-configuration "$(ConfigurationName)" --msbuild-project-platform "$(PlatformName)" --msbuild-solution-path "$(SolutionPath)" -n --newline-flush -v 5.2 --configuration-file="$(ProjectDir)ObfuscationSettings.cs" -rem S# Pro preparation will execute after these operations - \ No newline at end of file diff --git a/ICD.Common.Utils/ObfuscationSettings.cs b/ICD.Common.Utils/ObfuscationSettings.cs deleted file mode 100644 index a05d68f..0000000 --- a/ICD.Common.Utils/ObfuscationSettings.cs +++ /dev/null @@ -1,6 +0,0 @@ -using System.Reflection; - -[assembly: Obfuscation(Feature = "platform api: System.Threading.Thread, System.Reflection.*, System.IO.Stream, System.Windows.Forms.*", Exclude = true)] -[assembly: Obfuscation(Feature = "rename symbol names with printable characters", Exclude = false)] -[assembly: Obfuscation(Feature = "code control flow obfuscation", Exclude = false)] -[assembly: Obfuscation(Feature = "Apply to type * when class: renaming", Exclude = true, ApplyToMembers = false)]