Tagged Questions
0
votes
0answers
41 views
.NET Application Looking for Reference Version That Doesn't Exist
I have a custom reference in my project that is causing the application to fail when it cannot be found. The app is searching for version 1.30.2932... and the latest version, which I have installed, ...
0
votes
0answers
20 views
.NET Need to reference the click once deployment version number outside the main startup project
I have a custom exception class w/ a property that stores the version number. This class is located in the logic layer (outside the main start up project). How do I reference the deployment version ...
0
votes
2answers
57 views
Environment.Version returns a version number not matching the “version name”
Upon running this code:
foreach (string drive in Environment.GetLogicalDrives())
Console.WriteLine("Drive: {0}", drive);
Console.WriteLine("OS: {0}", Environment.OSVersion);
...
0
votes
3answers
82 views
How do I find the .NET version used in an existing project?
I am expected to continue development on a C#/ASP.NET project that has changed hands multiple times, and no one person is sure which version of .NET is being used.
Is there something (perhaps an ...
0
votes
2answers
43 views
How to create a Windows executable with FileVersion containing commas
Is there a way in .NET to create an executable file where FileVersion value has commas?
Ex: 4,4,3
I want commas instead of dots as the delimiter. How can I do it?
Alternately, is there any ...
-2
votes
2answers
118 views
Version object is comparing two versions incorrectly
I am using the Version object in order to run a CompareTo against two version numbers and making X happen if the version is >= versionA.
My issue is that in the below code, the CompareTo is ...
3
votes
1answer
487 views
Wix bootstrapper won't detect installed .NET framework
I have a Wix installer and bootstrapper application to install my application and a service. As a prerequisite I need the .NET 2.0 SP2 Framework installed and tried to detect that using the following ...
0
votes
1answer
99 views
How does the .NET application version works?
I set up a setup (installer) project in my solution and there is the version there 1.0.0.
My question is, how does the version-ing work?
What does each number mean and how does it increase? Can ...
-1
votes
2answers
98 views
Creating a textbox compliant for both IPv4 and IPv6 [closed]
As regex could be not the optimal solution for validating the IP addresses, as my need would be to validate for both IPv4 and IPv6. Is there a solution that already addresses the support of input of ...
0
votes
0answers
12 views
Incrementing Assembly Version [duplicate]
Possible Duplicate:
How to have an auto incrementing version number (Visual Studio)?
Visual Studio's autoincrementating abilities when updated the Assembly version to [major].[minor].* in ...
0
votes
2answers
67 views
How can i retrieve the version of Entity Framework in a WinForms application [duplicate]
Possible Duplicate:
How to get current EF version
In my windows forms application, I want to display the Entity Framework version being used by the applications .edmx files. Is it possible ...
2
votes
1answer
79 views
App.config file versioned with application?
I have an application that gets compiled into an executable. It relies on an app.config file (which gets turned into a MyApp.exe.config file).
I needed to make an update to the application, so made ...
0
votes
1answer
34 views
What shell command receives .NET version?
What shell (cmd.exe) command prints out the latest installed .NET version on the current machine?
1
vote
2answers
134 views
Application attempts to load wrong version of assembly
I'm using a pair of unsigned 3rd party assembly libraries that contain windows controls and base types from which I create derived classes. The dlls reside in a subfolder where my application gets ...
1
vote
0answers
44 views
Providing second *.config file to existing app
I need to run program that has its default configuration (if it helps, it is .net framework's MSBuild.exe) and provide additional configuration (rebind 3rd party assembly versions).
The problem is ...
0
votes
1answer
102 views
Include version number in a file on successful build
I developed an ASP.NET web site. When viewing the application in the browser the version number is shown in the footer of the application. But I want to communicate the version number with the ...
0
votes
0answers
92 views
Version in my assembly [closed]
I have followed this guide: Simple MSBuild Configuration: Updating Assemblies With A Version Number
I can run that project and it works just fine but when I add the same thing to my own project it ...
1
vote
1answer
1k views
Fixed Assembly Version with Auto Incremented File Version?
I'm trying to find a more meaningful way to handle versioning for my app and I came acrossed this KB article
http://support.microsoft.com/kb/556041
Basically it's recommending that the Assembly ...
1
vote
1answer
53 views
Detect different versions of the same .NET assembly
My app has a plug-in structure and it is possible the there are two versions of a plugin on the system. If the filenames collide, but the filehashes are different, I'm most likely dealing with two ...
0
votes
1answer
88 views
Create a .net DLL version without a revision number
I'm building a .NET 4 application in Visual Studio 2012 and wish to version my .net Assembly in the format.
[assembly: AssemblyInformationalVersion("6.0.1")]
[assembly: AssemblyVersion("6.0.*.0")]
...
0
votes
0answers
139 views
Include version number when deploying (assembly version numbers in general)
How do I include the version number of a project on the pages of my web site, especially on error pages?
There is a file called AssemblyInfo.cs so I figure I could get the information from there using ...
0
votes
1answer
68 views
Version for openssl variable x509name in .net
.NET looking for an older version of OpenSSL. Looking for 1.0.0a when the latest is installed. Methods aren recognized but will not execute on running project.
3
votes
1answer
177 views
How to not require specific version of an assembly
I have a project that I'm working on that references an assembly that references an assembly, like this:
Me
|- A
| |- B v1.4.2
|
|- B v1.5
A doesn't need to reference 1.4.2 specifically, just ...
1
vote
1answer
35 views
Is it possible to have more than 4 parameters in an AssemblyVersion?
Just want to know if it's possible to have more than 4 parameters in an AssemblyVersion for a .Net assembly?
What I'm trying to achieve is versioning on the following format:
...
0
votes
2answers
410 views
Runtime Version of DLL is not changing
When I view the properties of my dll referenced inside visual studio I see that the Runtime Version is v2.0.50727. I have recompiled the dll to target version 3.5 of the .net framework and ...
1
vote
1answer
88 views
How to convert version number present in registry to System.Version?
I have a registry key where version number is stored.
We are retrieving it as follows:
rKey.GetValue("Version")
I wanted to convert this to a System.Version object. How do I do this?
2
votes
1answer
811 views
Why does my application always uses the latest GAC version instead of referenced version?
Context
I have 2 different versions of an assembly installed in GAC, version 1.0 and version 2.0. I made an application that is referencing 1.0 as a specific version.
Issue
When I run my ...
4
votes
1answer
2k views
How can I reference a DLL regardless of version?
Okay, I am a heavy user of Telerik's library of controls, specifically for ASP.NET. However, there is a small bit of functionality which I wanted to add to some of the controls. Nowadays I can do this ...
2
votes
2answers
1k views
.NET: Is it possible to install .NET frameworks 2.0 and 3.5 after installing .NET 4.0?
Recently, when I run my visual studio 2010 in order to open my own vb.net project , I get the following message from vs:
"The VB.NET project project1 is targeting ".NETFramework, Version 2.0", which ...
0
votes
0answers
369 views
How to make the same .exe work with .NET 2.0, 3.5 and 4.0?
I'm developing a .NET 2.0 application, creating the .exe from .cs sources using Mono (gmcs -langversion:ISO-2). It works fine on Windows if the .NET Framework 2.0 is installed, but it doesn't work if ...
0
votes
2answers
204 views
How to switch .net runtime?
I have modified the .exe.config and added the following lines
<supportedRuntime version="v4.0.30319"/>
<requiredRuntime version="v4.0.30319"/>
However, Fusion shows that run time 2.0 is ...
0
votes
1answer
2k views
.NET Runtime Version Issue (supportedRuntime)
First, I´ve found a few questions on this topic but none seem to address exactly my issues, but feel free to point to an existing question if you feel it does answer my questions.
My problem: I am ...
0
votes
1answer
309 views
Use AssemblyInfo.cs VersionNumber as foldername in Post-Build Command Line or any other alternative ways
I wanna use Version Number stated inside AssemblyInfo.cs as foldername in Post-Build Command Line.. How can I extract out the version number as a variable to set as the folder name? or is there any ...
2
votes
1answer
830 views
SpecificVersion false causes compilation errors
I have a very large project that uses Oracle ODP.NET. Right now it is building against version 10.1.0.401 (which is a pretty old version at this point). This is working on my dev machine as well as ...
1
vote
1answer
207 views
find the CLR version of a DLL [duplicate]
Possible Duplicate:
Determine framework (CLR) version of assembly
I need to get the CLR version of a .NET DLL from a C++ process.
I tried using the .NEt method GetVersionFromProcess but it ...
0
votes
2answers
188 views
CAD Drawing Version Converter Component
I have a situation where i have to stick to existing CAD Viewer component even though that component is not supporting latest DWG versions (Above DWG 2004 version). That's why we are on a look out for ...
8
votes
4answers
888 views
Running .NET 4.0 app with reference to 2.0 library on machine with only 4.0 framework
This would be a real pain to try to duplicate, so I'm hoping someone has a quick answer...
Suppose I have a .NET 4.0 application, with a reference to a .NET 2.0 library (SharpZipLib in this case). ...
0
votes
3answers
2k views
Getting the version number of an application from within a library
I'm developing a library that tries to get the version number of the application that uses it.
In my test application, when the lib is reading the version number using :
...
1
vote
2answers
915 views
How do I change the http version of my web method call to stop 505 error?
I need to get some data from a service provider and have configured our .net app to point to their hosted web service to get the data. Using the code below, when the web method is called ...
4
votes
1answer
778 views
How to make a DLL reference other version of a second DLL?
When a given DLL references a specific version of a 2nd DLL it works. But if the version of the 2nd is newer than the referenced version, my library project, which uses both libraries, yields a ...
4
votes
1answer
488 views
What is the difference between Version and 'Runtime Version' in .Net?
When I open the properties window of one of the referenced dlls in my project in Visual Studio I see a Version and also a runtime version .
Actually it is Rhino.Mocks library I am checking. And I see ...
25
votes
4answers
9k views
How to detect at runtime that .NET version 4.5 currently running your code?
I install .NET 4.5 Developer preview from http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=27541, which 'replaces' .NET 4.0 version.
However, old way to detect .NET framework ...
2
votes
1answer
217 views
What causes an object version change with an object serialized with BinaryFormatter?
Per this question I have an object that I'm serializing with BinaryFormatter. For various reasons we've implemented a poor man's version handling like this with a try-catch block at the bottom for ...
1
vote
2answers
1k views
NHibernate 3.2 By Code ClassMapping for Version Property
What is the correct way to map an timestamp column in an SQL Server 2008 database using NHibernate's new code based mappings?
I have the property in my class defined as byte[] and I'm using the ...
2
votes
1answer
686 views
How to detect XNA version at runtime?
I have a launcher/updater application written for .NET 2.0 that needs to check if the user has XNA 4.0 installed.
If it's not, then user is asked to install it.
How to do it?
4
votes
1answer
859 views
Error loading .Net assembly
I'm trying to anyalyse a problem where an assembly ASSEMBLY is dynamically loaded at runtime using
Assembly.loadFrom("filePath")
in some DLL myDLL1. The same ASSEMBLY was statically linked with ...
0
votes
1answer
108 views
Get Latest Wordpress Version Number .net
I am creating a .net application and I need to somehow find out the the version number of the latest stable release of Wordpress.
Does anyone know if there is a way to get this?
Thanks
EDIT: I have ...
0
votes
2answers
107 views
Force AssemblyVersion(“1.0.*”) to observe DST when populating Revision?
It seems that, when using the following syntax in a C# project's AssemblyInfo.cs file, the Revision value doesn't observe Daylight Saving Time (it does use local time).
[assembly: ...
0
votes
1answer
83 views
Determine whether DateTime was baked into Version of .NET assembly at compile time?
How do I know that adding the Build and Revision values of a given .NET assembly to new DateTime(2000, 1, 1) will give me the compile time?
Put another way: how do I know that the [assembly: ...
2
votes
2answers
1k views
how to add a .net 4.0 dll to a project running on dotnet 3.5
I have a class library build in .net framework 4.0. i want to add it to an old project build in .net framework 3.5 .. is there any way to do it other than upgrading the old project? also it will be ...