Skip to content

Commit 9233f5e

Browse files
committed
Updated readme and about
1 parent 491c1f8 commit 9233f5e

File tree

4 files changed

+46
-26
lines changed

4 files changed

+46
-26
lines changed

ConfuserEx/Views/AboutTabView.xaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@
3939

4040
<StackPanel TextBlock.FontSize="13" VerticalAlignment="Center" HorizontalAlignment="Stretch">
4141
<Label FontWeight="Bold">ConfuserEx, a .NET protector</Label>
42-
<Label>Developed by Ki, open sourced under MIT license.</Label>
42+
<Label>Developed by Martin Karing, open sourced under MIT license.</Label>
4343
<Label>
4444
<TextBlock>
45-
<Hyperlink NavigateUri="http://yck1509.github.io/ConfuserEx/"
45+
<Hyperlink NavigateUri="https://github.com/mkaring/ConfuserEx"
4646
Command="{Binding LaunchBrowser}"
47-
CommandParameter="http://yck1509.github.io/ConfuserEx/">
47+
CommandParameter="https://github.com/mkaring/ConfuserEx">
4848
Visit the project page for details.
4949
</Hyperlink>
5050
</TextBlock>
@@ -54,9 +54,9 @@
5454
<Label>If you like it or find it useful,</Label>
5555
<Label>
5656
<TextBlock>
57-
<Hyperlink NavigateUri="http://yck1509.github.io/ConfuserEx/#donation"
57+
<Hyperlink NavigateUri="https://github.com/mkaring/ConfuserEx/#donation"
5858
Command="{Binding LaunchBrowser}"
59-
CommandParameter="http://yck1509.github.io/ConfuserEx/#donation">
59+
CommandParameter="https://github.com/mkaring/ConfuserEx/#donation">
6060
feel free to support the project by making a donation!
6161
</Hyperlink>
6262
</TextBlock>
@@ -77,7 +77,7 @@
7777
<StackPanel Grid.Column="1" Grid.RowSpan="3" TextBlock.FontSize="13" Margin="10"
7878
VerticalAlignment="Stretch" HorizontalAlignment="Center">
7979
<Label HorizontalContentAlignment="Center">Special Thanks to:</Label>
80-
<Label HorizontalContentAlignment="Center">0xd4d</Label>
80+
<Label HorizontalContentAlignment="Center">yck1509</Label>
8181
<Label HorizontalContentAlignment="Center">CodeCracker</Label>
8282
<Label HorizontalContentAlignment="Center">JeRRy</Label>
8383
<Label HorizontalContentAlignment="Center">kao</Label>
@@ -89,4 +89,4 @@
8989
</StackPanel>
9090
</Grid>
9191
</DataTemplate>
92-
</ResourceDictionary>
92+
</ResourceDictionary>

Directory.Build.props

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@
77
</PropertyGroup>
88

99
<PropertyGroup Label="Assembly Information" Condition="$(MSBuildProjectFile.StartsWith('Confuser'))">
10-
<Authors>Ki;Martin Karing</Authors>
11-
<Copyright>Copyright © 2014 Ki, 2018 Martin Karing</Copyright>
10+
<_CurrentYear>$([System.DateTime]::Now.ToString(yyyy))</_CurrentYear>
11+
<Authors>Martin Karing</Authors>
12+
<Copyright>Copyright © 2018 - $(_CurrentYear) Martin Karing</Copyright>
1213
<RepositoryUrl>https://github.com/mkaring/ConfuserEx.git</RepositoryUrl>
1314
<RepositoryType>git</RepositoryType>
1415
<SignAssembly>true</SignAssembly>

GlobalAssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using System.Reflection;
22

3-
[assembly: AssemblyProduct("ConfuserEx")]
4-
[assembly: AssemblyCompany("Ki")]
5-
[assembly: AssemblyCopyright("Copyright (C) Ki 2014")]
3+
[assembly: AssemblyProduct("ConfuserEx 2")]
4+
[assembly: AssemblyCompany("Martin Karing")]
5+
[assembly: AssemblyCopyright("Copyright © 2018 - 2019 Martin Karing")]
66

