Questions tagged [smartassembly]

A obfuscation, crash reporting, and feature usage reporting tool for .NET from Red-Gate Software Ltd.

SmartAssebly is an obfuscation, crash reporting, and feature usage reporting tool for .NET from Red-Gate Software Ltd.

SmartAssembly website

33 questions
1
vote
1 answer

Does SmartAssemby support multiple-assembly app?

My console application contains one exe and 10 dlls. I want to and can only obfuscate five of the dlls. The rest are shared dlls and contain common code so they cannot be obfuscated. With the current design the obfuscated assemblies also cannot be…
Metro
  • 1,121
  • 1
  • 13
  • 33
1
vote
1 answer

MSBuild custom (obfuscate) step between build and publish

I have a web application (WebAPI web service) that is building on my CI server. It builds and publishes fine using VS2013, a publish to file system publish profile (*.pubxml) and the below command from the CI server task. MSBuild…
1
vote
1 answer

SmartAssembly obfuscates public type

When I obfuscate this form, and "debug" it public partial class Form1 : Form { public void Form1() { InitializeComponents(); } protected override void OnShown(EventArgs e) { base.OnShown(e); Console.WriteLine("Name:…
Jens Kloster
  • 11,099
  • 5
  • 40
  • 54
1
vote
1 answer

Obfuscate Portable Class Library in SmartAssembly

I have created portable class library with following configuration: After this I have added my library into SmartAssebly 6.8, and try to build, but following error occured: How to avoid this? I see that SA found right mscorelib.dll, but why it…
Yuriy
  • 2,670
  • 6
  • 33
  • 48
1
vote
2 answers

Automatically log error and terminate application with SmartAssembly

I'm using SmartAssembly for both general code obfuscation as well as error reporting in an application. If my application encounters an unhandled exception, I'd like the exception to be logged and then terminate the application without any user…
jdhurst
  • 4,365
  • 1
  • 20
  • 21
0
votes
0 answers

How to install smart assembly in docker container

I have deployed and hosted my .net application in Docker Container. Now I wanted to apply obfuscation over my code using smart assembly to secure my code. So, just wanted to know is there any way how we can achieve code obfuscation in docker using…
saurabh704
  • 63
  • 6
0
votes
1 answer

Can Smart Assembly 7+ strings be deobfuscated?

I am planning on using Smart Assembly 7+ for obfuscating my .NET C# library. But when I look through some forums I came across that there are even programs to deobfuscate DLLs protected with Smart Assembly, particularly programs like de4dot. So I…
0
votes
1 answer

Activating the application gives the error "The Server is not Operational"

Good morning, I am trying to move an installation of SmartAssembly 6.8 onto a new developer machine. It looks like it has installed without any issues, it starts ok and I get the dialogue with the Activate and continue buttons. The machine I am…
lardymonkey
  • 728
  • 1
  • 16
  • 34
0
votes
1 answer

Obfuscating Nuget package targeting .NET Standard using SmartAssembly works on machine running .NET 4.7.1 but fails on .NET 4.5.2

My .net 4.5 project is referencing a nuget package (System.ValueTuple 4.3.0, targeting .netstandard). The code is obfuscated using SmartAssembly 6.10 (I'm aware this version doesn't support .NET Standard). The program works fine on a machine running…
mihalios
  • 828
  • 1
  • 6
  • 12
0
votes
1 answer

Upgrade settings from old version with different name

We use app.config to store user settings, but changed the name of the exe... for reasons. I need to be able to upgrade the settings from version 1.4 called name1.exe to version 1.5 now called name2.exe. I've tried several methods, the first was to…
0
votes
0 answers

Why does postsharp lose stacktrace info for the calling method

In release mode Postsharp enhanced methods lose the line numbers etc for the calling method only. This is despite the pdb file being provided. If i don't use Postsharp the line number etc are included. Is there a workaround for this? Edit: Here is…
David
  • 958
  • 2
  • 12
  • 29
0
votes
1 answer

ServiceStack license error after packaging

In my ServiceStack client application, everything was fine until I have tried packaging it with SmartAssembly or ILRepack. There are three DLLs: (ServiceStack.Client.dll, ServiceStack.Interfaces.dll, ServiceStack.Text.dll) Which when packed cause…
HardLuck
  • 1,497
  • 1
  • 22
  • 43
0
votes
1 answer

SmartAssembly Consol

Does any one know how to write this line in post build event call "C:\Program Files\Red Gate\SmartAssembly 6\SmartAssembly.com" "/build $(ProjectFolder)\($ProjectName).saproj" "/input=$(TargetPath)…
M.Khalil
  • 33
  • 2
  • 7
0
votes
0 answers

Smart Assembly - What stops a project working?

We have several ASP.NET applications which reuse many projects. Let's say Solution/App A contains projects p1, p2, p3 and Solution/App B contains projects p2, p3, p4 We try obfuscating all projects in both applications and neither work. When we…
Fred Johnson
  • 2,539
  • 3
  • 26
  • 52
0
votes
2 answers

Error while Obfuscation

We have developed project using vb.net for our internal purposes and then we obfuscated it. It is throwing error as mentioned below. “Public member ‘Var1’ on type ‘e’ not found.” Code: Public Sub get_constants_from_DbList(ByRef frm As Object, ByRef…
IT researcher
  • 3,274
  • 17
  • 79
  • 143