Skip to content

Commit dce219e

Browse files
authored
Add files via upload
supported eazfuscator v2020.4
1 parent 15684da commit dce219e

15 files changed

+773
-0
lines changed

App.config

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" />
5+
</startup>
6+
</configuration>

App.xaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<Application x:Class="ETR.App"
2+
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
3+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
4+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
5+
xmlns:local="clr-namespace:ETR"
6+
StartupUri="MainWindow.xaml">
7+
<Application.Resources>
8+
<ResourceDictionary>
9+
<ResourceDictionary.MergedDictionaries>
10+
<materialDesign:BundledTheme BaseTheme="Light" PrimaryColor="DeepPurple" SecondaryColor="Lime" />
11+
<ResourceDictionary Source="pack://application:,,,/MaterialDesignThemes.Wpf;component/Themes/MaterialDesignTheme.Defaults.xaml" />
12+
</ResourceDictionary.MergedDictionaries>
13+
</ResourceDictionary>
14+
</Application.Resources>
15+
</Application>

App.xaml.cs

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Configuration;
4+
using System.Data;
5+
using System.Linq;
6+
using System.Threading.Tasks;
7+
using System.Windows;
8+
9+
namespace ETR
10+
{
11+
/// <summary>
12+
/// Interaction logic for App.xaml
13+
/// </summary>
14+
public partial class App : Application
15+
{
16+
}
17+
}

ETR.csproj

Lines changed: 129 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,129 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>{4BE12F3F-44E1-4520-8B26-A4CD60DA588C}</ProjectGuid>
8+
<OutputType>WinExe</OutputType>
9+
<RootNamespace>ETR</RootNamespace>
10+
<AssemblyName>ETR</AssemblyName>
11+
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
12+
<FileAlignment>512</FileAlignment>
13+
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
14+
<WarningLevel>4</WarningLevel>
15+
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
16+
<Deterministic>true</Deterministic>
17+
<NuGetPackageImportStamp></NuGetPackageImportStamp>
18+
<RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent>
19+
</PropertyGroup>
20+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
21+
<PlatformTarget>AnyCPU</PlatformTarget>
22+
<DebugSymbols>true</DebugSymbols>
23+
<DebugType>full</DebugType>
24+
<Optimize>false</Optimize>
25+
<OutputPath>bin\Debug\</OutputPath>
26+
<DefineConstants>DEBUG;TRACE</DefineConstants>
27+
<ErrorReport>prompt</ErrorReport>
28+
<WarningLevel>4</WarningLevel>
29+
</PropertyGroup>
30+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
31+
<PlatformTarget>AnyCPU</PlatformTarget>
32+
<DebugType>pdbonly</DebugType>
33+
<Optimize>true</Optimize>
34+
<OutputPath>bin\Release\</OutputPath>
35+
<DefineConstants>TRACE</DefineConstants>
36+
<ErrorReport>prompt</ErrorReport>
37+
<WarningLevel>4</WarningLevel>
38+
</PropertyGroup>
39+
<PropertyGroup>
40+
<ApplicationIcon>facebook_post_940x788_px_dqM_icon.ico</ApplicationIcon>
41+
</PropertyGroup>
42+
<ItemGroup>
43+
<Reference Include="dnlib">
44+
<HintPath>..\EazFixer-master\EazFixer\bin\Release\net472\dnlib.dll</HintPath>
45+
</Reference>
46+
<Reference Include="MaterialDesignColors, Version=1.2.7.1979, Culture=neutral, PublicKeyToken=df2a72020bd7962a, processorArchitecture=MSIL">
47+
<HintPath>packages\MaterialDesignColors.1.2.7\lib\net45\MaterialDesignColors.dll</HintPath>
48+
</Reference>
49+
<Reference Include="MaterialDesignThemes.Wpf, Version=3.2.0.1979, Culture=neutral, PublicKeyToken=df2a72020bd7962a, processorArchitecture=MSIL">
50+
<HintPath>packages\MaterialDesignThemes.3.2.0\lib\net45\MaterialDesignThemes.Wpf.dll</HintPath>
51+
</Reference>
52+
<Reference Include="System" />
53+
<Reference Include="System.Data" />
54+
<Reference Include="System.Xml" />
55+
<Reference Include="Microsoft.CSharp" />
56+
<Reference Include="System.Core" />
57+
<Reference Include="System.Xml.Linq" />
58+
<Reference Include="System.Data.DataSetExtensions" />
59+
<Reference Include="System.Net.Http" />
60+
<Reference Include="System.Xaml">
61+
<RequiredTargetFramework>4.0</RequiredTargetFramework>
62+
</Reference>
63+
<Reference Include="WindowsBase" />
64+
<Reference Include="PresentationCore" />
65+
<Reference Include="PresentationFramework" />
66+
</ItemGroup>
67+
<ItemGroup>
68+
<ApplicationDefinition Include="App.xaml">
69+
<Generator>MSBuild:Compile</Generator>
70+
<SubType>Designer</SubType>
71+
</ApplicationDefinition>
72+
<Page Include="MainWindow.xaml">
73+
<Generator>MSBuild:Compile</Generator>
74+
<SubType>Designer</SubType>
75+
</Page>
76+
<Compile Include="App.xaml.cs">
77+
<DependentUpon>App.xaml</DependentUpon>
78+
<SubType>Code</SubType>
79+
</Compile>
80+
<Compile Include="MainWindow.xaml.cs">
81+
<DependentUpon>MainWindow.xaml</DependentUpon>
82+
<SubType>Code</SubType>
83+
</Compile>
84+
</ItemGroup>
85+
<ItemGroup>
86+
<Compile Include="Properties\AssemblyInfo.cs">
87+
<SubType>Code</SubType>
88+
</Compile>
89+
<Compile Include="Properties\Resources.Designer.cs">
90+
<AutoGen>True</AutoGen>
91+
<DesignTime>True</DesignTime>
92+
<DependentUpon>Resources.resx</DependentUpon>
93+
</Compile>
94+
<Compile Include="Properties\Settings.Designer.cs">
95+
<AutoGen>True</AutoGen>
96+
<DependentUpon>Settings.settings</DependentUpon>
97+
<DesignTimeSharedInput>True</DesignTimeSharedInput>
98+
</Compile>
99+
<EmbeddedResource Include="Properties\Resources.resx">
100+
<Generator>ResXFileCodeGenerator</Generator>
101+
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
102+
</EmbeddedResource>
103+
<None Include="packages.config" />
104+
<None Include="Properties\Settings.settings">
105+
<Generator>SettingsSingleFileGenerator</Generator>
106+
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
107+
</None>
108+
</ItemGroup>
109+
<ItemGroup>
110+
<None Include="App.config" />
111+
</ItemGroup>
112+
<ItemGroup>
113+
<Resource Include="Facebook Post 940x788 px.png" />
114+
</ItemGroup>
115+
<ItemGroup>
116+
<Resource Include="facebook_post_940x788_px_dqM_icon.ico" />
117+
</ItemGroup>
118+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
119+
<Import Project="packages\MaterialDesignThemes.3.2.0\build\MaterialDesignThemes.targets" Condition="Exists('packages\MaterialDesignThemes.3.2.0\build\MaterialDesignThemes.targets')" />
120+
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
121+
<PropertyGroup>
122+
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
123+
</PropertyGroup>
124+
<Error Condition="!Exists('packages\MaterialDesignThemes.3.2.0\build\MaterialDesignThemes.targets')" Text="$([System.String]::Format('$(ErrorText)', 'packages\MaterialDesignThemes.3.2.0\build\MaterialDesignThemes.targets'))" />
125+
</Target>
126+
<PropertyGroup>
127+
<PostBuildEvent>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 2020.4</PostBuildEvent>
128+
</PropertyGroup>
129+
</Project>

