Skip to content

Commit cfe8c1f

Browse files
unknownjagregory
unknown
authored andcommitted
Upgraded mspec
1 parent 78ee558 commit cfe8c1f

40 files changed

+121
-10
lines changed

tools/mspec/Castle.Core.dll

-72 KB
Binary file not shown.

tools/mspec/Castle.Core.pdb

-310 KB
Binary file not shown.

tools/mspec/Gallio.dll

-656 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
mkdir "%APPDATA%\JetBrains\ReSharper\v4.1\vs9.0\Plugins"
2+
copy Machine.Specifications.dll "%APPDATA%\JetBrains\ReSharper\v4.1\vs9.0\Plugins"
3+
copy Machine.Specifications.pdb "%APPDATA%\JetBrains\ReSharper\v4.1\vs9.0\Plugins"
4+
copy Machine.Specifications.ReSharperRunner.4.1.dll "%APPDATA%\JetBrains\ReSharper\v4.1\vs9.0\Plugins"
5+
copy Machine.Specifications.ReSharperRunner.4.1.pdb "%APPDATA%\JetBrains\ReSharper\v4.1\vs9.0\Plugins"
6+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
mkdir "%APPDATA%\JetBrains\ReSharper\v4.5\vs9.0\Plugins"
2+
copy Machine.Specifications.dll "%APPDATA%\JetBrains\ReSharper\v4.5\vs9.0\Plugins"
3+
copy Machine.Specifications.pdb "%APPDATA%\JetBrains\ReSharper\v4.5\vs9.0\Plugins"
4+
copy Machine.Specifications.ReSharperRunner.4.5.dll "%APPDATA%\JetBrains\ReSharper\v4.5\vs9.0\Plugins"
5+
copy Machine.Specifications.ReSharperRunner.4.5.pdb "%APPDATA%\JetBrains\ReSharper\v4.5\vs9.0\Plugins"
6+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
mkdir "%APPDATA%\JetBrains\ReSharper\v5.0\vs9.0\Plugins"
2+
copy Machine.Specifications.dll "%APPDATA%\JetBrains\ReSharper\v5.0\vs9.0\Plugins"
3+
copy Machine.Specifications.pdb "%APPDATA%\JetBrains\ReSharper\v5.0\vs9.0\Plugins"
4+
copy Machine.Specifications.ReSharperRunner.5.0.dll "%APPDATA%\JetBrains\ReSharper\v5.0\vs9.0\Plugins"
5+
copy Machine.Specifications.ReSharperRunner.5.0.pdb "%APPDATA%\JetBrains\ReSharper\v5.0\vs9.0\Plugins"
6+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
mkdir "%APPDATA%\JetBrains\ReSharper\v5.0\vs10.0\Plugins"
2+
copy Machine.Specifications.dll "%APPDATA%\JetBrains\ReSharper\v5.0\vs10.0\Plugins"
3+
copy Machine.Specifications.pdb "%APPDATA%\JetBrains\ReSharper\v5.0\vs10.0\Plugins"
4+
copy Machine.Specifications.ReSharperRunner.5.0.dll "%APPDATA%\JetBrains\ReSharper\v5.0\vs10.0\Plugins"
5+
copy Machine.Specifications.ReSharperRunner.5.0.pdb "%APPDATA%\JetBrains\ReSharper\v5.0\vs10.0\Plugins"
6+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
mkdir "%APPDATA%\JetBrains\ReSharper\v5.1\vs9.0\Plugins"
2+
copy Machine.Specifications.dll "%APPDATA%\JetBrains\ReSharper\v5.1\vs9.0\Plugins"
3+
copy Machine.Specifications.pdb "%APPDATA%\JetBrains\ReSharper\v5.1\vs9.0\Plugins"
4+
copy Machine.Specifications.ReSharperRunner.5.1.dll "%APPDATA%\JetBrains\ReSharper\v5.1\vs9.0\Plugins"
5+
copy Machine.Specifications.ReSharperRunner.5.1.pdb "%APPDATA%\JetBrains\ReSharper\v5.1\vs9.0\Plugins"
6+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
mkdir "%APPDATA%\JetBrains\ReSharper\v5.1\vs10.0\Plugins"
2+
copy Machine.Specifications.dll "%APPDATA%\JetBrains\ReSharper\v5.1\vs10.0\Plugins"
3+
copy Machine.Specifications.pdb "%APPDATA%\JetBrains\ReSharper\v5.1\vs10.0\Plugins"
4+
copy Machine.Specifications.ReSharperRunner.5.1.dll "%APPDATA%\JetBrains\ReSharper\v5.1\vs10.0\Plugins"
5+
copy Machine.Specifications.ReSharperRunner.5.1.pdb "%APPDATA%\JetBrains\ReSharper\v5.1\vs10.0\Plugins"
6+