77
#if DEBUG
88

README.md

Lines changed: 33 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,35 @@
11
# ConfuserEx 2
22

33
[![Build status](https://ci.appveyor.com/api/projects/status/so65dx6p7gq3f14l/branch/release/2.0?svg=true)](https://ci.appveyor.com/project/mkaring/confuserex/branch/release/2.0)
4+
[![CodeFactor](https://www.codefactor.io/repository/github/mkaring/confuserex/badge/release/2.0)](https://www.codefactor.io/repository/github/mkaring/confuserex/overview/release/2.0)
45

5-
ConfuserEx is a open-source protector for .NET applications.
6+
ConfuserEx 2 is a open-source protector for .NET applications.
67
It is the successor of [Confuser](http://confuser.codeplex.com) project and the [ConfuserEx](https://yck1509.github.io/ConfuserEx/) project.
78

89
The development is currently in alpha stage. While the features of the original ConfuserEx are implementedand working,
9-
the features that are part of the new version 2.0 are still in development and may be yield the desired results.
10+
the features that are part of the new version 2.0 are still in development and may not yield the desired results.
1011

1112
## Features
1213

13-
* Supports .NET Framework 2.0/3.0/3.5/4.0/4.5/4.6/4.7
14-
* Symbol renaming (Support WPF/BAML)
15-
* Protection against debuggers/profilers
16-
* Protection against memory dumping
17-
* Protection against tampering (method encryption)
18-
* Control flow obfuscation
19-
* _Type Scrambling using Generics (current not working in case generic classes are present in the protected assembly.)_
20-
* Constant/resources encryption
21-
* Reference hiding proxies
22-
* Disable decompilers
23-
* Embedding dependency
24-
* Compressing output
14+
* Supported runtimes:
15+
* .NET Framework 2.0 - 4.7.2
16+
* .NET Standard 1.0 - 2.0
17+
* .NET Core 1.0 - 2.2
18+
* Protections
19+
* Symbol renaming (Support WPF/BAML)
20+
* Protection against debuggers/profilers
21+
* Protection against memory dumping
22+
* Protection against tampering (method encryption)
23+
* Control flow obfuscation
24+
* Constant/resources encryption
25+
* Reference hiding proxies
26+
* Disable decompilers
27+
* Optimizations
28+
* Compiling regular expressions
29+
* Optimizing tail calls and tail recursions
30+
* Deployment
31+
* Embedding dependency
32+
* Compressing output
2533
* Extensible plugin API based on the [Managed Extensibility Framework (MEF)](https://docs.microsoft.com/dotnet/framework/mef/ "Managed Extensibility Framework (MEF) | Microsoft Docs")
2634
* MSBuild Integration
2735

@@ -53,13 +61,24 @@ or it has to be self-hosted.
5361

5462

5563
# Bug Report
64+
5665
See the [Issues Report](https://github.com/mkaring/ConfuserEx/issues) section of website.
5766

67+
# Supporting ConfuserEx 2
68+
69+
I gladly accept pull-request for bugs and new additions to ConfuserEx. If you noticed any problem or have and idea how
70+
to improve ConfuserEx 2, do not hesitate to add those ideas as feature requests to the
71+
[Issues](https://github.com/mkaring/ConfuserEx/issues) section.
5872

5973
# License
6074

6175
Licensed under the MIT license. See [LICENSE.md](LICENSE.md) for details.
6276

77+
# Donation
78+
79+
If you find ConfuserEx 2 helpful and want to donate to support my work on the project you can support me on
80+
[liberapay](https://liberapay.com/mkaring/) or you can [buy me a coffee](http://buymeacoff.ee/fFUnXMCdW) :coffee:.
81+
6382
# Credits
6483

6584
**[Ki (yck1509)](https://github.com/yck1509)** for the original ConfuserEx.

0 commit comments

Comments
 (0)