Search Results

0
votes
1answer
120 views

How do I get the current published version in a .NET application?

I want to be able to display the current version of a .NET application that I have deployed using the publish wizard. There is a nice option to automatically update the version number every time I …
2
votes

Compatible encryption between C# and PHP, ColdFusion, Ruby, Python

I would use AES for the bulk data encryption and RSA for encrypting the AES Key. If the data is small enough then just encrypt the whole thing with RSA. …
1
vote

How do I get the current published version in a .NET application?

I ended up using this little bit of code to get the current deployed version or if it isn't deployed the current assembly version. private Version GetRunningVersion() { try { …