Most voted ".net-assembly" questions
This tag should be used in questions about loading and assembly dependencies on the . NET platform.
Learn more…13 questions
Sort by count of
-
7
votes1
answer731
viewsIncrementing the Assemblyversion
I am creating an upgrade solution for an application I have and needed the Assembly version When placing an * on Assembly. [assembly: AssemblyVersion("1.0.0.*")] it started incrementing…
-
6
votes2
answers334
viewsHow to protect an Assembly from decompilation?
Nowadays there are many water heaters and recompilers for . NET Framework, the guy goes there, makes an application and everyone who has a decompiler (for example IL Spy) can go there, select the…
.net security-guard cryptography decompilation .net-assemblyasked 8 years, 8 months ago CypherPotato 9,292 -
6
votes2
answers68
viewsHow can I indicate the directory where my assemblies should be found?
My company has an installation that hits the gigabyte home. We have a set of applications in our installation that share the same libraries. By default, when . NET executes an application it looks…
-
6
votes1
answer326
viewsHow to create a monolithic application executable. NET?
I wouldn’t want to do the deploy from the full DLL application, wanted something simple, no installer, wanted to generate only one executable file, but the . NET is all DLL-based. You can generate a…
-
2
votes1
answer959
viewsThis Assembly does not allow partially reliable callers
I have my project, and in it I have a dll to access some methods, developing works normally, but in the approval environment this giving this msg: "This Assembly does not allow partially reliable…
-
1
votes1
answer441
viewsUnderstanding structures in the Assemblyinfo.Cs file
Taking a look at the file AssemblyInfo.cs of a C# project I came across some structures of which I am not recognizing. These are the lines: [assembly: AssemblyTitle("")] [assembly:…
-
0
votes2
answers320
viewsInstallation of Namespace
I have a test project that came without the Namespace System.Web.Helpers and others. I searched and didn’t find it. I should be, but it’s not. How to install the guy? Well, I can hunt on the…
-
0
votes1
answer48
viewsHow to get a Type from a string
For example, I want a string containing the information "System.Windows.Forms.Button" return a button object New Button(), would that be possible? Note: Is tagged C# as it is easy to translate from…
-
0
votes1
answer77
viewsHow to fill out INPI data in a . NET project
My question is somewhat conceptual. My company registered the software in the INPI and received protocol data, etc. How to fill this data in my system? I noticed that in the file AssemblyInfo.cs i…
-
0
votes1
answer295
viewsHow to convert a character to hexadecimal in Assembly
My code should receive a character and print the code in ASCII, but it doesn’t work and I can’t find where the error is. Edit: is giving error (41) Unexpected end of file encountered model small…
-
0
votes0
answers148
viewsI cannot check 'Mark Clickonce manifests'
I have a Visual Studio project where I need to sign Assembly this way: For the Phoenix_panel project (example print above) marking this item is optional. But for the Phoenix_communication project I…
-
-1
votes1
answer89
viewsProtected methods of a DLL
I have a DLL that has several internal methods, I want to protect these internal methods so that they are called only by the DLL itself. Is there any way to define which methods may or may not be…
-
-5
votes1
answer155
viewsAssembly! insert characters and print the reverse
Hello, I’m a beginner in Assembly. I need to make a program that takes two characters and prints the reverse. Example: Receive: A B View:B A Someone can help me…