tools/mspec/InstallTDNetRunner.bat

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
@echo off & if not "%ECHO%"=="" echo %ECHO%
2+
3+
setlocal
4+
set LOCALDIR=%~dp0
5+
6+
echo Windows Registry Editor Version 5.00 > MSpecTDNet.reg
7+
echo [HKEY_CURRENT_USER\Software\MutantDesign\TestDriven.NET\TestRunners\MSpec] >> MSpecTDNet.reg
8+
echo "Application"="" >> MSpecTDNet.reg
9+
echo "AssemblyPath"="%LOCALDIR:\=\\%Machine.Specifications.TDNetRunner.dll" >> MSpecTDNet.reg
10+
echo "TargetFrameworkAssemblyName"="Machine.Specifications" >> MSpecTDNet.reg
11+
echo "TypeName"="Machine.Specifications.TDNetRunner.SpecificationRunner" >> MSpecTDNet.reg
12+
echo @="5" >> MSpecTDNet.reg
13+
14+
regedit MSpecTDNet.reg
15+
16+
del MSpecTDNet.reg
+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
@echo off & if not "%ECHO%"=="" echo %ECHO%
2+
3+
setlocal
4+
set LOCALDIR=%~dp0
5+
6+
echo Windows Registry Editor Version 5.00 > MSpecTDNet.reg
7+
echo [HKEY_CURRENT_USER\Software\MutantDesign\TestDriven.NET\TestRunners\MSpec] >> MSpecTDNet.reg
8+
echo "Application"="" >> MSpecTDNet.reg
9+
echo "AssemblyPath"="%LOCALDIR:\=\\%Machine.Specifications.TDNetRunner.dll" >> MSpecTDNet.reg
10+
echo "TargetFrameworkAssemblyName"="Machine.Specifications" >> MSpecTDNet.reg
11+
echo "TypeName"="Machine.Specifications.TDNetRunner.SpecificationRunner" >> MSpecTDNet.reg
12+
echo @="5" >> MSpecTDNet.reg
13+
14+
regedit /s MSpecTDNet.reg
15+
16+
del MSpecTDNet.reg

tools/mspec/InstallUtil.InstallLog

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
Running a transacted installation.
33

44
Beginning the Install phase of the installation.
5-
See the contents of the log file for the C:\Documents and Settings\James Gregory\dev\machine.specifications\Build\Debug\Machine.Specifications.Reporting.dll assembly's progress.
6-
The file is located at C:\Documents and Settings\James Gregory\dev\machine.specifications\Build\Debug\Machine.Specifications.Reporting.InstallLog.
5+
See the contents of the log file for the C:\Users\James Gregory\dev\machine.specifications\Build\Debug\Machine.Specifications.Reporting.dll assembly's progress.
6+
The file is located at C:\Users\James Gregory\dev\machine.specifications\Build\Debug\Machine.Specifications.Reporting.InstallLog.
77

88
The Install phase completed successfully, and the Commit phase is beginning.
9-
See the contents of the log file for the C:\Documents and Settings\James Gregory\dev\machine.specifications\Build\Debug\Machine.Specifications.Reporting.dll assembly's progress.
10-
The file is located at C:\Documents and Settings\James Gregory\dev\machine.specifications\Build\Debug\Machine.Specifications.Reporting.InstallLog.
9+
See the contents of the log file for the C:\Users\James Gregory\dev\machine.specifications\Build\Debug\Machine.Specifications.Reporting.dll assembly's progress.
10+
The file is located at C:\Users\James Gregory\dev\machine.specifications\Build\Debug\Machine.Specifications.Reporting.InstallLog.
1111