ETR.sln

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.30907.101
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ETR", "ETR.csproj", "{4BE12F3F-44E1-4520-8B26-A4CD60DA588C}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{4BE12F3F-44E1-4520-8B26-A4CD60DA588C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{4BE12F3F-44E1-4520-8B26-A4CD60DA588C}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{4BE12F3F-44E1-4520-8B26-A4CD60DA588C}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{4BE12F3F-44E1-4520-8B26-A4CD60DA588C}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {17F8D6A8-C020-4FC5-88C5-BE85E5DE033A}
24+
EndGlobalSection
25+
EndGlobal

Facebook Post 940x788 px.png

44.6 KB
Loading

MainWindow.xaml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<Window x:Class="ETR.MainWindow"
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
5+
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
6+
xmlns:local="clr-namespace:ETR"
7+
mc:Ignorable="d"
8+
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
9+
TextElement.Foreground="{DynamicResource MaterialDesignBody}"
10+
TextElement.FontWeight="Regular"
11+
TextElement.FontSize="13"
12+
TextOptions.TextFormattingMode="Ideal"
13+
TextOptions.TextRenderingMode="Auto"
14+
FontFamily="{DynamicResource MaterialDesignFont}"
15+
Title="Eazfuscator Trial Removal" Height="350" Width="400" WindowStyle="ToolWindow" Topmost="True" WindowStartupLocation="CenterScreen" Icon="Facebook Post 940x788 px.png">
16+
<Window.Background>
17+
<LinearGradientBrush EndPoint="0.5,1" MappingMode="RelativeToBoundingBox" StartPoint="0.5,0">
18+
<GradientStop Color="#FFCDEBF1" Offset="1"/>
19+
<GradientStop Color="White" Offset="0.878"/>
20+
</LinearGradientBrush>
21+
</Window.Background>
22+
<Grid>
23+
<Button
24+
Style="{StaticResource MaterialDesignRaisedAccentButton}"
25+
ToolTip="Resource name: MaterialDesignRaisedAccentButton"
26+
Content="Assembly" Margin="10,10,258,0" Height="47" Click="Button_Click" VerticalAlignment="Top" />
27+
<TextBox x:Name="txt_assembly" Margin="0,25,10,0" TextWrapping="Wrap" Text="TextBox" Cursor="IBeam" FontSize="16" HorizontalAlignment="Right" Width="232" Height="24" VerticalAlignment="Top"/>
28+
<ProgressBar
29+
x:Name="DeterminateCircularProgress"
30+
Style="{StaticResource MaterialDesignCircularProgressBar}" Height="125" Margin="0,97,110,0" Width="172" HorizontalAlignment="Right" VerticalAlignment="Top" />
31+
<TextBlock x:Name="label_done"
32+
Style="{StaticResource MaterialDesignHeadline4TextBlock}"
33+
Text="Done" Margin="0,164,146,0" Height="44" VerticalAlignment="Top" HorizontalAlignment="Right" Width="93" Visibility="Hidden" />
34+
<Label x:Name="label_own" Content="Modified By TA" Margin="0,0,126,8" VerticalAlignment="Bottom" FontWeight="Bold" HorizontalAlignment="Right" Width="138" FontSize="16"/>
35+
</Grid>
36+
</Window>

0 commit comments

Comments
 (0)