English 中文(简体)
#Develop installer- This setup requires the .NET Framework 3.5 SP1 to be installed
原标题:

I m trying to install the latest version of #Develop but am getting the message

This setup requires the .NET Framework 3.5 SP1 to be installed

I m running Windows 7, and I ve tried running the installer for .NET Framework 3.5 SP1 plus the installer for the Windows 7 SDK.

The installer just says to use the Control Panel to turn Windows Features on and off to configure .NET Framework 3.5 SP1

Anyone got any suggestions ?

最佳回答

I used Control Panel to disable the 3.5 features, reinstalled 3.5 sp1 and then used Control Panel to re-enable them.

I checked the registry value that Matt suggested, and it was indeed 1, without any editing required.

Ran the installer and it installed successfully.

I even have version 2.2 installed and both seem to work.

问题回答

As the message says, install .net3.5 SP1

There seems to be a problem identifying whether .NET 3.5 SP1 is installed on Windows 7.

SharpDevelop s installer checks the following registry key to ensure .NET 3.5 SP 1 is installed:

Key="HKLMSoftwareMicrosoftNET Framework SetupNDPv3.5"

Name="SP"

The value of this registry entry needs to be 1. Create this registry entry if it does not exist and SharpDevelop should install successfully.





相关问题
Manually implementing high performance algorithms in .NET

As a learning experience I recently tried implementing Quicksort with 3 way partitioning in C#. Apart from needing to add an extra range check on the left/right variables before the recursive call, ...

Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How do I compare two decimals to 10 decimal places?

I m using decimal type (.net), and I want to see if two numbers are equal. But I only want to be accurate to 10 decimal places. For example take these three numbers. I want them all to be equal. 0....

Exception practices when creating a SynchronizationContext?

I m creating an STA version of the SynchronizationContext for use in Windows Workflow 4.0. I m wondering what to do about exceptions when Post-ing callbacks. The SynchronizationContext can be used ...

Show running instance in single instance application

I am building an application with C#. I managed to turn this into a single instance application by checking if the same process is already running. Process[] pname = Process.GetProcessesByName("...

How to combine DataTrigger and EventTrigger?

NOTE I have asked the related question (with an accepted answer): How to combine DataTrigger and Trigger? I think I need to combine an EventTrigger and a DataTrigger to achieve what I m after: when ...

热门标签