Manually changing the .Net Framework Vault runs under

A collection of information about Vault, including solutions to common problems.

Moderator: SourceGear

Post Reply
dan
Posts: 2448
Joined: Wed Dec 17, 2003 5:03 pm
Location: SourceGear
Contact:

Manually changing the .Net Framework Vault runs under

Post by dan » Tue Jul 26, 2005 3:34 pm

You can change the version of the framework Vault uses when executing by editing the .config file associated with the program you are running.

- For the Vault standalone client, edit VaultGUIClient.exe.config in the same folder as VaultGUIClient.exe
- For the Admin Tool, edit VaultAdmin.exe.config in the same folder as VaultAdmin.exe
- For the server, edit the web.config file in the virtual folder where Vault runs.

Note that the IDE components cannot have their .Net Framework versions changed, because Visual Studio determines which framwork to use, based on the version of VS being used.


Edit the file so the "startup" element is within the "configuration" element as shown below. Note that the version number must contain the exact version number, and a preceding "v".

Code: Select all

<configuration>

<startup>
  <requiredRuntime version="v1.1.4322" safemode="true" />
</startup>

.
.
.
</configuation>

Post Reply