Search found 2566 matches

by Admin
Sat Dec 30, 2023 3:57 am
Forum: Technical questions
Topic: v3.8.6 .NET6 problems
Replies: 11
Views: 3112

Re: v3.8.6 .NET6 problems

Please try the 1935 build.
by Admin
Fri Dec 29, 2023 2:29 pm
Forum: Technical questions
Topic: PublishSingleFile=true for .NET
Replies: 5
Views: 2894

Re: PublishSingleFile=true for .NET

It seems you don't need our software, because you can't even solve such a "simple problem" by yourself. I don't understand why you think that "Wpf App.exe" is a VMProtect project file. P.S. You still use wrong code here: <VMProtectInputFile>$(IntermediateOutputPath)$(AssemblyName...
by Admin
Fri Dec 29, 2023 12:37 pm
Forum: Technical questions
Topic: Virtual Files
Replies: 2
Views: 1661

Re: Virtual Files

We are not going to add such features.
by Admin
Fri Dec 29, 2023 12:21 pm
Forum: Technical questions
Topic: PublishSingleFile=true for .NET
Replies: 5
Views: 2894

Re: PublishSingleFile=true for .NET

Just change PATH_TO_VMP_FILE to the full name of ".vmp" file created by VMProtect's GUI: <Target Name="VMProtectCompile" BeforeTargets="GenerateSingleFileBundle"> <PropertyGroup> <VMProtectCon>"C:\Program Files\VMProtect Demo\VMProtect_Con.exe"</VMProtectCon> ...
by Admin
Wed Dec 27, 2023 11:17 am
Forum: Technical questions
Topic: PublishSingleFile=true for .NET
Replies: 5
Views: 2894

PublishSingleFile=true for .NET

The build 1932 supports self-contained executables. Here is simple example of .csproj to protect compiled assembly before publishing in a single file: <Project Sdk="Microsoft.NET.Sdk"> ... <Target Name="VMProtectCompile" BeforeTargets="GenerateSingleFileBundle"> <Prope...
by Admin
Sat Dec 23, 2023 9:21 am
Forum: Technical questions
Topic: [BUG] Windows 11 Pro Insider Preview Virtual file/dll cannot load
Replies: 11
Views: 8149

Re: [BUG] Windows 11 Pro Insider Preview Virtual file/dll cannot load

The latest version supports serial numbers generated by previous versions.
by Admin
Sun Dec 17, 2023 6:29 pm
Forum: Technical questions
Topic: How to use SDK to protect. net programs
Replies: 8
Views: 4754

Re: How to use SDK to protect. net programs

1. Compile your application with MSVC (for example Test.sln for .NET Core 6.0). MSVC will create "Release\net6.0\Test.dll" and "Release\net6.0\Test.exe" 2. Publish your application with the " dotnet publish " command. It will create the folder "Release\net6.0\publi...
by Admin
Sat Dec 16, 2023 7:51 pm
Forum: Technical questions
Topic: How to use SDK to protect. net programs
Replies: 8
Views: 4754

Re: How to use SDK to protect. net programs

It seems you still don't understand what I explained in other topic:
viewtopic.php?p=38412#p38412
by Admin
Sat Dec 16, 2023 2:56 pm
Forum: Technical questions
Topic: selective class member renaming with ObfuscationAttribute
Replies: 2
Views: 2510

Re: selective class member renaming with ObfuscationAttribute

It seems you need something like this:

Code: Select all

[assembly:Obfuscation(Feature = "renaming", Exclude = true)]

[Obfuscation(Feature = "renaming", Exclude = false, ApplyToMembers = true)]
class Foo {
...
by Admin
Sat Dec 16, 2023 12:20 pm
Forum: Technical questions
Topic: Does vmp support method inline/flatten
Replies: 4
Views: 2369

Re: Does vmp support method inline/flatten

When "Main" and "GetInt" were virtualized the "Main" doesn't call native stub of "GetInt", so any patch of "GetInt" with Harmony will not work in this case.
by Admin
Sat Dec 16, 2023 12:15 pm
Forum: Technical questions
Topic: How to use SDK to protect. net programs
Replies: 8
Views: 4754

Re: How to use SDK to protect. net programs

Reference VMProtect.SDK Don't need if you don't use functions from SDK. And add [Obfuscation(Feature = "ultra", Exclude = false)] before the method After compilation, you can still see the source code using ILSpy or dnSpy After loading of your application in VMProtect you will see in the ...
by Admin
Tue Dec 12, 2023 11:30 am
Forum: Technical questions
Topic: Activation code status check
Replies: 1
Views: 2064

Re: Activation code status check

И если да - то будет ли ACTIVATION_BANNED статус означать, что код активации как раз заблокирован? Да. public static function Activate($code, $hwid, $hash) { ... $res = ObjectsSqlLoad("SELECT * FROM {$DB_PREFIX}activations WHERE code=" . Sql($code), "Activation"); if ($res === F...