Dax.Vpax.Obfuscator 0.6.5-beta

This is a prerelease version of Dax.Vpax.Obfuscator.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Dax.Vpax.Obfuscator --version 0.6.5-beta
NuGet\Install-Package Dax.Vpax.Obfuscator -Version 0.6.5-beta
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="Dax.Vpax.Obfuscator" Version="0.6.5-beta" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Dax.Vpax.Obfuscator --version 0.6.5-beta
#r "nuget: Dax.Vpax.Obfuscator, 0.6.5-beta"
#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 Dax.Vpax.Obfuscator as a Cake Addin
#addin nuget:?package=Dax.Vpax.Obfuscator&version=0.6.5-beta&prerelease

// Install Dax.Vpax.Obfuscator as a Cake Tool
#tool nuget:?package=Dax.Vpax.Obfuscator&version=0.6.5-beta&prerelease

VertiPaq-Analyzer Obfuscator

VertiPaq Analyzer Obfuscator is an integration library for .NET, enabling the obfuscation of VertiPaq Analyzer files.

Installation

The library is available on NuGet. Just search for Dax.Vpax.Obfuscator in the Package Manager GUI or run the following command in the .NET CLI:

dotnet add package Dax.Vpax.Obfuscator

Usage

The library can be used in any .NET application built with net462, netcoreapp3.1, net5.0 or later.

Obfuscation

using var vpax = File.Open(@"C:\path\to\file.vpax", FileMode.Open);
var obfuscator = new VpaxObfuscator();
var dictionary = obfuscator.Obfuscate(vpax);
dictionary.WriteTo(@"C:\path\to\dictionary.json");

Deobfuscation

using var vpax = File.Open(@"C:\path\to\obfuscated.vpax", FileMode.Open);
var dictionary = ObfuscationDictionary.ReadFrom(@"C:\path\to\dictionary.json");
var obfuscator = new VpaxObfuscator();
obfuscator.Deobfuscate(vpax, dictionary);

CLI

A command-line interface is also available for the obfuscator. The CLI is available as a standalone executable, which can be downloaded from the releases page.

C:\> vpax-obfuscator.exe [command] [options]

For usage and help content for any command, pass in the -h parameter, for example:

C:\> vpax-obfuscator.exe obfuscate -h

Description:
  Obfuscate the DaxModel.json file and delete all other contents from a VPAX file.

Usage:
  vpax-obfuscator obfuscate [options]

Options:
  --vpax <vpax> (REQUIRED)                            Path to the unobfuscated VPAX file.
  --dictionary <dictionary>                           Path to the dictionary file to be used for incremental obfuscation. If not provided, a new dictionary will be created.
  --output-vpax <output-vpax> (REQUIRED)              Path to write the obfuscated VPAX file.
  --output-dictionary <output-dictionary> (REQUIRED)  Path to write the obfuscation dictionary file.
  --track-unobfuscated                                Specifies whether to include unobfuscated values in the output dictionary.
  --allow-overwrite                                   Allow output files to be overwritten. If not provided, the command will fail if an output file already exists.
  -?, -h, --help                                      Show help and usage information
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.1 is compatible. 
.NET Framework net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.5 262 4/1/2024
1.0.2 176 3/18/2024
1.0.1 106 3/15/2024
0.6.5-beta 64 3/15/2024
0.6.4-beta 69 3/14/2024
0.6.2-beta 94 3/14/2024
0.5.1-beta 74 3/10/2024
0.4.2-beta 63 3/5/2024
0.4.1-beta 78 3/4/2024
0.3.4-beta 84 3/2/2024
0.3.3-beta 137 2/23/2024
0.2.2-beta 52 2/22/2024
0.2.1-beta 65 2/16/2024
0.1.3-beta 71 2/13/2024
0.1.1-beta 81 2/13/2024