Search found 2584 matches

by Admin
Sat Jan 06, 2024 9:45 am
Forum: Technical questions
Topic: vmp 3.8.5.1879
Replies: 4
Views: 2943

Re: vmp 3.8.5.1879

Are you a registered user of VMProtect?
by Admin
Tue Jan 02, 2024 10:20 am
Forum: Technical questions
Topic: v3.8.6 .NET6 problems
Replies: 11
Views: 3258

Re: v3.8.6 .NET6 problems

Could you provide us very simple example (original EXE+VMP files) that shows your problem?
by Admin
Sat Dec 30, 2023 4:00 am
Forum: Technical questions
Topic: Can't resolve assembly: CommunityToolkit.Mvvm, Version=8.2.0.0
Replies: 2
Views: 1609

Re: Can't resolve assembly: CommunityToolkit.Mvvm, Version=8.2.0.0

Just copy required DLLs to "obj\Release\net8.0-windows"
by Admin
Sat Dec 30, 2023 3:57 am
Forum: Technical questions
Topic: v3.8.6 .NET6 problems
Replies: 11
Views: 3258

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: 2973

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: 1705

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: 2973

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: 2973

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: 8316

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: 4822

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: 4822

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: 2539

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 {
...