Update version
This commit is contained in:
Родитель
3fb613d2af
Коммит
6268884731
|
@ -54,6 +54,9 @@
|
|||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="..\GlobalAssemblyInfo.cs">
|
||||
<Link>Properties\GlobalAssemblyInfo.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="Program.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
|
|
|
@ -1,36 +1,4 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// General Information about an assembly is controlled through the following
|
||||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
[assembly: AssemblyTitle("Confuser.CLI")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("Ki")]
|
||||
[assembly: AssemblyProduct("Confuser.CLI")]
|
||||
[assembly: AssemblyCopyright("Copyright © Ki 2014")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Setting ComVisible to false makes the types in this assembly not visible
|
||||
// to COM components. If you need to access a type in this assembly from
|
||||
// COM, set the ComVisible attribute to true on that type.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||
[assembly: Guid("9ded6040-ae5e-46a2-b80c-5c05686b725e")]
|
||||
|
||||
// Version information for an assembly consists of the following four values:
|
||||
//
|
||||
// Major Version
|
||||
// Minor Version
|
||||
// Build Number
|
||||
// Revision
|
||||
//
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
||||
[assembly: AssemblyTitle("ConfuserEx Command-line")]
|
||||
[assembly: AssemblyDescription("Command-line interface of ConfuserEx")]
|
|
@ -50,6 +50,9 @@
|
|||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="..\GlobalAssemblyInfo.cs">
|
||||
<Link>Properties\GlobalAssemblyInfo.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="Annotations.cs" />
|
||||
<Compile Include="LZMA\Common\CRC.cs" />
|
||||
<Compile Include="LZMA\Common\InBuffer.cs" />
|
||||
|
|
|
@ -12,12 +12,27 @@ using dnlib.DotNet.Writer;
|
|||
using MethodAttributes = dnlib.DotNet.MethodAttributes;
|
||||
using MethodImplAttributes = dnlib.DotNet.MethodImplAttributes;
|
||||
using TypeAttributes = dnlib.DotNet.TypeAttributes;
|
||||
using InformationalAttribute = System.Reflection.AssemblyInformationalVersionAttribute;
|
||||
using ProductAttribute = System.Reflection.AssemblyProductAttribute;
|
||||
using CopyrightAttribute = System.Reflection.AssemblyCopyrightAttribute;
|
||||
|
||||
namespace Confuser.Core {
|
||||
/// <summary>
|
||||
/// The processing engine of Confuser.
|
||||
/// </summary>
|
||||
public static class ConfuserEngine {
|
||||
public static readonly string Version;
|
||||
static readonly string Copyright;
|
||||
static ConfuserEngine()
|
||||
{
|
||||
var assembly = typeof(ConfuserEngine).Assembly;
|
||||
var nameAttr = (ProductAttribute)assembly.GetCustomAttributes(typeof(ProductAttribute), false)[0];
|
||||
var verAttr = (InformationalAttribute)assembly.GetCustomAttributes(typeof(InformationalAttribute), false)[0];
|
||||
var cpAttr = (CopyrightAttribute)assembly.GetCustomAttributes(typeof(CopyrightAttribute), false)[0];
|
||||
Version = string.Format("{0} {1}", nameAttr.Product, verAttr.InformationalVersion);
|
||||
Copyright = cpAttr.Copyright;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Runs the engine with the specified parameters.
|
||||
/// </summary>
|
||||
|
@ -268,7 +283,7 @@ namespace Confuser.Core {
|
|||
marker.Mark(ctor);
|
||||
|
||||
var attr = new CustomAttribute(ctor);
|
||||
attr.ConstructorArguments.Add(new CAArgument(module.CorLibTypes.String, "ConfuserEx 0.1"));
|
||||
attr.ConstructorArguments.Add(new CAArgument(module.CorLibTypes.String, Version));
|
||||
|
||||
module.CustomAttributes.Add(attr);
|
||||
}
|
||||
|
@ -348,7 +363,7 @@ namespace Confuser.Core {
|
|||
context.Logger.Info("Protecting packer stub...");
|
||||
}
|
||||
else {
|
||||
context.Logger.Info("ConfuserEx v0.1 Copyright (C) Ki 2014");
|
||||
context.Logger.InfoFormat("{0} {1}", Version, Copyright);
|
||||
|
||||
Type mono = Type.GetType("Mono.Runtime");
|
||||
context.Logger.InfoFormat("Running on {0}, {1}, {2} bits",
|
||||
|
|
|
@ -1,39 +1,4 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// General Information about an assembly is controlled through the following
|
||||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
|
||||
[assembly: AssemblyTitle("Confuser.Core")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("Ki")]
|
||||
[assembly: AssemblyProduct("Confuser.Core")]
|
||||
[assembly: AssemblyCopyright("Copyright © Ki 2014")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Setting ComVisible to false makes the types in this assembly not visible
|
||||
// to COM components. If you need to access a type in this assembly from
|
||||
// COM, set the ComVisible attribute to true on that type.
|
||||
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||
|
||||
[assembly: Guid("9568cea4-2f28-4cdf-941d-ebf324896e23")]
|
||||
|
||||
// Version information for an assembly consists of the following four values:
|
||||
//
|
||||
// Major Version
|
||||
// Minor Version
|
||||
// Build Number
|
||||
// Revision
|
||||
//
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
||||
[assembly: AssemblyTitle("ConfuserEx Core")]
|
||||
[assembly: AssemblyDescription("Core framework of ConfuserEx")]
|
|
@ -41,6 +41,9 @@
|
|||
<Reference Include="System.Core" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="..\GlobalAssemblyInfo.cs">
|
||||
<Link>Properties\GlobalAssemblyInfo.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="AST\ArrayIndexExpression.cs" />
|
||||
<Compile Include="AST\AssignmentStatement.cs" />
|
||||
<Compile Include="AST\BinOpExpression.cs" />
|
||||
|
|
|
@ -1,39 +1,4 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// General Information about an assembly is controlled through the following
|
||||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
|
||||
[assembly: AssemblyTitle("Confuser.DynCipher")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("Ki")]
|
||||
[assembly: AssemblyProduct("Confuser.DynCipher")]
|
||||
[assembly: AssemblyCopyright("Copyright © Ki 2014")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Setting ComVisible to false makes the types in this assembly not visible
|
||||
// to COM components. If you need to access a type in this assembly from
|
||||
// COM, set the ComVisible attribute to true on that type.
|
||||
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||
|
||||
[assembly: Guid("ea911147-8530-453e-95cd-76ff8b6b235f")]
|
||||
|
||||
// Version information for an assembly consists of the following four values:
|
||||
//
|
||||
// Major Version
|
||||
// Minor Version
|
||||
// Build Number
|
||||
// Revision
|
||||
//
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
||||
[assembly: AssemblyTitle("ConfuserEx Dynamic Cipher Library")]
|
||||
[assembly: AssemblyDescription("Cipher generator of ConfuserEx")]
|
|
@ -48,6 +48,9 @@
|
|||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="..\GlobalAssemblyInfo.cs">
|
||||
<Link>Properties\GlobalAssemblyInfo.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="AntiILDasmProtection.cs" />
|
||||
<Compile Include="AntiTamper\AntiTamperProtection.cs" />
|
||||
<Compile Include="AntiTamper\DynamicDeriver.cs" />
|
||||
|
|
|
@ -1,39 +1,4 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// General Information about an assembly is controlled through the following
|
||||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
|
||||
[assembly: AssemblyTitle("Confuser.Protections")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("Ki")]
|
||||
[assembly: AssemblyProduct("Confuser.Protections")]
|
||||
[assembly: AssemblyCopyright("Copyright © Ki 2014")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Setting ComVisible to false makes the types in this assembly not visible
|
||||
// to COM components. If you need to access a type in this assembly from
|
||||
// COM, set the ComVisible attribute to true on that type.
|
||||
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||
|
||||
[assembly: Guid("455dc122-c4ca-45fa-bbb9-267811b2a30c")]
|
||||
|
||||
// Version information for an assembly consists of the following four values:
|
||||
//
|
||||
// Major Version
|
||||
// Minor Version
|
||||
// Build Number
|
||||
// Revision
|
||||
//
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
||||
[assembly: AssemblyTitle("ConfuserEx Protections")]
|
||||
[assembly: AssemblyDescription("Protections and packers of ConfuserEx")]
|
|
@ -42,6 +42,9 @@
|
|||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="..\GlobalAssemblyInfo.cs">
|
||||
<Link>Properties\GlobalAssemblyInfo.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="AnalyzePhase.cs" />
|
||||
<Compile Include="Analyzers\InterReferenceAnalyzer.cs" />
|
||||
<Compile Include="Analyzers\LdtokenEnumAnalyzer.cs" />
|
||||
|
|
|
@ -1,39 +1,4 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// General Information about an assembly is controlled through the following
|
||||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
|
||||
[assembly: AssemblyTitle("Confuser.Renamer")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("Ki")]
|
||||
[assembly: AssemblyProduct("Confuser.Renamer")]
|
||||
[assembly: AssemblyCopyright("Copyright © Ki 2014")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Setting ComVisible to false makes the types in this assembly not visible
|
||||
// to COM components. If you need to access a type in this assembly from
|
||||
// COM, set the ComVisible attribute to true on that type.
|
||||
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||
|
||||
[assembly: Guid("57f34c9c-99bd-48eb-a521-7ded19ec7ab4")]
|
||||
|
||||
// Version information for an assembly consists of the following four values:
|
||||
//
|
||||
// Major Version
|
||||
// Minor Version
|
||||
// Build Number
|
||||
// Revision
|
||||
//
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
||||
[assembly: AssemblyTitle("ConfuserEx Renamer")]
|
||||
[assembly: AssemblyDescription("Renaming analysis of ConfuserEx")]
|
|
@ -40,6 +40,9 @@
|
|||
<AssemblyOriginatorKeyFile>..\ConfuserEx.snk</AssemblyOriginatorKeyFile>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="..\GlobalAssemblyInfo.cs">
|
||||
<Link>Properties\GlobalAssemblyInfo.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="AntiDump.cs" />
|
||||
<Compile Include="AntiDebug.Win32.cs" />
|
||||
<Compile Include="AntiDebug.Antinet.cs" />
|
||||
|
|
|
@ -1,39 +1,4 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// General Information about an assembly is controlled through the following
|
||||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
|
||||
[assembly: AssemblyTitle("Confuser.Runtime")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("Ki")]
|
||||
[assembly: AssemblyProduct("Confuser.Runtime")]
|
||||
[assembly: AssemblyCopyright("Copyright © Ki 2014")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Setting ComVisible to false makes the types in this assembly not visible
|
||||
// to COM components. If you need to access a type in this assembly from
|
||||
// COM, set the ComVisible attribute to true on that type.
|
||||
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||
|
||||
[assembly: Guid("960e5417-056a-4466-8b83-ac881038cf69")]
|
||||
|
||||
// Version information for an assembly consists of the following four values:
|
||||
//
|
||||
// Major Version
|
||||
// Minor Version
|
||||
// Build Number
|
||||
// Revision
|
||||
//
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
||||
[assembly: AssemblyTitle("ConfuserEx Runtime")]
|
||||
[assembly: AssemblyDescription("Runtime library of ConfuserEx")]
|
|
@ -0,0 +1,16 @@
|
|||
using System.Reflection;
|
||||
|
||||
[assembly: AssemblyProduct("ConfuserEx")]
|
||||
[assembly: AssemblyCompany("Ki")]
|
||||
[assembly: AssemblyCopyright("Copyright (C) Ki 2014")]
|
||||
|
||||
#if DEBUG
|
||||
|
||||
[assembly: AssemblyConfiguration("Debug")]
|
||||
#else
|
||||
[assembly: AssemblyConfiguration("Release")]
|
||||
#endif
|
||||
|
||||
[assembly: AssemblyVersion("0.1.0.0")]
|
||||
[assembly: AssemblyFileVersion("0.1.0.0")]
|
||||
[assembly: AssemblyInformationalVersion("v0.1.0")]
|
Загрузка…
Ссылка в новой задаче