Browse Source

Require Visual C++ 2008 Runtime to be installed for running the SharpDevelop setup.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@5569 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
pull/1/head
Daniel Grunwald 16 years ago
parent
commit
f834492d3c
  1. 4
      src/Main/Base/Project/Src/Gui/WorkbenchSingleton.cs
  2. 12
      src/Setup/Setup.wxs

4
src/Main/Base/Project/Src/Gui/WorkbenchSingleton.cs

@ -100,10 +100,6 @@ namespace ICSharpCode.SharpDevelop.Gui @@ -100,10 +100,6 @@ namespace ICSharpCode.SharpDevelop.Gui
Debug.WriteLine("ActiveWorkbenchWindowChanged to " + workbench.ActiveWorkbenchWindow);
LoggingService.Debug("ActiveWorkbenchWindowChanged to " + workbench.ActiveWorkbenchWindow);
};
System.Windows.Forms.Application.Idle += delegate {
LoggingService.Debug("Idle");
};
}
/// <summary>

12
src/Setup/Setup.wxs

@ -59,12 +59,12 @@ @@ -59,12 +59,12 @@
Installed OR (NETFRAMEWORK40FULL AND NETFRAMEWORK40FULLVERSION = "4.0.30128")
</Condition>
<!--
Check for the operating system is at least Windows 2000 (VersionNT = 500).
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msi/setup/operating_system_property_values.asp
-->
<Condition Message="The operating system you are using is not supported by SharpDevelop (95/98/ME/NT3.x/NT4.x).">
Installed OR VersionNT &gt;= 500
<!-- Check for C++ 2008 Runtime (we accept any 2008 runtime version) -->
<Property Id="VCPP2008RUNTIME" Secure="yes">
<RegistrySearch Id="VCpp2008Runtime" Root="HKLM" Key="SOFTWARE\Microsoft\DevDiv\VC\Servicing\9.0" Name="SP" Type="raw" />
</Property>
<Condition Message="This setup requires the Microsoft Visual C++ 2008 SP1 Redistributable Package to be installed.">
Installed OR (VCPP2008RUNTIME &lt;&gt; "")
</Condition>
<!--

Loading…
Cancel
Save