Martijn
Martijn

Reputation: 24789

Is it possible to update an assembly version at runtime?

I have a custom attribute which I set in the AssemblyInfo.cs. I want to update this custom attribute at runtime. Is this possible? And if so, how?

Upvotes: 0

Views: 181

Answers (1)

JaredPar
JaredPar

Reputation: 754515

No. The metadata in an assembly is fixed and not mutatable at runtime.

Upvotes: 2

Related Questions