forked from zhongleiyang/obfuscar-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Obfuscar.nuspec
41 lines (40 loc) · 2.1 KB
/
Obfuscar.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
<metadata>
<version>2.0.1-beta3</version>
<authors>Ryan Williams, and other contributors.</authors>
<owners>Lex Li</owners>
<licenseUrl>https://obfuscar.codeplex.com/license</licenseUrl>
<projectUrl>https://obfuscar.codeplex.com</projectUrl>
<id>Obfuscar</id>
<title>Obfuscar</title>
<iconUrl>http://lextudio.com/images/obfuscar32.png</iconUrl>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<description>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.</description>
<summary>Open source obfuscar for .NET and Mono.</summary>
<releaseNotes>Version 2.0.1 Beta
* 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.
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.</releaseNotes>
<copyright>(C) 2007-2014 Ryan Williams and other contributors.</copyright>
<language>en-US</language>
<tags>obfuscation,obfuscator,open source</tags>
</metadata>
<files>
<file src="bin\release\obfuscar.console.exe" target="tools" />
</files>
</package>