Browse Source
git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@2748 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61shortcuts
7 changed files with 1 additions and 132 deletions
@ -1,24 +0,0 @@
@@ -1,24 +0,0 @@
|
||||
@echo off |
||||
|
||||
pushd .. |
||||
|
||||
echo Installing assemblies into the GAC |
||||
echo. |
||||
echo NUnit.Framework.dll |
||||
tools\gacutil2.exe /i tools\NUnit\nunit.framework.dll |
||||
echo NUnit.Core.dll |
||||
tools\gacutil2.exe /i tools\NUnit\nunit.core.dll |
||||
echo. |
||||
echo. |
||||
echo. |
||||
echo Compiling SharpDevelop to native code to improve startup time... |
||||
echo. |
||||
%windir%\Microsoft.NET\Framework\v2.0.50727\ngen install SharpDevelop.exe |
||||
|
||||
popd |
||||
|
||||
rem echo Installing and configuring help system |
||||
rem cd help |
||||
rem call register.bat |
||||
echo. |
||||
@IF %ERRORLEVEL% NEQ 0 PAUSE |
@ -1,20 +0,0 @@
@@ -1,20 +0,0 @@
|
||||
@echo off |
||||
|
||||
pushd .. |
||||
|
||||
echo Removing assemblies from the GAC... |
||||
tools\gacutil2.exe /u tools\NUnit\nunit.framework.dll |
||||
tools\gacutil2.exe /u tools\NUnit\nunit.core.dll |
||||
echo. |
||||
echo. |
||||
echo Uninstalling native images... |
||||
echo. |
||||
%windir%\Microsoft.NET\Framework\v2.0.50727\ngen uninstall SharpDevelop.exe |
||||
|
||||
popd |
||||
|
||||
rem echo Uninstalling help system |
||||
rem cd help |
||||
rem call unregister.bat |
||||
echo. |
||||
@IF %ERRORLEVEL% NEQ 0 PAUSE |
@ -1 +0,0 @@
@@ -1 +0,0 @@
|
||||
This folder is exlusively used by the setup program of #develop |
@ -1,50 +0,0 @@
@@ -1,50 +0,0 @@
|
||||
<Components version="1.0"> |
||||
<System.Windows.Forms.Form> |
||||
<Name value="CodeCoverageRunnerNotFoundForm" /> |
||||
<FormBorderStyle value="SizableToolWindow" /> |
||||
<AcceptButton value="okButton [System.Windows.Forms.Button], Text: OK" /> |
||||
<MinimizeBox value="False" /> |
||||
<StartPosition value="CenterParent" /> |
||||
<MinimumSize value="{Width=365, Height=147}" /> |
||||
<Text value="SharpDevelop" /> |
||||
<MaximizeBox value="False" /> |
||||
<ClientSize value="{Width=357, Height=121}" /> |
||||
<CancelButton value="okButton [System.Windows.Forms.Button], Text: OK" /> |
||||
<Controls> |
||||
<System.Windows.Forms.PictureBox> |
||||
<Name value="iconPictureBox" /> |
||||
<Location value="{X=10,Y=11}" /> |
||||
<Size value="{Width=32, Height=32}" /> |
||||
</System.Windows.Forms.PictureBox> |
||||
<System.Windows.Forms.Button> |
||||
<Name value="okButton" /> |
||||
<DialogResult value="OK" /> |
||||
<Location value="{X=142,Y=82}" /> |
||||
<UseCompatibleTextRendering value="True" /> |
||||
<Text value="OK" /> |
||||
<Anchor value="Bottom" /> |
||||
<UseVisualStyleBackColor value="True" /> |
||||
<Size value="{Width=73, Height=29}" /> |
||||
<FlatAppearance value="System.Windows.Forms.FlatButtonAppearance" /> |
||||
<TabIndex value="1" /> |
||||
</System.Windows.Forms.Button> |
||||
<System.Windows.Forms.LinkLabel> |
||||
<Name value="linkLabel" /> |
||||
<Size value="{Width=93, Height=26}" /> |
||||
<UseCompatibleTextRendering value="True" /> |
||||
<TabIndex value="1" /> |
||||
<Text value="NCover.org" /> |
||||
<Location value="{X=12,Y=86}" /> |
||||
<Anchor value="Bottom, Left" /> |
||||
</System.Windows.Forms.LinkLabel> |
||||
<System.Windows.Forms.Label> |
||||
<Name value="messageLabel" /> |
||||
<Location value="{X=48,Y=11}" /> |
||||
<UseCompatibleTextRendering value="True" /> |
||||
<Anchor value="Top, Bottom, Left, Right" /> |
||||
<Size value="{Width=302, Height=68}" /> |
||||
<TabIndex value="2" /> |
||||
</System.Windows.Forms.Label> |
||||
</Controls> |
||||
</System.Windows.Forms.Form> |
||||
</Components> |
@ -1,34 +0,0 @@
@@ -1,34 +0,0 @@
|
||||
// <file>
|
||||
// <copyright see="prj:///doc/copyright.txt"/>
|
||||
// <license see="prj:///doc/license.txt"/>
|
||||
// <owner name="Matthew Ward" email="mrward@users.sourceforge.net"/>
|
||||
// <version>$Revision$</version>
|
||||
// </file>
|
||||
|
||||
using System; |
||||
using System.Diagnostics; |
||||
using System.Windows.Forms; |
||||
|
||||
using ICSharpCode.Core; |
||||
using ICSharpCode.SharpDevelop.Gui.XmlForms; |
||||
|
||||
namespace ICSharpCode.CodeCoverage |
||||
{ |
||||
public class CodeCoverageRunnerNotFoundForm : XmlForm |
||||
{ |
||||
public CodeCoverageRunnerNotFoundForm() |
||||
{ |
||||
SetupFromXmlStream(this.GetType().Assembly.GetManifestResourceStream("ICSharpCode.CodeCoverage.Resources.CodeCoverageRunnerNotFoundForm.xfrm")); |
||||
|
||||
((Label)ControlDictionary["messageLabel"]).Text = StringParser.Parse("${res:ICSharpCode.CodeCoverage.NCoverNotFound}"); |
||||
((Button)ControlDictionary["okButton"]).Text = StringParser.Parse("${res:Global.OKButtonText}"); |
||||
((PictureBox)ControlDictionary["iconPictureBox"]).Image = ResourceService.GetBitmap("Icons.32x32.Information"); |
||||
((LinkLabel)ControlDictionary["linkLabel"]).Click += LinkLabelClicked; |
||||
} |
||||
|
||||
void LinkLabelClicked(object sender, EventArgs e) |
||||
{ |
||||
Process.Start("http://ncover.org"); |
||||
} |
||||
} |
||||
} |
Loading…
Reference in new issue