Browse Source
Machine.Specifications goes to Tools/Machine.Specifications Others go to Libraries inside Machine.Specifications directory.pull/23/head
66 changed files with 186 additions and 518 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,5 +0,0 @@
@@ -1,5 +0,0 @@
|
||||
<TestRunner> |
||||
<FriendlyName>Machine.Specifications 0.4.13-2780e33</FriendlyName> |
||||
<AssemblyPath>Machine.Specifications.TDNetRunner.dll</AssemblyPath> |
||||
<TypeName>Machine.Specifications.TDNetRunner.SpecificationRunner</TypeName> |
||||
</TestRunner> |
@ -1,347 +0,0 @@
@@ -1,347 +0,0 @@
|
||||
<?xml version="1.0"?> |
||||
<doc> |
||||
<assembly> |
||||
<name>CommandLine</name> |
||||
</assembly> |
||||
<members> |
||||
<member name="T:CommandLine.Text.HelpText"> |
||||
<summary> |
||||
Models an help text and collects related informations. |
||||
You can assign it in place of a <see cref="T:System.String"/> instance, this is why |
||||
this type lacks a method to add lines after the options usage informations; |
||||
simple use a <see cref="T:System.Text.StringBuilder"/> or similar solutions. |
||||
</summary> |
||||
</member> |
||||
<member name="M:CommandLine.Text.HelpText.#ctor(System.String)"> |
||||
<summary> |
||||
Initializes a new instance of the <see cref="T:CommandLine.Text.HelpText"/> class |
||||
specifying heading informations. |
||||
</summary> |
||||
<param name="heading">A string with heading information or |
||||
an instance of <see cref="T:CommandLine.Text.HeadingInfo"/>.</param> |
||||
<exception cref="T:System.ArgumentException">Thrown when parameter <paramref name="heading"/> is null or empty string.</exception> |
||||
</member> |
||||
<member name="M:CommandLine.Text.HelpText.AddPreOptionsLine(System.String)"> |
||||
<summary> |
||||
Adds a text line after copyright and before options usage informations. |
||||
</summary> |
||||
<param name="value">A <see cref="T:System.String"/> instance.</param> |
||||
<exception cref="T:System.ArgumentNullException">Thrown when parameter <paramref name="value"/> is null or empty string.</exception> |
||||
</member> |
||||
<member name="M:CommandLine.Text.HelpText.AddOptions(System.Object)"> |
||||
<summary> |
||||
Adds a text block with options usage informations. |
||||
</summary> |
||||
<param name="options">The instance that collected command line arguments parsed with <see cref="T:CommandLine.Parser"/> class.</param> |
||||
<exception cref="T:System.ArgumentNullException">Thrown when parameter <paramref name="options"/> is null.</exception> |
||||
</member> |
||||
<member name="M:CommandLine.Text.HelpText.AddOptions(System.Object,System.String)"> |
||||
<summary> |
||||
Adds a text block with options usage informations. |
||||
</summary> |
||||
<param name="options">The instance that collected command line arguments parsed with the <see cref="T:CommandLine.Parser"/> class.</param> |
||||
<param name="requiredWord">The word to use when the option is required.</param> |
||||
<exception cref="T:System.ArgumentNullException">Thrown when parameter <paramref name="options"/> is null.</exception> |
||||
<exception cref="T:System.ArgumentNullException">Thrown when parameter <paramref name="requiredWord"/> is null or empty string.</exception> |
||||
</member> |
||||
<member name="M:CommandLine.Text.HelpText.ToString"> |
||||
<summary> |
||||
Returns the help informations as a <see cref="T:System.String"/>. |
||||
</summary> |
||||
<returns>The <see cref="T:System.String"/> that contains the help informations.</returns> |
||||
</member> |
||||
<member name="M:CommandLine.Text.HelpText.op_Implicit(CommandLine.Text.HelpText)~System.String"> |
||||
<summary> |
||||
Converts the help informations to a <see cref="T:System.String"/>. |
||||
</summary> |
||||
<param name="info">This <see cref="T:CommandLine.Text.HelpText"/> instance.</param> |
||||
<returns>The <see cref="T:System.String"/> that contains the help informations.</returns> |
||||
</member> |
||||
<member name="P:CommandLine.Text.HelpText.Copyright"> |
||||
<summary> |
||||
Sets the copyright information string. |
||||
You can directly assign a <see cref="T:CommandLine.Text.CopyrightInfo"/> instance. |
||||
</summary> |
||||
</member> |
||||
<member name="T:CommandLine.OptionAttribute"> |
||||
<summary> |
||||
Models an option specification. |
||||
</summary> |
||||
</member> |
||||
<member name="T:CommandLine.BaseOptionAttribute"> |
||||
<summary> |
||||
Provides base properties for creating an attribute, used to define rules for command line parsing. |
||||
</summary> |
||||
</member> |
||||
<member name="P:CommandLine.BaseOptionAttribute.ShortName"> |
||||
<summary> |
||||
Short name of this command line option. This name is usually a single character. |
||||
</summary> |
||||
</member> |
||||
<member name="P:CommandLine.BaseOptionAttribute.LongName"> |
||||
<summary> |
||||
Long name of this command line option. This name is usually a single english word. |
||||
</summary> |
||||
</member> |
||||
<member name="P:CommandLine.BaseOptionAttribute.Required"> |
||||
<summary> |
||||
True if this command line option is required. |
||||
</summary> |
||||
</member> |
||||
<member name="P:CommandLine.BaseOptionAttribute.HelpText"> |
||||
<summary> |
||||
A short description of this command line option. Usually a sentence summary. |
||||
</summary> |
||||
</member> |
||||
<member name="M:CommandLine.OptionAttribute.#ctor(System.String,System.String)"> |
||||
<summary> |
||||
Initializes a new instance of the <see cref="T:CommandLine.OptionAttribute"/> class. |
||||
</summary> |
||||
<param name="shortName">The short name of the option or null if not used.</param> |
||||
<param name="longName">The long name of the option or null if not used.</param> |
||||
</member> |
||||
<member name="T:CommandLine.Text.CopyrightInfo"> |
||||
<summary> |
||||
Models the copyright informations part of an help text. |
||||
You can assign it where you assign any <see cref="T:System.String"/> instance. |
||||
</summary> |
||||
</member> |
||||
<member name="M:CommandLine.Text.CopyrightInfo.#ctor"> |
||||
<summary> |
||||
Initializes a new instance of the <see cref="T:CommandLine.Text.CopyrightInfo"/> class. |
||||
</summary> |
||||
</member> |
||||
<member name="M:CommandLine.Text.CopyrightInfo.#ctor(System.String,System.Int32)"> |
||||
<summary> |
||||
Initializes a new instance of the <see cref="T:CommandLine.Text.CopyrightInfo"/> class |
||||
specifying author and year. |
||||
</summary> |
||||
<param name="author">The company or person holding the copyright.</param> |
||||
<param name="year">The year of coverage of copyright.</param> |
||||
<exception cref="T:System.ArgumentException">Thrown when parameter <paramref name="author"/> is null or empty string.</exception> |
||||
</member> |
||||
<member name="M:CommandLine.Text.CopyrightInfo.#ctor(System.String,System.Int32[])"> |
||||
<summary> |
||||
Initializes a new instance of the <see cref="T:CommandLine.Text.CopyrightInfo"/> class |
||||
specifying author and years. |
||||
</summary> |
||||
<param name="author">The company or person holding the copyright.</param> |
||||
<param name="years">The years of coverage of copyright.</param> |
||||
<exception cref="T:System.ArgumentException">Thrown when parameter <paramref name="author"/> is null or empty string.</exception> |
||||
<exception cref="T:System.ArgumentOutOfRangeException">Thrown when parameter <paramref name="years"/> is not supplied.</exception> |
||||
</member> |
||||
<member name="M:CommandLine.Text.CopyrightInfo.#ctor(System.Boolean,System.String,System.Int32[])"> |
||||
<summary> |
||||
Initializes a new instance of the <see cref="T:CommandLine.Text.CopyrightInfo"/> class |
||||
specifying symbol case, author and years. |
||||
</summary> |
||||
<param name="isSymbolUpper">The case of the copyright symbol.</param> |
||||
<param name="author">The company or person holding the copyright.</param> |
||||
<param name="years">The years of coverage of copyright.</param> |
||||
<exception cref="T:System.ArgumentException">Thrown when parameter <paramref name="author"/> is null or empty string.</exception> |
||||
<exception cref="T:System.ArgumentOutOfRangeException">Thrown when parameter <paramref name="years"/> is not supplied.</exception> |
||||
</member> |
||||
<member name="M:CommandLine.Text.CopyrightInfo.ToString"> |
||||
<summary> |
||||
Returns the copyright informations as a <see cref="T:System.String"/>. |
||||
</summary> |
||||
<returns>The <see cref="T:System.String"/> that contains the copyright informations.</returns> |
||||
</member> |
||||
<member name="M:CommandLine.Text.CopyrightInfo.op_Implicit(CommandLine.Text.CopyrightInfo)~System.String"> |
||||
<summary> |
||||
Converts the copyright informations to a <see cref="T:System.String"/>. |
||||
</summary> |
||||
<param name="info">This <see cref="T:CommandLine.Text.CopyrightInfo"/> instance.</param> |
||||
<returns>The <see cref="T:System.String"/> that contains the copyright informations.</returns> |
||||
</member> |
||||
<member name="M:CommandLine.Text.CopyrightInfo.FormatYears(System.Int32[])"> |
||||
<summary> |
||||
When overridden in a derived class, allows to specify a new algorithm to render copyright years |
||||
as a <see cref="T:System.String"/> instance. |
||||
</summary> |
||||
<param name="years">A <see cref="T:System.Int32"/> array of years.</param> |
||||
<returns>A <see cref="T:System.String"/> instance with copyright years.</returns> |
||||
</member> |
||||
<member name="P:CommandLine.Text.CopyrightInfo.CopyrightWord"> |
||||
<summary> |
||||
When overridden in a derived class, allows to specify a different copyright word. |
||||
</summary> |
||||
</member> |
||||
<member name="T:CommandLine.HelpOptionAttribute"> |
||||
<summary> |
||||
Indicates the instance method that must be invoked when it becomes necessary show your help screen. |
||||
The method signature is an instance method with no parameters and <see cref="T:System.String"/> |
||||
return value. |
||||
</summary> |
||||
</member> |
||||
<member name="M:CommandLine.HelpOptionAttribute.#ctor"> |
||||
<summary> |
||||
Initializes a new instance of the <see cref="T:CommandLine.HelpOptionAttribute"/> class. |
||||
</summary> |
||||
</member> |
||||
<member name="M:CommandLine.HelpOptionAttribute.#ctor(System.String,System.String)"> |
||||
<summary> |
||||
Initializes a new instance of the <see cref="T:CommandLine.HelpOptionAttribute"/> class. |
||||
Allows you to define short and long option names. |
||||
</summary> |
||||
<param name="shortName">The short name of the option or null if not used.</param> |
||||
<param name="longName">The long name of the option or null if not used.</param> |
||||
</member> |
||||
<member name="P:CommandLine.HelpOptionAttribute.Required"> |
||||
<summary> |
||||
Returns always false for this kind of option. |
||||
This behaviour can't be changed by design; if you try set <see cref="P:CommandLine.HelpOptionAttribute.Required"/> |
||||
an <see cref="T:System.InvalidOperationException"/> will be thrown. |
||||
</summary> |
||||
</member> |
||||
<member name="T:CommandLine.OptionListAttribute"> |
||||
<summary> |
||||
Models an option that can accept multiple values. |
||||
Must be applied to a field compatible with an <see cref="T:System.Collections.Generic.IList`1"/> interface |
||||
of <see cref="T:System.String"/> instances. |
||||
</summary> |
||||
</member> |
||||
<member name="M:CommandLine.OptionListAttribute.#ctor(System.String,System.String)"> |
||||
<summary> |
||||
Initializes a new instance of the <see cref="T:CommandLine.OptionListAttribute"/> class. |
||||
</summary> |
||||
<param name="shortName">The short name of the option or null if not used.</param> |
||||
<param name="longName">The long name of the option or null if not used.</param> |
||||
</member> |
||||
<member name="M:CommandLine.OptionListAttribute.#ctor(System.String,System.String,System.Char)"> |
||||
<summary> |
||||
Initializes a new instance of the <see cref="T:CommandLine.OptionListAttribute"/> class. |
||||
</summary> |
||||
<param name="shortName">The short name of the option or null if not used.</param> |
||||
<param name="longName">The long name of the option or null if not used.</param> |
||||
<param name="separator">Values separator character.</param> |
||||
</member> |
||||
<member name="P:CommandLine.OptionListAttribute.Separator"> |
||||
<summary> |
||||
Gets or sets the values separator character. |
||||
</summary> |
||||
</member> |
||||
<member name="T:CommandLine.ValueListAttribute"> |
||||
<summary> |
||||
Models a list of command line arguments that are not options. |
||||
Must be applied to a field compatible with an <see cref="T:System.Collections.Generic.IList`1"/> interface |
||||
of <see cref="T:System.String"/> instances. |
||||
</summary> |
||||
</member> |
||||
<member name="M:CommandLine.ValueListAttribute.#ctor(System.Type)"> |
||||
<summary> |
||||
Initializes a new instance of the <see cref="T:CommandLine.ValueListAttribute"/> class. |
||||
</summary> |
||||
<param name="concreteType">A type that implements <see cref="T:System.Collections.Generic.IList`1"/>.</param> |
||||
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="concreteType"/> is null.</exception> |
||||
</member> |
||||
<member name="P:CommandLine.ValueListAttribute.MaximumElements"> |
||||
<summary> |
||||
Gets or sets the maximum element allow for the list managed by <see cref="T:CommandLine.ValueListAttribute"/> type. |
||||
If lesser than 0, no upper bound is fixed. |
||||
If equal to 0, no elements are allowed. |
||||
</summary> |
||||
</member> |
||||
<member name="T:CommandLine.Parser"> |
||||
<summary> |
||||
Provides methods to parse command line arguments. This class cannot be inherited. |
||||
</summary> |
||||
</member> |
||||
<member name="M:CommandLine.Parser.ParseArguments(System.String[],System.Object)"> |
||||
<summary> |
||||
Parses a <see cref="T:System.String"/> array of command line arguments, |
||||
setting values read in <paramref name="options"/> parameter instance. |
||||
</summary> |
||||
<param name="args">A <see cref="T:System.String"/> array of command line arguments.</param> |
||||
<param name="options">An instance to receive values. |
||||
Parsing rules are defined using <see cref="T:CommandLine.BaseOptionAttribute"/> derived types.</param> |
||||
<returns>True if parsing process succeed.</returns> |
||||
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="args"/> is null.</exception> |
||||
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="options"/> is null.</exception> |
||||
</member> |
||||
<member name="M:CommandLine.Parser.ParseArguments(System.String[],System.Object,System.IO.TextWriter)"> |
||||
<summary> |
||||
Parses a <see cref="T:System.String"/> array of command line arguments, |
||||
setting values read in <paramref name="options"/> parameter instance. |
||||
This overloads allows you to specify a <see cref="T:System.IO.TextWriter"/> |
||||
derived instance for write text messages. |
||||
</summary> |
||||
<param name="args">A <see cref="T:System.String"/> array of command line arguments.</param> |
||||
<param name="options">An instance to receive values. |
||||
Parsing rules are defined using <see cref="T:CommandLine.BaseOptionAttribute"/> derived types.</param> |
||||
<param name="helpWriter">Any instance derived from <see cref="T:System.IO.TextWriter"/>, |
||||
usually <see cref="P:System.Console.Out"/>.</param> |
||||
<returns>True if parsing process succeed.</returns> |
||||
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="args"/> is null.</exception> |
||||
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="options"/> is null.</exception> |
||||
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="helpWriter"/> is null.</exception> |
||||
</member> |
||||
<member name="T:CommandLine.IncompatibleTypesException"> |
||||
<summary> |
||||
Represents the exception that is thrown when an attempt to assign incopatible types. |
||||
</summary> |
||||
</member> |
||||
<member name="T:CommandLine.Text.HeadingInfo"> |
||||
<summary> |
||||
Models the heading informations part of an help text. |
||||
You can assign it where you assign any <see cref="T:System.String"/> instance. |
||||
</summary> |
||||
</member> |
||||
<member name="M:CommandLine.Text.HeadingInfo.#ctor(System.String)"> |
||||
<summary> |
||||
Initializes a new instance of the <see cref="T:CommandLine.Text.HeadingInfo"/> class |
||||
specifying program name. |
||||
</summary> |
||||
<param name="programName">The name of the program.</param> |
||||
<exception cref="T:System.ArgumentException">Thrown when parameter <paramref name="programName"/> is null or empty string.</exception> |
||||
</member> |
||||
<member name="M:CommandLine.Text.HeadingInfo.#ctor(System.String,System.String)"> |
||||
<summary> |
||||
Initializes a new instance of the <see cref="T:CommandLine.Text.HeadingInfo"/> class |
||||
specifying program name and version. |
||||
</summary> |
||||
<param name="programName">The name of the program.</param> |
||||
<param name="version">The version of the program.</param> |
||||
<exception cref="T:System.ArgumentException">Thrown when parameter <paramref name="programName"/> is null or empty string.</exception> |
||||
</member> |
||||
<member name="M:CommandLine.Text.HeadingInfo.ToString"> |
||||
<summary> |
||||
Returns the heading informations as a <see cref="T:System.String"/>. |
||||
</summary> |
||||
<returns>The <see cref="T:System.String"/> that contains the heading informations.</returns> |
||||
</member> |
||||
<member name="M:CommandLine.Text.HeadingInfo.op_Implicit(CommandLine.Text.HeadingInfo)~System.String"> |
||||
<summary> |
||||
Converts the heading informations to a <see cref="T:System.String"/>. |
||||
</summary> |
||||
<param name="info">This <see cref="T:CommandLine.Text.HeadingInfo"/> instance.</param> |
||||
<returns>The <see cref="T:System.String"/> that contains the heading informations.</returns> |
||||
</member> |
||||
<member name="M:CommandLine.Text.HeadingInfo.WriteMessage(System.String,System.IO.TextWriter)"> |
||||
<summary> |
||||
Writes out a string and a new line using the program name specified in the constructor |
||||
and <paramref name="message"/> parameter. |
||||
</summary> |
||||
<param name="message">The <see cref="T:System.String"/> message to write.</param> |
||||
<param name="writer">The target <see cref="T:System.IO.TextWriter"/> derived type.</param> |
||||
<exception cref="T:System.ArgumentException">Thrown when parameter <paramref name="message"/> is null or empty string.</exception> |
||||
<exception cref="T:System.ArgumentNullException">Thrown when parameter <paramref name="writer"/> is null.</exception> |
||||
</member> |
||||
<member name="M:CommandLine.Text.HeadingInfo.WriteMessage(System.String)"> |
||||
<summary> |
||||
Writes out a string and a new line using the program name specified in the constructor |
||||
and <paramref name="message"/> parameter to standard output stream. |
||||
</summary> |
||||
<param name="message">The <see cref="T:System.String"/> message to write.</param> |
||||
<exception cref="T:System.ArgumentException">Thrown when parameter <paramref name="message"/> is null or empty string.</exception> |
||||
</member> |
||||
<member name="M:CommandLine.Text.HeadingInfo.WriteError(System.String)"> |
||||
<summary> |
||||
Writes out a string and a new line using the program name specified in the constructor |
||||
and <paramref name="message"/> parameter to standard error stream. |
||||
</summary> |
||||
<param name="message">The <see cref="T:System.String"/> message to write.</param> |
||||
<exception cref="T:System.ArgumentException">Thrown when parameter <paramref name="message"/> is null or empty string.</exception> |
||||
</member> |
||||
</members> |
||||
</doc> |
@ -1,6 +0,0 @@
@@ -1,6 +0,0 @@
|
||||
mkdir "%APPDATA%\JetBrains\ReSharper\v4.1\vs9.0\Plugins" 2> NUL |
||||
copy /y Machine.Specifications.dll "%APPDATA%\JetBrains\ReSharper\v4.1\vs9.0\Plugins" |
||||
copy /y Machine.Specifications.pdb "%APPDATA%\JetBrains\ReSharper\v4.1\vs9.0\Plugins" |
||||
copy /y Machine.Specifications.ReSharperRunner.4.1.dll "%APPDATA%\JetBrains\ReSharper\v4.1\vs9.0\Plugins" |
||||
copy /y Machine.Specifications.ReSharperRunner.4.1.pdb "%APPDATA%\JetBrains\ReSharper\v4.1\vs9.0\Plugins" |
||||
|
@ -1,6 +0,0 @@
@@ -1,6 +0,0 @@
|
||||
mkdir "%APPDATA%\JetBrains\ReSharper\v4.5\vs9.0\Plugins" 2> NUL |
||||
copy /y Machine.Specifications.dll "%APPDATA%\JetBrains\ReSharper\v4.5\vs9.0\Plugins" |
||||
copy /y Machine.Specifications.pdb "%APPDATA%\JetBrains\ReSharper\v4.5\vs9.0\Plugins" |
||||
copy /y Machine.Specifications.ReSharperRunner.4.5.dll "%APPDATA%\JetBrains\ReSharper\v4.5\vs9.0\Plugins" |
||||
copy /y Machine.Specifications.ReSharperRunner.4.5.pdb "%APPDATA%\JetBrains\ReSharper\v4.5\vs9.0\Plugins" |
||||
|
@ -1,6 +0,0 @@
@@ -1,6 +0,0 @@
|
||||
mkdir "%APPDATA%\JetBrains\ReSharper\v5.0\vs9.0\Plugins" 2> NUL |
||||
copy /y Machine.Specifications.dll "%APPDATA%\JetBrains\ReSharper\v5.0\vs9.0\Plugins" |
||||
copy /y Machine.Specifications.pdb "%APPDATA%\JetBrains\ReSharper\v5.0\vs9.0\Plugins" |
||||
copy /y Machine.Specifications.ReSharperRunner.5.0.dll "%APPDATA%\JetBrains\ReSharper\v5.0\vs9.0\Plugins" |
||||
copy /y Machine.Specifications.ReSharperRunner.5.0.pdb "%APPDATA%\JetBrains\ReSharper\v5.0\vs9.0\Plugins" |
||||
|
@ -1,6 +0,0 @@
@@ -1,6 +0,0 @@
|
||||
mkdir "%APPDATA%\JetBrains\ReSharper\v5.0\vs10.0\Plugins" 2> NUL |
||||
copy /y Machine.Specifications.dll "%APPDATA%\JetBrains\ReSharper\v5.0\vs10.0\Plugins" |
||||
copy /y Machine.Specifications.pdb "%APPDATA%\JetBrains\ReSharper\v5.0\vs10.0\Plugins" |
||||
copy /y Machine.Specifications.ReSharperRunner.5.0.dll "%APPDATA%\JetBrains\ReSharper\v5.0\vs10.0\Plugins" |
||||
copy /y Machine.Specifications.ReSharperRunner.5.0.pdb "%APPDATA%\JetBrains\ReSharper\v5.0\vs10.0\Plugins" |
||||
|
@ -1,6 +0,0 @@
@@ -1,6 +0,0 @@
|
||||
mkdir "%APPDATA%\JetBrains\ReSharper\v5.1\vs9.0\Plugins" 2> NUL |
||||
copy /y Machine.Specifications.dll "%APPDATA%\JetBrains\ReSharper\v5.1\vs9.0\Plugins" |
||||
copy /y Machine.Specifications.pdb "%APPDATA%\JetBrains\ReSharper\v5.1\vs9.0\Plugins" |
||||
copy /y Machine.Specifications.ReSharperRunner.5.1.dll "%APPDATA%\JetBrains\ReSharper\v5.1\vs9.0\Plugins" |
||||
copy /y Machine.Specifications.ReSharperRunner.5.1.pdb "%APPDATA%\JetBrains\ReSharper\v5.1\vs9.0\Plugins" |
||||
|
@ -1,6 +0,0 @@
@@ -1,6 +0,0 @@
|
||||
mkdir "%APPDATA%\JetBrains\ReSharper\v5.1\vs10.0\Plugins" 2> NUL |
||||
copy /y Machine.Specifications.dll "%APPDATA%\JetBrains\ReSharper\v5.1\vs10.0\Plugins" |
||||
copy /y Machine.Specifications.pdb "%APPDATA%\JetBrains\ReSharper\v5.1\vs10.0\Plugins" |
||||
copy /y Machine.Specifications.ReSharperRunner.5.1.dll "%APPDATA%\JetBrains\ReSharper\v5.1\vs10.0\Plugins" |
||||
copy /y Machine.Specifications.ReSharperRunner.5.1.pdb "%APPDATA%\JetBrains\ReSharper\v5.1\vs10.0\Plugins" |
||||
|
@ -1,16 +0,0 @@
@@ -1,16 +0,0 @@
|
||||
@echo off & if not "%ECHO%"=="" echo %ECHO% |
||||
|
||||
setlocal |
||||
set LOCALDIR=%~dp0 |
||||
|
||||
echo Windows Registry Editor Version 5.00 > MSpecTDNet.reg |
||||
echo [HKEY_CURRENT_USER\Software\MutantDesign\TestDriven.NET\TestRunners\MSpec] >> MSpecTDNet.reg |
||||
echo "Application"="" >> MSpecTDNet.reg |
||||
echo "AssemblyPath"="%LOCALDIR:\=\\%Machine.Specifications.TDNetRunner.dll" >> MSpecTDNet.reg |
||||
echo "TargetFrameworkAssemblyName"="Machine.Specifications" >> MSpecTDNet.reg |
||||
echo "TypeName"="Machine.Specifications.TDNetRunner.SpecificationRunner" >> MSpecTDNet.reg |
||||
echo @="5" >> MSpecTDNet.reg |
||||
|
||||
regedit MSpecTDNet.reg |
||||
|
||||
del MSpecTDNet.reg |
@ -1,16 +0,0 @@
@@ -1,16 +0,0 @@
|
||||
@echo off & if not "%ECHO%"=="" echo %ECHO% |
||||
|
||||
setlocal |
||||
set LOCALDIR=%~dp0 |
||||
|
||||
echo Windows Registry Editor Version 5.00 > MSpecTDNet.reg |
||||
echo [HKEY_CURRENT_USER\Software\MutantDesign\TestDriven.NET\TestRunners\MSpec] >> MSpecTDNet.reg |
||||
echo "Application"="" >> MSpecTDNet.reg |
||||
echo "AssemblyPath"="%LOCALDIR:\=\\%Machine.Specifications.TDNetRunner.dll" >> MSpecTDNet.reg |
||||
echo "TargetFrameworkAssemblyName"="Machine.Specifications" >> MSpecTDNet.reg |
||||
echo "TypeName"="Machine.Specifications.TDNetRunner.SpecificationRunner" >> MSpecTDNet.reg |
||||
echo @="5" >> MSpecTDNet.reg |
||||
|
||||
regedit /s MSpecTDNet.reg |
||||
|
||||
del MSpecTDNet.reg |
Binary file not shown.
@ -1,43 +0,0 @@
@@ -1,43 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?> |
||||
<plugin pluginId="Gallio.MSpecAdapter" |
||||
recommendedInstallationPath="MSpec" |
||||
xmlns="http://www.gallio.org/"> |
||||
<traits> |
||||
<name>Machine Specifications Adapter Plugin</name> |
||||
<version>0.4.13.0</version> |
||||
<description>Provides support for running MSpec within Gallio. Requires the assemblies from MSpec.</description> |
||||
</traits> |
||||
|
||||
<dependencies> |
||||
<dependency pluginId="Gallio" /> |
||||
</dependencies> |
||||
|
||||
<files> |
||||
<file path="Machine.Specifications.dll" /> |
||||
<file path="Machine.Specifications.GallioAdapter.plugin" /> |
||||
<file path="Machine.Specifications.GallioAdapter.3.1.dll" /> |
||||
<!--<file path="Readme.txt" />--> |
||||
</files> |
||||
|
||||
<assemblies> |
||||
<assembly fullName="Machine.Specifications.GallioAdapter.3.1, Version=0.4.13.0, Culture=neutral, PublicKeyToken=null" |
||||
codeBase="Machine.Specifications.GallioAdapter.3.1.dll" |
||||
qualifyPartialName="true" /> |
||||
|
||||
<assembly fullName="Machine.Specifications, Version=0.4.13.0, Culture=neutral, PublicKeyToken=5c474de7a495cff1" |
||||
codeBase="Machine.Specifications.dll" /> |
||||
</assemblies> |
||||
|
||||
<components> |
||||
<component componentId="Machine.Specifications" |
||||
serviceId="Gallio.TestFramework" |
||||
componentType="Machine.Specifications.GallioAdapter.MachineSpecificationsFramework, Machine.Specifications.GallioAdapter.3.1"> |
||||
<traits> |
||||
<name>Machine Specifications</name> |
||||
<frameworkAssemblies>Machine.Specifications, Version=0.4.13.0</frameworkAssemblies> |
||||
<version>0.4.13.0</version> |
||||
<fileTypes>Assembly</fileTypes> |
||||
</traits> |
||||
</component> |
||||
</components> |
||||
</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.
Binary file not shown.
@ -1,5 +0,0 @@
@@ -1,5 +0,0 @@
|
||||
<TestRunner> |
||||
<FriendlyName>Machine.Specifications 0.4.13-2780e33</FriendlyName> |
||||
<AssemblyPath>Machine.Specifications.TDNetRunner.dll</AssemblyPath> |
||||
<TypeName>Machine.Specifications.TDNetRunner.SpecificationRunner</TypeName> |
||||
</TestRunner> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,7 +0,0 @@
@@ -1,7 +0,0 @@
|
||||
param($installPath, $toolsPath, $package, $project) |
||||
$project.Object.References | Where-Object { $_.Name -eq 'Machine.Specifications.TDNetRunner' } | ForEach-Object { $_.Remove() } |
||||
|
||||
if ($false -eq $false) |
||||
{ |
||||
Write-Warning "This is the unsigned version of Machine.Specifications. Use 'Install-Package Machine.Specifications-Signed' to install the signed version." |
||||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,6 +0,0 @@
@@ -1,6 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<repositories> |
||||
<repository path="C:\Users\trecio\Documents\SharpDevelop Projects\MachineSpecifications\MachineSpecifications\packages.config" /> |
||||
<repository path="C:\Users\trecio\Documents\SharpDevelop Projects\MachineSpecifications.Tests\packages.config" /> |
||||
<repository path="..\src\AddIns\Analysis\MachineSpecifications\MachineSpecifications.Tests\packages.config" /> |
||||
</repositories> |
@ -0,0 +1,56 @@
@@ -0,0 +1,56 @@
|
||||
Copyright (c) 2011 Machine.Fakes Project |
||||
Portions Copyright (c) 2011 Bjoern Rochel, Steffen Forkmann |
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy |
||||
of this software and associated documentation files (the "Software"), to deal |
||||
in the Software without restriction, including without limitation the rights |
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
||||
copies of the Software, and to permit persons to whom the Software is |
||||
furnished to do so, subject to the following conditions: |
||||
|
||||
The above copyright notice and this permission notice shall be included in |
||||
all copies or substantial portions of the Software. |
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
||||
THE SOFTWARE. |
||||
|
||||
***************************** |
||||
Some parts licensed under MS-PL |
||||
***************************** |
||||
|
||||
This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software. |
||||
|
||||
1. Definitions |
||||
|
||||
The terms "reproduce," "reproduction," "derivative works," and "distribution" have the same meaning here as under U.S. copyright law. |
||||
|
||||
A "contribution" is the original software, or any additions or changes to the software. |
||||
|
||||
A "contributor" is any person that distributes its contribution under this license. |
||||
|
||||
"Licensed patents" are a contributor's patent claims that read directly on its contribution. |
||||
|
||||
2. Grant of Rights |
||||
|
||||
(A) Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative works of its contribution, and distribute its contribution or any derivative works that you create. |
||||
|
||||
(B) Patent Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, import, and/or otherwise dispose of its contribution in the software or derivative works of the contribution in the software. |
||||
|
||||
3. Conditions and Limitations |
||||
|
||||
(A) No Trademark License- This license does not grant you rights to use any contributors' name, logo, or trademarks. |
||||
|
||||
(B) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically. |
||||
|
||||
(C) If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software. |
||||
|
||||
(D) If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this license with your distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under a license that complies with this license. |
||||
|
||||
(E) The software is licensed "as-is." You bear the risk of using it. The contributors give no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement. |
||||
|
||||
|
@ -0,0 +1,2 @@
@@ -0,0 +1,2 @@
|
||||
Rhino Mocks is using Castle Dynamic Proxy (http://www.castleproject.org/dynamicproxy/index.html) to handle proxying the types it needs to mock. |
||||
The Dynamic Proxy project has been invaluable resource and made creating Rhino Mocks possible. |
@ -0,0 +1,25 @@
@@ -0,0 +1,25 @@
|
||||
Copyright (c) 2005 - 2009 Ayende Rahien (ayende@ayende.com) |
||||
All rights reserved. |
||||
|
||||
Redistribution and use in source and binary forms, with or without modification, |
||||
are permitted provided that the following conditions are met: |
||||
|
||||
* Redistributions of source code must retain the above copyright notice, |
||||
this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright notice, |
||||
this list of conditions and the following disclaimer in the documentation |
||||
and/or other materials provided with the distribution. |
||||
* Neither the name of Ayende Rahien nor the names of its |
||||
contributors may be used to endorse or promote products derived from this |
||||
software without specific prior written permission. |
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE |
||||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
||||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
||||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
||||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
||||
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
@ -0,0 +1,53 @@
@@ -0,0 +1,53 @@
|
||||
Copyright (c) 2011 Develop With Passion® |
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy |
||||
of this software and associated documentation files (the "Software"), to deal |
||||
in the Software without restriction, including without limitation the rights |
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
||||
copies of the Software, and to permit persons to whom the Software is |
||||
furnished to do so, subject to the following conditions: |
||||
|
||||
The above copyright notice and this permission notice shall be included in |
||||
all copies or substantial portions of the Software. |
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
||||
THE SOFTWARE. |
||||
|
||||
***************************** |
||||
Some parts licensed under MS-PL |
||||
***************************** |
||||
|
||||
This license governs use of the accompanying software. If you use the software, you accept this license. If you do not accept the license, do not use the software. |
||||
|
||||
1. Definitions |
||||
|
||||
The terms "reproduce," "reproduction," "derivative works," and "distribution" have the same meaning here as under U.S. copyright law. |
||||
|
||||
A "contribution" is the original software, or any additions or changes to the software. |
||||
|
||||
A "contributor" is any person that distributes its contribution under this license. |
||||
|
||||
"Licensed patents" are a contributor's patent claims that read directly on its contribution. |
||||
|
||||
2. Grant of Rights |
||||
|
||||
(A) Copyright Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free copyright license to reproduce its contribution, prepare derivative works of its contribution, and distribute its contribution or any derivative works that you create. |
||||
|
||||
(B) Patent Grant- Subject to the terms of this license, including the license conditions and limitations in section 3, each contributor grants you a non-exclusive, worldwide, royalty-free license under its licensed patents to make, have made, use, sell, offer for sale, import, and/or otherwise dispose of its contribution in the software or derivative works of the contribution in the software. |
||||
|
||||
3. Conditions and Limitations |
||||
|
||||
(A) No Trademark License- This license does not grant you rights to use any contributors' name, logo, or trademarks. |
||||
|
||||
(B) If you bring a patent claim against any contributor over patents that you claim are infringed by the software, your patent license from such contributor to the software ends automatically. |
||||
|
||||
(C) If you distribute any portion of the software, you must retain all copyright, patent, trademark, and attribution notices that are present in the software. |
||||
|
||||
(D) If you distribute any portion of the software in source code form, you may do so only under this license by including a complete copy of this license with your distribution. If you distribute any portion of the software in compiled or object code form, you may only do so under a license that complies with this license. |
||||
|
||||
(E) The software is licensed "as-is." You bear the risk of using it. The contributors give no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this license cannot change. To the extent permitted under your local laws, the contributors exclude the implied warranties of merchantability, fitness for a particular purpose and non-infringement. |
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.
Loading…
Reference in new issue