1212
The Commit phase completed successfully.
1313

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<plugin pluginId="Gallio.MSpecAdapter"
3+
recommendedInstallationPath="MSpec"
4+
xmlns="http://www.gallio.org/">
5+
<traits>
6+
<name>Machine Specifications Adapter Plugin</name>
7+
<version>0.3.0.0</version>
8+
<description>Provides support for running MSpec within gallio. Requires the assemblies from MSpec.</description>
9+
</traits>
10+
11+
<dependencies>
12+
<dependency pluginId="Gallio" />
13+
</dependencies>
14+
15+
<files>
16+
<file path="Machine.Specifications.dll" />
17+
<file path="Machine.Specifications.GallioAdapter.plugin" />
18+
<file path="Machine.Specifications.GallioAdapter.3.1.dll" />
19+
<!--<file path="Readme.txt" />-->
20+
</files>
21+
22+
<assemblies>
23+
<assembly fullName="Machine.Specifications.GallioAdapter.3.1, Version=0.3.0.0, Culture=neutral, PublicKeyToken=null"
24+
codeBase="Machine.Specifications.GallioAdapter.3.1.dll"
25+
qualifyPartialName="true" />
26+
27+
<assembly fullName="Machine.Specifications, Version=0.3.0.0, Culture=neutral, PublicKeyToken=5c474de7a495cff1"
28+
codeBase="Machine.Specifications.dll" />
29+
</assemblies>
30+
31+
<components>
32+
<component componentId="Machine.Specifications"
33+
serviceId="Gallio.TestFramework"
34+
componentType="Machine.Specifications.GallioAdapter.MachineSpecificationsFramework, Machine.Specifications.GallioAdapter.3.1">
35+
<traits>
36+
<name>Machine Specifications</name>
37+
<frameworkAssemblies>Machine.Specifications, Version=0.3.0.0</frameworkAssemblies>
38+
<version>0.3.0.0</version>
39+
<fileTypes>Assembly</fileTypes>
40+
</traits>
41+
</component>
42+
</components>
43+
</plugin>
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
Installing assembly 'C:\Documents and Settings\James Gregory\dev\machine.specifications\Build\Debug\Machine.Specifications.Reporting.dll'.
1+
Installing assembly 'C:\Users\James Gregory\dev\machine.specifications\Build\Debug\Machine.Specifications.Reporting.dll'.
22
Affected parameters are:
33
logtoconsole =
4-
assemblypath = C:\Documents and Settings\James Gregory\dev\machine.specifications\Build\Debug\Machine.Specifications.Reporting.dll
5-
logfile = C:\Documents and Settings\James Gregory\dev\machine.specifications\Build\Debug\Machine.Specifications.Reporting.InstallLog
6-
Committing assembly 'C:\Documents and Settings\James Gregory\dev\machine.specifications\Build\Debug\Machine.Specifications.Reporting.dll'.
4+
assemblypath = C:\Users\James Gregory\dev\machine.specifications\Build\Debug\Machine.Specifications.Reporting.dll
5+
logfile = C:\Users\James Gregory\dev\machine.specifications\Build\Debug\Machine.Specifications.Reporting.InstallLog
6+
Committing assembly 'C:\Users\James Gregory\dev\machine.specifications\Build\Debug\Machine.Specifications.Reporting.dll'.
77
Affected parameters are:
88
logtoconsole =
9-
assemblypath = C:\Documents and Settings\James Gregory\dev\machine.specifications\Build\Debug\Machine.Specifications.Reporting.dll
10-
logfile = C:\Documents and Settings\James Gregory\dev\machine.specifications\Build\Debug\Machine.Specifications.Reporting.InstallLog
9+
assemblypath = C:\Users\James Gregory\dev\machine.specifications\Build\Debug\Machine.Specifications.Reporting.dll
10+
logfile = C:\Users\James Gregory\dev\machine.specifications\Build\Debug\Machine.Specifications.Reporting.InstallLog
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
6.5 KB
Binary file not shown.
-18 KB
Binary file not shown.

tools/mspec/WatiN.Core.dll

300 KB
Binary file not shown.

tools/mspec/mspec.exe

0 Bytes
Binary file not shown.

tools/mspec/mspec.pdb

-2 KB
Binary file not shown.

0 commit comments

Comments
 (0)