delay sign..

  • Thread starter Thread starter Vijay
  • Start date Start date
V

Vijay

I have a complied DLL, and no source code. THe file was complied with
delaysign attribute set to False. I need to sign this file. How do I perform
this?

Vijay
 
Vijay,

Do you mean that the /delaysign- flag was used when compiling the
assembly? If so, you can't sign the file, since it should already be fully
signed and one of the benefits of strong naming an assembly is that you can
tell when it has been altered.

What is it that you are trying to do?
 
I have a DLL file that was built with DelaySign attribute set as false. I
don't have the source code with me to recomplie and set the attribute as
true and add a key. Is there any way I can do this without the source code?

Vijay

Nicholas Paldino said:
Vijay,

Do you mean that the /delaysign- flag was used when compiling the
assembly? If so, you can't sign the file, since it should already be
fully signed and one of the benefits of strong naming an assembly is that
you can tell when it has been altered.

What is it that you are trying to do?


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Vijay said:
I have a complied DLL, and no source code. THe file was complied with
delaysign attribute set to False. I need to sign this file. How do I
perform this?

Vijay
 
Vijay,

You mean that the AssebmlyDelaySignAttribute is applied to the assembly
then. If this is the case, without the source code, there isn't a way you
can resign the dll. Since the DelaySign property is set to false, it means
that the assembly is fully signed.

--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Vijay said:
I have a DLL file that was built with DelaySign attribute set as false. I
don't have the source code with me to recomplie and set the attribute as
true and add a key. Is there any way I can do this without the source code?

Vijay

Nicholas Paldino said:
Vijay,

Do you mean that the /delaysign- flag was used when compiling the
assembly? If so, you can't sign the file, since it should already be
fully signed and one of the benefits of strong naming an assembly is that
you can tell when it has been altered.

What is it that you are trying to do?


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Vijay said:
I have a complied DLL, and no source code. THe file was complied with
delaysign attribute set to False. I need to sign this file. How do I
perform this?

Vijay
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top