Tagged Questions
0
votes
1answer
25 views
Runtime version resolution for assemblies referenced as projects
For our enterprise application, we have some assemblies that are referenced as dlls and others that are referenced as projects.
For the ones that are referenced as dlls, we have changed the "Specific ...
16
votes
4answers
8k views
Referencing different versions of the same assembly
If A references assembly B 1.1 and C, and C references B 1.2, how do you avoid assembly conflicts?
I nievely assumed C's references would be encapsulated away and would not cause any problems, but it ...
7
votes
3answers
3k views
Read AssemblyFileVersion from AssemblyInfo post-compile
How can one read the AssemblyFileVersion, or its components AssemblyFileMajorVersion, AssemblyFileMinorVersion, AssemblyFileBuildNumber, AssemblyFileRevision, within the .csproj, following ...
5
votes
2answers
671 views
TFS Build: include branch name in “build number” field of assemblies
I'd like to be able to look at an assembly and quickly identify which branch it was built out of.
What's the best way to cofigure TFS Build to include the name of the current branch in the Build ...
19
votes
3answers
6k views
Getting runtime version of a Silverlight assembly
I want to show my Silverlight 3 application's version number in the about box, but when I use a traditional .Net call like:
Assembly.GetExecutingAssembly().GetName().Version;
I get a ...
5
votes
1answer
2k views
GAC and Assembly Versioning [closed]
i have to deploy few assembly to GAC. I just had a few questions about (my) understanding of GAC. really confuses me.
I want to know which versions to change assembly and file version. What are ...
2
votes
2answers
268 views
I want my DotNetNuke modules to work under as many versions as possible while avoiding assembly binding redirection
I am developing DotNetNuke modules and naturally want them compiled before installing or distributing them. In the past I've simply referenced a specific version of DotNetNuke.dll by browsing to the ...
0
votes
1answer
247 views
How to redirect an assembly binding from a wild carded version to a wild carded version?
I know we can do this
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="MyAssembly1" publicKeyToken="3484e1fc2d0c223b" ...
4
votes
1answer
791 views
How to increase Assembly Version Number 1 by 1
I setted AssemblyVersion attribute to this:
[assembly: AssemblyVersion("1.0.0.*")]
It is increasing according to change of assembly and time. Now it is: {1.0.0.20042} and if I don't change cs files ...
5
votes
2answers
3k views
Maven: How to create assembly with snapshot artifacts without timestamps file name?
I've a repository containing snapshot artifacts with timestamps.
I want to create an assembly, that contains the dependencies. This works fine. But the artifact names contains the timestamp. So i ...
2
votes
5answers
2k views
View current Assembly Version number within VS2008
I would like to know if there is a way to see Assembly Version number of the last completed build within the Visual Studio 2008 IDE. I don't want to see the 1.0.* that is in the Assembly Information ...
0
votes
3answers
326 views
Using versioned .Net assemblies
In our processing software we are moving from one version of an external assembly to a newer version. While the overall task that the assembly performs are the same, the API is radically different and ...
1
vote
1answer
43 views
Versioning assemblies built off source code stored in a DVCS
What I'm up to is to have an ability to tell a changeset which was used to build an assembly.
With Subversion it's all nice and simple: embed repository revision number straight into assembly version ...
1
vote
2answers
143 views
Does the version of dependent assemblies is stored in the referring assembly?
The following saying is quoted from this article in MSDN.
... strong-name signing makes servicing more complicated. Under
current versioning policy, an assembly will always attempt to load the
...
1
vote
1answer
158 views
How do I manage assembly versions in a multiple module / customer scenario?
I need some guidance on managing assemblies and versions and the source control thereof.
First, a little background on the application. The app is an ERP-type system where several customers can run ...