Obfuscar 2.0.2-beta1

This is a prerelease version of Obfuscar.
dotnet add package Obfuscar --version 2.0.2-beta1
NuGet\Install-Package Obfuscar -Version 2.0.2-beta1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Obfuscar" Version="2.0.2-beta1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Obfuscar --version 2.0.2-beta1
#r "nuget: Obfuscar, 2.0.2-beta1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Obfuscar as a Cake Addin
#addin nuget:?package=Obfuscar&version=2.0.2-beta1&prerelease

// Install Obfuscar as a Cake Tool
#tool nuget:?package=Obfuscar&version=2.0.2-beta1&prerelease

Obfuscar is a basic obfuscator for .NET assemblies. It uses massive overloading to rename metadata in .NET assemblies (including the names of methods, properties, events, fields, types and namespaces) to a minimal set, distinguishable in most cases only by signature.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

GitHub repositories (2)

Showing the top 2 popular GitHub repositories that depend on Obfuscar:

Repository Stars
win4r/AISuperDomain
Aila(AI超元域): The premier AI integration tool for Windows, macOS, and Android. Ask once, get answers from 10+ AIs like ChatGPT, Gemini, Claude3, Copilot, Poe, perplexity and more. Features customizable AI and prompts.
lindexi/lindexi_gd
博客用到的代码
Version Downloads Last updated
2.0.2-beta1 205 4/17/2015
2.0.1 538 4/14/2015
2.0.0 382 3/1/2014

Version 2.0.2 Beta
* Fixed GitHub#47 F# compiler can now be obfuscated.

Version 2.0.1
* Fixed CodePlex#12 BAML reader error.
* Fixed CodePlex#13 Nested classes are obfuscated wrongly.
* Fixed CodePlex#17 PCL library wrongly refers to .NET 4 mscorlib.
* Fixed CodePlex#20 Environment variable support.
* Fixed CodePlex#24 MarkedOnly option does not always work.

Version 2.0.0
The changes since last commit on Google Code include,
* Merged all patches from RemObjects' fork.
** Unicode chars can be used as obfuscated names.
** Better dependency resolution.
** Various other small fixes.
* Merged patches from @AngryAnt (Emil Johansen)'s fork
** Korean chars can be used as obfuscated names.
** New tags are introduced (I could not yet verify every one, as there is no corresponding unit test cases).
* Add an option to automatic exclude of public types and members so that public API is kept.
* Add an option to automatic include all non-public types and members so that private API is obfuscated.
* Add Force* rules to supplement Skip* rules.
* Various bug fixes.