Skip to content

Commit

Permalink
removing nunit attrs from debugger shim bc it now causes compilation …
Browse files Browse the repository at this point in the history
…failure. opt in by adding nunit
  • Loading branch information
mattflo committed Jan 25, 2012
1 parent d2b41ef commit 7fe17ea
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
Binary file added NSpec-0.9.57/NSpec.dll
Binary file not shown.
Binary file added NSpec-0.9.57/nunit.framework.dll
Binary file not shown.
10 changes: 5 additions & 5 deletions NSpec.GallioAdapter/NSpec.GallioAdapter.plugin
Expand Up @@ -2,7 +2,7 @@
<plugin xmlns="http://www.gallio.org/" pluginId="Gallio.NSpecAdapter" recommendedInstallationPath="NSpec">
<traits>
<name>NSpec Adapter Plugin</name>
<version>0.9.57.0</version>
<version>0.9.58.0</version>
<description>Provides support for running NSpec within Gallio. Requires the assemblies from NSpec.</description>
</traits>

Expand All @@ -18,17 +18,17 @@
</files>

<assemblies>
<assembly fullName="NSpec.GallioAdapter, Version=0.9.57.0, Culture=neutral, PublicKeyToken=null" codeBase="NSpec.GallioAdapter.dll" qualifyPartialName="true"/>
<assembly fullName="NSpec, Version=0.9.57.0, Culture=neutral, PublicKeyToken=null" codeBase="NSpec.dll"/>
<assembly fullName="NSpec.GallioAdapter, Version=0.9.58.0, Culture=neutral, PublicKeyToken=null" codeBase="NSpec.GallioAdapter.dll" qualifyPartialName="true"/>
<assembly fullName="NSpec, Version=0.9.58.0, Culture=neutral, PublicKeyToken=null" codeBase="NSpec.dll"/>
<assembly fullName="nunit.framework, Version=2.5.7.10213, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77" codeBase="nunit.framework.dll"/>
</assemblies>

<components>
<component componentId="NSpec.TestFramework" serviceId="Gallio.TestFramework" componentType="NSpec.GallioAdapter.NSpecTestFramework, NSpec.GallioAdapter">
<traits>
<name>NSpec</name>
<frameworkAssemblies>NSpec, Version=0.9.57.0</frameworkAssemblies>
<version>0.9.57.0</version>
<frameworkAssemblies>NSpec, Version=0.9.58.0</frameworkAssemblies>
<version>0.9.58.0</version>
<fileTypes>Assembly</fileTypes>
</traits>
</component>
Expand Down
4 changes: 2 additions & 2 deletions NSpecSpecs/DebuggerShim.cs
Expand Up @@ -6,10 +6,10 @@
using NSpec.Domain.Formatters;
using System.Linq;

[TestFixture]
//[TestFixture]
public class DebuggerShim
{
[Test]
//[Test]
public void debug()
{
var tagOrClassName = "class_or_tag_you_want_to_debug";
Expand Down
4 changes: 2 additions & 2 deletions SharedAssemblyInfo.cs
Expand Up @@ -21,5 +21,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.9.57")]
[assembly: AssemblyFileVersion("0.9.57")]
[assembly: AssemblyVersion("0.9.58")]
[assembly: AssemblyFileVersion("0.9.58")]
2 changes: 1 addition & 1 deletion nspec.nuspec
Expand Up @@ -2,7 +2,7 @@
<package xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<id>nspec</id>
<version>0.9.57</version>
<version>0.9.58</version>
<iconUrl>http://nspec.org/themes/contoso/content/images/logo.png</iconUrl>
<licenseUrl>https://github.com/mattflo/NSpec/blob/master/license.txt</licenseUrl>
<authors>Matt Florence, Amir Rajan</authors>
Expand Down

0 comments on commit 7fe17ea

Please sign in to comment.