Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
2answers
2k views

How do you keep user.config settings across different assembly versions in .net?

Basically the problem is that each time the assembly version changes (i.e. the user installs a new version of the application) all their settings are reset the the defaults (or more accurately a new ...
8
votes
5answers
3k views

Binary Deserialization with different assembly version

I have a project which uses BinaryFormatter to serialize a collection of structs with string and bool? datatypes. The serialization/deserialization works fine, however if I were to change the ...
3
votes
2answers
91 views

Change assembly version of another .EXE

How to change from one project, assembly version of another project (.exe)? I have source for both projects.
3
votes
2answers
959 views

Should I auto-increment the assembly version when I build my software?

In Visual Studio 2003, you could easily set your project assembly to auto-increment every time you built it, but with Visual Studio 2005, this functionality was removed. You can still auto-increment ...
2
votes
1answer
194 views

How to get version number in post-build event

I want to use post-build event to automatically create a nuget package and then copy it to a shared folder on our network, something like this (the version number 1.0.0.0. is specified inside the ...
1
vote
1answer
43 views

AssemblyVersion(“1.0.*”) one hour behind on the Revision value?

I'm using the following syntax to place into my assembly version's Revision value half the number of seconds in the day which have passed at the moment of compilation: [assembly: ...
1
vote
1answer
68 views

Get assembly version of another project (.exe)

I have source code of both c sharp projects. From project B i need get assemblyVersion of project A. Project A starts project B (process.Start();). How do get it? Thanks.
1
vote
2answers
163 views

Loading an assembly from any version

I'm referencing a signed assembly. In runtime it is ok for me to work with any version of that assembly, not just the one I compiled to. How to achieve this?
0
votes
1answer
40 views

How to let visual studio setup project override all dlls - or how to let visual studio increase the version number with every build?

i am using the VS2010 Installer project to deploy my application. I can set the RemovePreviousVersions property to True and the installer will override every assembly with changed Version number. ...
0
votes
2answers
40 views

File blocks when i get assembly version

I have updater for my app. When i check for updates, i compare server version with local Assembly version of main .exe file of application. When from updater(updater is another .exe file) i get ...
0
votes
1answer
354 views

How do I use a version of ODP.NET different to the one I built with?

I've got an app that is built with ODP.NET 2.111.6.20 - all the references in VS are set Specific Version to false, but when I try to run the app on a machine that only has 2.111.6.0, it throws an ...
0
votes
2answers
58 views

Can SourceSafe be configured to update AsemblyInfo

At work we have an (reasonable) agreement, that every time a project is updated, no matter how small change is, that is reflected in the Revision value of Assembly Information. This way we always know ...