albacore 1.0.0.rc.2 → 1.0.0.rc.3
Sign up to get free protection for your applications and to get access to all the features.
- data/.travis.yml +1 -1
- data/Guardfile +0 -9
- data/README.md +4 -4
- data/Rakefile +9 -14
- data/albacore.gemspec +29 -31
- data/lib/albacore.rb +22 -15
- data/lib/albacore/aspnetcompiler.rb +66 -44
- data/lib/albacore/assemblyinfo.rb +101 -120
- data/lib/albacore/assemblyinfolanguages/assemblyinfoengine.rb +13 -0
- data/lib/albacore/config/aspnetcompilerconfig.rb +5 -4
- data/lib/albacore/config/assemblyinfoconfig.rb +2 -4
- data/lib/albacore/config/cscconfig.rb +3 -3
- data/lib/albacore/config/docuconfig.rb +4 -8
- data/lib/albacore/config/execconfig.rb +9 -5
- data/lib/albacore/config/fluentmigratorconfig.rb +19 -0
- data/lib/albacore/config/ilmergeconfig.rb +5 -10
- data/lib/albacore/config/msbuildconfig.rb +3 -3
- data/lib/albacore/config/mspecconfig.rb +19 -0
- data/lib/albacore/config/mstestconfig.rb +19 -0
- data/lib/albacore/config/nantconfig.rb +9 -6
- data/lib/albacore/config/nchurnconfig.rb +9 -5
- data/lib/albacore/config/ncoverconsoleconfig.rb +9 -5
- data/lib/albacore/config/ncoverreportconfig.rb +9 -6
- data/lib/albacore/config/ndependconfig.rb +9 -5
- data/lib/albacore/config/netversion.rb +10 -6
- data/lib/albacore/config/nugetinstallconfig.rb +18 -0
- data/lib/albacore/config/nugetpackconfig.rb +2 -3
- data/lib/albacore/config/nugetpushconfig.rb +5 -6
- data/lib/albacore/config/nugetupdateconfig.rb +2 -3
- data/lib/albacore/config/nunitconfig.rb +19 -0
- data/lib/albacore/config/nuspecconfig.rb +18 -0
- data/lib/albacore/config/plinkconfig.rb +18 -0
- data/lib/albacore/config/specflowconfig.rb +18 -0
- data/lib/albacore/config/sqlcmdconfig.rb +9 -6
- data/lib/albacore/config/unzipconfig.rb +9 -5
- data/lib/albacore/config/xbuildconfig.rb +9 -6
- data/lib/albacore/config/xunitconfig.rb +18 -0
- data/lib/albacore/config/zipdirectoryconfig.rb +9 -6
- data/lib/albacore/csc.rb +56 -46
- data/lib/albacore/docu.rb +20 -23
- data/lib/albacore/exec.rb +8 -6
- data/lib/albacore/fluentmigrator.rb +69 -0
- data/lib/albacore/ilmerge.rb +23 -50
- data/lib/albacore/msbuild.rb +36 -59
- data/lib/albacore/mspec.rb +39 -0
- data/lib/albacore/mstest.rb +47 -0
- data/lib/albacore/nant.rb +23 -20
- data/lib/albacore/nchurn.rb +34 -59
- data/lib/albacore/ncoverconsole.rb +38 -50
- data/lib/albacore/ncoverreport.rb +24 -46
- data/lib/albacore/ncoverreports.rb +16 -0
- data/lib/albacore/ncoverreports/codecoveragebase.rb +8 -6
- data/lib/albacore/ncoverreports/cyclomaticcomplexity.rb +3 -3
- data/lib/albacore/ncoverreports/fullcoveragereport.rb +5 -9
- data/lib/albacore/ncoverreports/reportbase.rb +23 -0
- data/lib/albacore/ncoverreports/reportfilterbase.rb +10 -7
- data/lib/albacore/ncoverreports/summaryreport.rb +5 -14
- data/lib/albacore/ndepend.rb +17 -17
- data/lib/albacore/nugetinstall.rb +48 -43
- data/lib/albacore/nugetpack.rb +33 -37
- data/lib/albacore/nugetpush.rb +25 -31
- data/lib/albacore/nugetupdate.rb +28 -29
- data/lib/albacore/nunit.rb +46 -0
- data/lib/albacore/nuspec.rb +79 -77
- data/lib/albacore/output.rb +77 -80
- data/lib/albacore/plink.rb +35 -32
- data/lib/albacore/specflow.rb +30 -0
- data/lib/albacore/sqlcmd.rb +46 -61
- data/lib/albacore/support/platform.rb +25 -0
- data/lib/albacore/unzip.rb +42 -34
- data/lib/albacore/version.rb +1 -1
- data/lib/albacore/xbuild.rb +25 -38
- data/lib/albacore/xunit.rb +44 -0
- data/lib/albacore/zipdirectory.rb +106 -107
- data/spec/albacoremodel_spec.rb +52 -53
- data/spec/aspnetcompiler_spec.rb +84 -0
- data/spec/{support/TestSolution/TestSolution/Properties → assemblyinfo}/AssemblyInfo.cs +36 -36
- data/spec/assemblyinfo_spec.rb +209 -477
- data/spec/attrmethods_spec.rb +135 -136
- data/spec/config_spec.rb +32 -34
- data/spec/createtask_spec.rb +234 -237
- data/spec/csc_spec.rb +86 -253
- data/spec/docu_spec.rb +31 -109
- data/spec/exec_spec.rb +25 -45
- data/spec/fluentmigrator_spec.rb +88 -0
- data/spec/ilmerge_spec.rb +21 -79
- data/spec/msbuild_spec.rb +55 -287
- data/spec/mspec_spec.rb +30 -28
- data/spec/mstest_spec.rb +35 -0
- data/spec/nant_spec.rb +40 -110
- data/spec/nchurn_spec.rb +80 -75
- data/spec/ncoverconsole_spec.rb +80 -353
- data/spec/ncoverreport_spec.rb +139 -619
- data/spec/ndepend_spec.rb +26 -72
- data/spec/netversion_spec.rb +51 -53
- data/spec/nugetinstall_spec.rb +59 -47
- data/spec/nugetpack_spec.rb +49 -0
- data/spec/nugetpush_spec.rb +39 -0
- data/spec/nugetupdate_spec.rb +49 -42
- data/spec/nunit_spec.rb +35 -0
- data/spec/{support/nuspec → nuspec}/nuspec.xsd +0 -0
- data/spec/nuspec_spec.rb +74 -127
- data/spec/output/bar/bar.txt +0 -0
- data/spec/output/baz.txt +0 -0
- data/spec/output/erb.txt +1 -0
- data/spec/output/foo/foo/foo.txt +0 -0
- data/spec/output_spec.rb +67 -147
- data/spec/patch/system_patch.rb +12 -0
- data/spec/platform_spec.rb +15 -0
- data/spec/plink_spec.rb +56 -62
- data/spec/runcommand_spec.rb +92 -94
- data/spec/spec_helper.rb +20 -16
- data/spec/specflow_spec.rb +30 -0
- data/spec/sqlcmd_spec.rb +66 -334
- data/spec/unzip_spec.rb +1 -2
- data/spec/xbuild_spec.rb +40 -15
- data/spec/xunit_spec.rb +30 -200
- data/spec/yaml/test.yml +3 -0
- data/spec/yamlconfig_spec.rb +53 -49
- data/spec/zip/baz.txt +0 -0
- data/spec/zip/foo/bar/bar.txt +0 -0
- data/spec/zip/foo/foo.txt +0 -0
- data/spec/zip_spec.rb +63 -187
- metadata +78 -1098
- checksums.yaml +0 -7
- data/.rvmrc +0 -1
- data/lib/albacore/config/fluentmigratorrunnerconfig.rb +0 -15
- data/lib/albacore/config/msdeployconfig.rb +0 -15
- data/lib/albacore/config/mspectestrunnerconfig.rb +0 -15
- data/lib/albacore/config/mstesttestrunnerconfig.rb +0 -15
- data/lib/albacore/config/nugetpublishconfig.rb +0 -19
- data/lib/albacore/config/nunittestrunnerconfig.rb +0 -14
- data/lib/albacore/config/specflowreportconfig.rb +0 -24
- data/lib/albacore/config/vssgetconfig.rb +0 -14
- data/lib/albacore/config/xunittestrunnerconfig.rb +0 -15
- data/lib/albacore/fluentmigratorrunner.rb +0 -52
- data/lib/albacore/msdeploy.rb +0 -122
- data/lib/albacore/mspectestrunner.rb +0 -50
- data/lib/albacore/mstesttestrunner.rb +0 -43
- data/lib/albacore/nugetpublish.rb +0 -47
- data/lib/albacore/nunittestrunner.rb +0 -41
- data/lib/albacore/specflowreport.rb +0 -62
- data/lib/albacore/support/supportlinux.rb +0 -21
- data/lib/albacore/vssget.rb +0 -44
- data/lib/albacore/xunittestrunner.rb +0 -56
- data/samples/Rakefile +0 -154
- data/spec/README.md +0 -9
- data/spec/assemblyinfo_contexts.rb +0 -52
- data/spec/fluentmigratorrunner_spec.rb +0 -263
- data/spec/msdeploy_spec.rb +0 -124
- data/spec/mstesttestrunner_spec.rb +0 -144
- data/spec/nunittestrunner_spec.rb +0 -115
- data/spec/patches/docu_patch.rb +0 -13
- data/spec/patches/fail_patch.rb +0 -9
- data/spec/patches/system_patch.rb +0 -20
- data/spec/spec.opts +0 -1
- data/spec/specflowreport_spec.rb +0 -143
- data/spec/support/AssemblyInfo/AssemblyInfo.test +0 -6
- data/spec/support/AssemblyInfo/AssemblyInfoInput.test +0 -9
- data/spec/support/AssemblyInfo/assemblyinfo.yml +0 -2
- data/spec/support/CodeCoverage/mspec/assemblies/Machine.Specifications.dll +0 -0
- data/spec/support/CodeCoverage/mspec/assemblies/TestSolution.MSpecTests.dll +0 -0
- data/spec/support/CodeCoverage/mspec/assemblies/TestSolution.dll +0 -0
- data/spec/support/CodeCoverage/mspec/assemblies/nunit.framework.dll +0 -0
- data/spec/support/CodeCoverage/mstest/TestSolution.MSTestTests.NET40.dll +0 -0
- data/spec/support/CodeCoverage/mstest/TestSolution.MSTestTests.dll +0 -0
- data/spec/support/CodeCoverage/nunit/assemblies/TestSolution.Tests.dll +0 -0
- data/spec/support/CodeCoverage/nunit/assemblies/TestSolution.dll +0 -0
- data/spec/support/CodeCoverage/nunit/assemblies/nunit.framework.dll +0 -0
- data/spec/support/CodeCoverage/nunit/assemblies/with spaces/TestSolution.Tests.dll +0 -0
- data/spec/support/CodeCoverage/nunit/assemblies/with spaces/TestSolution.dll +0 -0
- data/spec/support/CodeCoverage/nunit/assemblies/with spaces/nunit.framework.dll +0 -0
- data/spec/support/CodeCoverage/nunit/failing_assemblies/TestSolution.FailingTests.dll +0 -0
- data/spec/support/CodeCoverage/nunit/failing_assemblies/nunit.framework.dll +0 -0
- data/spec/support/CodeCoverage/report/coverage.xml +0 -4578
- data/spec/support/CodeCoverage/xunit/assemblies/TestSolution.XUnitTests.dll +0 -0
- data/spec/support/CodeCoverage/xunit/assemblies/TestSolution.dll +0 -0
- data/spec/support/CodeCoverage/xunit/assemblies/xunit.dll +0 -0
- data/spec/support/CodeCoverage/xunit/assemblies/xunit.xml +0 -2604
- data/spec/support/FluentMigrator/FluentMigrator.dll +0 -0
- data/spec/support/FluentMigrator/TestSolution.FluentMigrator.dll +0 -0
- data/spec/support/SpecFlow/TechTalk.SpecFlow.dll +0 -0
- data/spec/support/SpecFlow/TestSolution.SpecFlow.dll +0 -0
- data/spec/support/SpecFlow/TestSolution.SpecFlow.pdb +0 -0
- data/spec/support/SpecFlow/TestSolution.dll +0 -0
- data/spec/support/SpecFlow/TestSolution.pdb +0 -0
- data/spec/support/SpecFlow/nunit.framework.dll +0 -0
- data/spec/support/TestSolution/LocalTestRun.testrunconfig +0 -5
- data/spec/support/TestSolution/NDependProject.xml +0 -315
- data/spec/support/TestSolution/TestSolution.5.0.ReSharper.user +0 -27
- data/spec/support/TestSolution/TestSolution.FailingTests/FailingTestFixture.cs +0 -19
- data/spec/support/TestSolution/TestSolution.FailingTests/Properties/AssemblyInfo.cs +0 -36
- data/spec/support/TestSolution/TestSolution.FailingTests/TestSolution.FailingTests.csproj +0 -101
- data/spec/support/TestSolution/TestSolution.FluentMigrator/M001_SampleMigration.cs +0 -19
- data/spec/support/TestSolution/TestSolution.FluentMigrator/Properties/AssemblyInfo.cs +0 -36
- data/spec/support/TestSolution/TestSolution.FluentMigrator/TestSolution.FluentMigrator.csproj +0 -101
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy.sln +0 -20
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/About.aspx +0 -13
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/About.aspx.cs +0 -17
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/About.aspx.designer.cs +0 -17
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePassword.aspx +0 -60
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePassword.aspx.cs +0 -17
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePassword.aspx.designer.cs +0 -26
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePasswordSuccess.aspx +0 -13
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePasswordSuccess.aspx.cs +0 -17
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePasswordSuccess.aspx.designer.cs +0 -17
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Login.aspx +0 -49
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Login.aspx.cs +0 -17
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Login.aspx.designer.cs +0 -35
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Register.aspx +0 -75
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Register.aspx.cs +0 -32
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Register.aspx.designer.cs +0 -35
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Web.config +0 -18
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Default.aspx +0 -17
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Default.aspx.cs +0 -17
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Default.aspx.designer.cs +0 -17
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Global.asax +0 -1
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Global.asax.cs +0 -47
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Properties/AssemblyInfo.cs +0 -35
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Scripts/jquery-1.4.1-vsdoc.js +0 -8061
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Scripts/jquery-1.4.1.js +0 -6111
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Scripts/jquery-1.4.1.min.js +0 -167
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Site.Master +0 -51
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Site.Master.cs +0 -17
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Site.Master.designer.cs +0 -71
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Styles/Site.css +0 -294
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/TestSolution.MSDeploy.Publish.xml +0 -2
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/TestSolution.MSDeploy.csproj +0 -163
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Web.Debug.config +0 -30
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Web.Release.config +0 -31
- data/spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Web.config +0 -52
- data/spec/support/TestSolution/TestSolution.MSTestTests.NET40/Properties/AssemblyInfo.cs +0 -36
- data/spec/support/TestSolution/TestSolution.MSTestTests.NET40/TestSolution.MSTestTests.NET40.csproj +0 -53
- data/spec/support/TestSolution/TestSolution.MSTestTests.NET40/Tests.cs +0 -20
- data/spec/support/TestSolution/TestSolution.MSTestTests/Properties/AssemblyInfo.cs +0 -35
- data/spec/support/TestSolution/TestSolution.MSTestTests/TestSolution.MSTestTests.csproj +0 -97
- data/spec/support/TestSolution/TestSolution.MSTestTests/Tests.cs +0 -20
- data/spec/support/TestSolution/TestSolution.MSpecTests/Properties/AssemblyInfo.cs +0 -36
- data/spec/support/TestSolution/TestSolution.MSpecTests/SomeSpecTest.cs +0 -18
- data/spec/support/TestSolution/TestSolution.MSpecTests/TestSolution.MSpecTests.csproj +0 -110
- data/spec/support/TestSolution/TestSolution.SpecFlow/OneFeature.feature +0 -8
- data/spec/support/TestSolution/TestSolution.SpecFlow/OneFeature.feature.cs +0 -73
- data/spec/support/TestSolution/TestSolution.SpecFlow/Properties/AssemblyInfo.cs +0 -36
- data/spec/support/TestSolution/TestSolution.SpecFlow/StepDefinition.cs +0 -30
- data/spec/support/TestSolution/TestSolution.SpecFlow/TestSolution.SpecFlow.csproj +0 -122
- data/spec/support/TestSolution/TestSolution.Tests/Properties/AssemblyInfo.cs +0 -36
- data/spec/support/TestSolution/TestSolution.Tests/SomeTestFixture.cs +0 -23
- data/spec/support/TestSolution/TestSolution.Tests/TestSolution.Tests.csproj +0 -107
- data/spec/support/TestSolution/TestSolution.XUnitTests/Class1.cs +0 -20
- data/spec/support/TestSolution/TestSolution.XUnitTests/FailingTestFixture.cs +0 -14
- data/spec/support/TestSolution/TestSolution.XUnitTests/Properties/AssemblyInfo.cs +0 -36
- data/spec/support/TestSolution/TestSolution.XUnitTests/TestSolution.XUnitTests.csproj +0 -108
- data/spec/support/TestSolution/TestSolution.build +0 -25
- data/spec/support/TestSolution/TestSolution.sln +0 -75
- data/spec/support/TestSolution/TestSolution.vsmdi +0 -6
- data/spec/support/TestSolution/TestSolution/Class1.cs +0 -17
- data/spec/support/TestSolution/TestSolution/TestSolution.csproj +0 -97
- data/spec/support/Tools/FluentMigrator-0.9/FluentMigrator.MSBuild.dll +0 -0
- data/spec/support/Tools/FluentMigrator-0.9/FluentMigrator.NAnt.dll +0 -0
- data/spec/support/Tools/FluentMigrator-0.9/FluentMigrator.Runner.dll +0 -0
- data/spec/support/Tools/FluentMigrator-0.9/FluentMigrator.Runner.pdb +0 -0
- data/spec/support/Tools/FluentMigrator-0.9/FluentMigrator.Tests.dll +0 -0
- data/spec/support/Tools/FluentMigrator-0.9/FluentMigrator.Tests.pdb +0 -0
- data/spec/support/Tools/FluentMigrator-0.9/FluentMigrator.dll +0 -0
- data/spec/support/Tools/FluentMigrator-0.9/FluentMigrator.pdb +0 -0
- data/spec/support/Tools/FluentMigrator-0.9/Migrate.exe +0 -0
- data/spec/support/Tools/FluentMigrator-0.9/Migrate.exe.config +0 -6
- data/spec/support/Tools/FluentMigrator-0.9/Moq.dll +0 -0
- data/spec/support/Tools/FluentMigrator-0.9/Moq.xml +0 -3467
- data/spec/support/Tools/FluentMigrator-0.9/MySql.Data.dll +0 -0
- data/spec/support/Tools/FluentMigrator-0.9/NAnt.Core.dll +0 -0
- data/spec/support/Tools/FluentMigrator-0.9/NAnt.Core.xml +0 -14880
- data/spec/support/Tools/FluentMigrator-0.9/Oracle.DataAccess.dll +0 -0
- data/spec/support/Tools/FluentMigrator-0.9/System.Data.SQLite.DLL +0 -0
- data/spec/support/Tools/FluentMigrator-0.9/log4net.dll +0 -0
- data/spec/support/Tools/FluentMigrator-0.9/nunit.framework.dll +0 -0
- data/spec/support/Tools/FluentMigrator-0.9/nunit.should.dll +0 -0
- data/spec/support/Tools/FluentMigrator-0.9/testscript.sql +0 -1
- data/spec/support/Tools/MSTest-2008/MSTest.exe +0 -0
- data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.CommandLine.dll +0 -0
- data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.Common.dll +0 -0
- data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.ControllerObject.dll +0 -0
- data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.ExecutionCommon.dll +0 -0
- data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.TMI.dll +0 -0
- data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Adapter.dll +0 -0
- data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.AssemblyResolver.dll +0 -0
- data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.ObjectModel.dll +0 -0
- data/spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Tip.dll +0 -0
- data/spec/support/Tools/MSTest-2010/MSTest.exe +0 -0
- data/spec/support/Tools/MSTest-2010/MSTest.exe.config +0 -31
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.AgentObject.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.AgentProcessManager.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CMI.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CheckinPolicies.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CodeCoverage.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CodedUITest.Controls.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CodedUITestFramework.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CodedUITestPackage.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CommandLine.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Common.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Controller.SpooledJob.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.ControllerObject.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.DataCollectionAgentObject.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.ExecutionCommon.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.HostAdapters.ASPNETAdapter.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.HostAdapters.ASPNETAgent.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Linking.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTest.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExcelAddIn.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExcelAddIn.dll.manifest +0 -296
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExcelAddIn.vsto +0 -150
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExcelCommon.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExcelCommon.tlb +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExec.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestFramework.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestPackage.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestUI.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.NICServices.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.NetworkEmulation.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.OperationalStore.ClientHelper.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.RecorderBar.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.RecorderBarBHO100.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Resource.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Sqm.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.TMI.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.TestCaseManagement.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.GenericTest.Adapter.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.GenericTest.ObjectModel.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.GenericTest.Tip.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.ManualTest.Adapter.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.ManualTest.ObjectModel.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.ManualTest.Tip.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.OrderedTest.Adapter.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.OrderedTest.ObjectModel.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.OrderedTest.Tip.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.TuipPackage.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Adapter.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.AssemblyResolver.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.ObjectModel.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Tip.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.WebLoadTest.Tip.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Vsip.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.WarehouseCommon.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.WebTestFramework.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.WebTestPlayback.dll +0 -0
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Wizard.TestProjectWizards.dll +0 -0
- data/spec/support/Tools/MSTest-2010/mstest.reg +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/lib/Machine.Specifications.TDNetRunner.dll +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/lib/Machine.Specifications.dll +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/lib/Machine.Specifications.dll.tdnet +0 -5
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/CommandLine.dll +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/CommandLine.xml +0 -504
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.4.1.bat +0 -5
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.4.5.bat +0 -5
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.5.0 - VS2008.bat +0 -5
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.5.0 - VS2010.bat +0 -5
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.5.1 - VS2008.bat +0 -5
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.5.1 - VS2010.bat +0 -5
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.6.0 - VS2008.bat +0 -5
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.6.0 - VS2010.bat +0 -5
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.6.1 - VS2008.bat +0 -5
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.6.1 - VS2010.bat +0 -5
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallTDNetRunner.bat +0 -16
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallTDNetRunnerSilent.bat +0 -16
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/License.txt +0 -54
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.GallioAdapter.3.1.dll +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.GallioAdapter.plugin +0 -43
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.4.1.dll +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.4.5.dll +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.5.0.dll +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.5.1.dll +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.6.0.dll +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.6.1.dll +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.Reporting.Templates.dll +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.Reporting.dll +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.SeleniumSupport.dll +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.TDNetRunner.dll +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.WatinSupport.dll +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.dll +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.dll.tdnet +0 -5
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Spark.dll +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/TestDriven.Framework.dll +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/install.ps1 +0 -6
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec-clr4.exe +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec-clr4.exe.config +0 -6
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec-x86-clr4.exe +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec-x86-clr4.exe.config +0 -6
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec-x86.exe +0 -0
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec.exe +0 -0
- data/spec/support/Tools/NAnt-0.85/COPYING.txt +0 -340
- data/spec/support/Tools/NAnt-0.85/README.txt +0 -144
- data/spec/support/Tools/NChurn-v0.4/LICENSE.txt +0 -133
- data/spec/support/Tools/NChurn-v0.4/NChurn.exe +0 -0
- data/spec/support/Tools/NChurn-v0.4/README.md +0 -171
- data/spec/support/Tools/NChurn-v0.4/VERSION +0 -1
- data/spec/support/Tools/NChurn-v0.4/churn-0.4.0.0.txt +0 -178
- data/spec/support/Tools/NCover-v3.3/ActiproEULA.hml +0 -287
- data/spec/support/Tools/NCover-v3.3/ActiproSoftware.Shared.Wpf30.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/ActiproSoftware.SyntaxEditor.Addons.DotNet.Wpf30.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/ActiproSoftware.SyntaxEditor.Wpf30.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/ActiproSoftware.Text.Net20.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/AdminBootstrapper.exe +0 -0
- data/spec/support/Tools/NCover-v3.3/Build Task Plugins/MSBuildNCoverExample.proj +0 -237
- data/spec/support/Tools/NCover-v3.3/Build Task Plugins/MSBuildReportingExample.proj +0 -224
- data/spec/support/Tools/NCover-v3.3/Build Task Plugins/NAntNCoverExample.build +0 -241
- data/spec/support/Tools/NCover-v3.3/Build Task Plugins/NAntReportingExample.build +0 -218
- data/spec/support/Tools/NCover-v3.3/Build Task Plugins/NCover.MSBuildTasks.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/Build Task Plugins/NCover.NAntTasks.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/Build Task Plugins/NCoverExplorer.MSBuildTasks.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/Build Task Plugins/NCoverExplorer.NAntTasks.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/CC.Net/NCoverReporting30.xsl +0 -2313
- data/spec/support/Tools/NCover-v3.3/CC.Net/dashboard.config +0 -55
- data/spec/support/Tools/NCover-v3.3/CC.Net/excanvas.js +0 -35
- data/spec/support/Tools/NCover-v3.3/CC.Net/g.png +0 -0
- data/spec/support/Tools/NCover-v3.3/CC.Net/jquery-1.3.2.min.js +0 -19
- data/spec/support/Tools/NCover-v3.3/CC.Net/r.png +0 -0
- data/spec/support/Tools/NCover-v3.3/CC.Net/readme.txt +0 -51
- data/spec/support/Tools/NCover-v3.3/CC.Net/trends.js +0 -184
- data/spec/support/Tools/NCover-v3.3/CC.Net/y.png +0 -0
- data/spec/support/Tools/NCover-v3.3/MSVCM90.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/MSVCP90.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/MSVCR90.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/Microsoft.VC90.CRT.manifest +0 -13
- data/spec/support/Tools/NCover-v3.3/Mindscape.LightSpeed.Linq.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/Mindscape.LightSpeed.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/NCover.Console.exe +0 -0
- data/spec/support/Tools/NCover-v3.3/NCover.Console.exe.config +0 -55
- data/spec/support/Tools/NCover-v3.3/NCover.Data.x86.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/NCover.Explorer.Framework.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/NCover.Explorer.exe +0 -0
- data/spec/support/Tools/NCover-v3.3/NCover.Explorer.exe.config +0 -16
- data/spec/support/Tools/NCover-v3.3/NCover.Framework.XmlSerializers.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/NCover.Framework.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/NCover.Interfaces.Core.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/NCover.Interfaces.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/NCover.Legacy.Configuration.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/NCover.Lib.x86.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/NCover.Registration.exe +0 -0
- data/spec/support/Tools/NCover-v3.3/NCover.Reporting.exe +0 -0
- data/spec/support/Tools/NCover-v3.3/NCover.Runner.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/NCover.UpConvert.exe +0 -0
- data/spec/support/Tools/NCover-v3.3/NCover.Utilities.dll +0 -0
- data/spec/support/Tools/NCover-v3.3/NCoverEULA.pdf +0 -0
- data/spec/support/Tools/NCover-v3.3/NCoverExplorer.Console.exe +0 -0
- data/spec/support/Tools/NCover-v3.3/ReportingExample.config +0 -213
- data/spec/support/Tools/NCover-v3.3/System.Data.SQLite.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/EULA_NDepend.txt +0 -94
- data/spec/support/Tools/NDepend-v2.12/Lib/DevExpress.Data.v8.2.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/DevExpress.OfficeSkins.v8.2.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/DevExpress.Utils.v8.2.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/DevExpress.XtraBars.v8.2.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/DevExpress.XtraEditors.v8.2.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/DevExpress.XtraNavBar.v8.2.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/EnvDTE.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/Microsoft.Msagl.Drawing.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/Microsoft.Msagl.GraphViewerGdi.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/Microsoft.Msagl.GraphViewerGdi.dll.config +0 -3
- data/spec/support/Tools/NDepend-v2.12/Lib/Microsoft.Msagl.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/Microsoft.VisualStudio.OLE.Interop.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/Microsoft.VisualStudio.Shell.Interop.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/Microsoft.VisualStudio.Shell.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/Mono.Cecil.Pdb.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/Mono.Cecil.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/NDepend.AddIn.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/NDepend.Analysis.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/NDepend.CQL.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/NDepend.Framework.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/NDepend.Platform.DotNet.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/NDepend.Skins.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/NDepend.UI.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/msvcp71.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/Lib/msvcr71.dll +0 -0
- data/spec/support/Tools/NDepend-v2.12/NDepend.Console.exe +0 -0
- data/spec/support/Tools/NDepend-v2.12/NDepend.Console.exe.config +0 -8
- data/spec/support/Tools/NDepend-v2.12/QuickStartTutorial_NDepend.txt +0 -152
- data/spec/support/Tools/NDepend-v2.12/VisualNDepend.exe +0 -0
- data/spec/support/Tools/NUnit-v2.5/NUnitFitTests.html +0 -277
- data/spec/support/Tools/NUnit-v2.5/NUnitTests.config +0 -84
- data/spec/support/Tools/NUnit-v2.5/NUnitTests.nunit +0 -14
- data/spec/support/Tools/NUnit-v2.5/TestResult.xml +0 -32
- data/spec/support/Tools/NUnit-v2.5/agent.conf +0 -4
- data/spec/support/Tools/NUnit-v2.5/agent.log.conf +0 -18
- data/spec/support/Tools/NUnit-v2.5/clr.bat +0 -96
- data/spec/support/Tools/NUnit-v2.5/framework/nunit.framework.dll +0 -0
- data/spec/support/Tools/NUnit-v2.5/framework/nunit.framework.xml +0 -10088
- data/spec/support/Tools/NUnit-v2.5/framework/nunit.mocks.dll +0 -0
- data/spec/support/Tools/NUnit-v2.5/framework/pnunit.framework.dll +0 -0
- data/spec/support/Tools/NUnit-v2.5/launcher.log.conf +0 -18
- data/spec/support/Tools/NUnit-v2.5/lib/Failure.png +0 -0
- data/spec/support/Tools/NUnit-v2.5/lib/Ignored.png +0 -0
- data/spec/support/Tools/NUnit-v2.5/lib/Inconclusive.png +0 -0
- data/spec/support/Tools/NUnit-v2.5/lib/Skipped.png +0 -0
- data/spec/support/Tools/NUnit-v2.5/lib/Success.png +0 -0
- data/spec/support/Tools/NUnit-v2.5/lib/fit.dll +0 -0
- data/spec/support/Tools/NUnit-v2.5/lib/log4net.dll +0 -0
- data/spec/support/Tools/NUnit-v2.5/lib/nunit-console-runner.dll +0 -0
- data/spec/support/Tools/NUnit-v2.5/lib/nunit-gui-runner.dll +0 -0
- data/spec/support/Tools/NUnit-v2.5/lib/nunit.core.dll +0 -0
- data/spec/support/Tools/NUnit-v2.5/lib/nunit.core.interfaces.dll +0 -0
- data/spec/support/Tools/NUnit-v2.5/lib/nunit.fixtures.dll +0 -0
- data/spec/support/Tools/NUnit-v2.5/lib/nunit.uiexception.dll +0 -0
- data/spec/support/Tools/NUnit-v2.5/lib/nunit.uikit.dll +0 -0
- data/spec/support/Tools/NUnit-v2.5/lib/nunit.util.dll +0 -0
- data/spec/support/Tools/NUnit-v2.5/nunit-agent.exe +0 -0
- data/spec/support/Tools/NUnit-v2.5/nunit-agent.exe.config +0 -87
- data/spec/support/Tools/NUnit-v2.5/nunit-console-x86.exe +0 -0
- data/spec/support/Tools/NUnit-v2.5/nunit-console-x86.exe.config +0 -87
- data/spec/support/Tools/NUnit-v2.5/nunit-console.exe +0 -0
- data/spec/support/Tools/NUnit-v2.5/nunit-console.exe.config +0 -87
- data/spec/support/Tools/NUnit-v2.5/nunit-x86.exe +0 -0
- data/spec/support/Tools/NUnit-v2.5/nunit-x86.exe.config +0 -95
- data/spec/support/Tools/NUnit-v2.5/nunit.exe +0 -0
- data/spec/support/Tools/NUnit-v2.5/nunit.exe.config +0 -95
- data/spec/support/Tools/NUnit-v2.5/nunit.framework.dll +0 -0
- data/spec/support/Tools/NUnit-v2.5/pnunit-agent.exe +0 -0
- data/spec/support/Tools/NUnit-v2.5/pnunit-agent.exe.config +0 -87
- data/spec/support/Tools/NUnit-v2.5/pnunit-launcher.exe +0 -0
- data/spec/support/Tools/NUnit-v2.5/pnunit-launcher.exe.config +0 -87
- data/spec/support/Tools/NUnit-v2.5/pnunit.framework.dll +0 -0
- data/spec/support/Tools/NUnit-v2.5/pnunit.tests.dll +0 -0
- data/spec/support/Tools/NUnit-v2.5/runFile.exe +0 -0
- data/spec/support/Tools/NUnit-v2.5/runFile.exe.config +0 -43
- data/spec/support/Tools/NUnit-v2.5/runpnunit.bat +0 -2
- data/spec/support/Tools/NUnit-v2.5/test.conf +0 -24
- data/spec/support/Tools/PartCover-v2.3/Interop.PartCover.dll +0 -0
- data/spec/support/Tools/PartCover-v2.3/PartCover Browser Manual.rtf +0 -28853
- data/spec/support/Tools/PartCover-v2.3/PartCover Console Manual.rtf +0 -203
- data/spec/support/Tools/PartCover-v2.3/PartCover.Browser.Api.dll +0 -0
- data/spec/support/Tools/PartCover-v2.3/PartCover.Browser.exe +0 -0
- data/spec/support/Tools/PartCover-v2.3/PartCover.Browser.exe.config +0 -51
- data/spec/support/Tools/PartCover-v2.3/PartCover.CorDriver.dll +0 -0
- data/spec/support/Tools/PartCover-v2.3/PartCover.Framework.dll +0 -0
- data/spec/support/Tools/PartCover-v2.3/PartCover.exe +0 -0
- data/spec/support/Tools/PartCover-v2.3/PartCover.exe.config +0 -4
- data/spec/support/Tools/PartCover-v2.3/PartViewer.dll +0 -0
- data/spec/support/Tools/PartCover-v2.3/app.ico +0 -0
- data/spec/support/Tools/PartCover-v2.3/log4net.dll +0 -0
- data/spec/support/Tools/PartCover-v2.3/xslt/Report By Assembly.xslt +0 -54
- data/spec/support/Tools/PartCover-v2.3/xslt/Report By Class.xslt +0 -52
- data/spec/support/Tools/SpecFlow/Antlr3.Runtime.dll +0 -0
- data/spec/support/Tools/SpecFlow/Interop.SHDocVw.dll +0 -0
- data/spec/support/Tools/SpecFlow/TechTalk.SpecFlow.Generator.dll +0 -0
- data/spec/support/Tools/SpecFlow/TechTalk.SpecFlow.Parser.dll +0 -0
- data/spec/support/Tools/SpecFlow/TechTalk.SpecFlow.Reporting.dll +0 -0
- data/spec/support/Tools/SpecFlow/TechTalk.SpecFlow.VsIntegration.dll +0 -0
- data/spec/support/Tools/SpecFlow/TechTalk.SpecFlow.dll +0 -0
- data/spec/support/Tools/SpecFlow/TechTalk.SpecFlow.targets +0 -58
- data/spec/support/Tools/SpecFlow/TechTalk.SpecFlow.tasks +0 -17
- data/spec/support/Tools/SpecFlow/changelog.txt +0 -50
- data/spec/support/Tools/SpecFlow/specflow.exe +0 -0
- data/spec/support/Tools/XUnit-v1.9/EULA.txt +0 -29
- data/spec/support/Tools/XUnit-v1.9/HTML.xslt +0 -126
- data/spec/support/Tools/XUnit-v1.9/NUnitXml.xslt +0 -121
- data/spec/support/Tools/XUnit-v1.9/xunit.console.clr4.exe +0 -0
- data/spec/support/Tools/XUnit-v1.9/xunit.console.clr4.exe.config +0 -21
- data/spec/support/Tools/XUnit-v1.9/xunit.console.clr4.x86.exe +0 -0
- data/spec/support/Tools/XUnit-v1.9/xunit.console.clr4.x86.exe.config +0 -21
- data/spec/support/Tools/XUnit-v1.9/xunit.console.exe +0 -0
- data/spec/support/Tools/XUnit-v1.9/xunit.console.exe.config +0 -21
- data/spec/support/Tools/XUnit-v1.9/xunit.console.x86.exe +0 -0
- data/spec/support/Tools/XUnit-v1.9/xunit.console.x86.exe.config +0 -21
- data/spec/support/Tools/XUnit-v1.9/xunit.dll +0 -0
- data/spec/support/Tools/XUnit-v1.9/xunit.dll.tdnet +0 -5
- data/spec/support/Tools/XUnit-v1.9/xunit.extensions.dll +0 -0
- data/spec/support/Tools/XUnit-v1.9/xunit.extensions.xml +0 -805
- data/spec/support/Tools/XUnit-v1.9/xunit.gui.clr4.exe +0 -0
- data/spec/support/Tools/XUnit-v1.9/xunit.gui.clr4.x86.exe +0 -0
- data/spec/support/Tools/XUnit-v1.9/xunit.gui.exe +0 -0
- data/spec/support/Tools/XUnit-v1.9/xunit.gui.x86.exe +0 -0
- data/spec/support/Tools/XUnit-v1.9/xunit.installer.exe +0 -0
- data/spec/support/Tools/XUnit-v1.9/xunit.runner.msbuild.dll +0 -0
- data/spec/support/Tools/XUnit-v1.9/xunit.runner.tdnet.dll +0 -0
- data/spec/support/Tools/XUnit-v1.9/xunit.runner.utility.dll +0 -0
- data/spec/support/Tools/XUnit-v1.9/xunit.runner.utility.xml +0 -1212
- data/spec/support/Tools/XUnit-v1.9/xunit.xml +0 -2604
- data/spec/support/assemblyinfotester.rb +0 -52
- data/spec/support/csc/File1.cs +0 -9
- data/spec/support/csc/File2.cs +0 -9
- data/spec/support/csc/output/ignorethis.txt +0 -1
- data/spec/support/ironruby_validator.rb +0 -26
- data/spec/support/msbuildtestdata.rb +0 -32
- data/spec/support/nanttestdata.rb +0 -33
- data/spec/support/ncoverconsoletestdata.rb +0 -20
- data/spec/support/ncoverreporttestdata.rb +0 -26
- data/spec/support/nokogiri_validator.rb +0 -15
- data/spec/support/outputtestdata.rb +0 -13
- data/spec/support/test.yml +0 -4
- data/spec/support/yamlconfig/msbuild.yml +0 -5
- data/spec/support/yamlconfig/yaml_autoconfig_test.yml +0 -1
- data/spec/support/zip/files/subfolder/sub file.txt +0 -1
- data/spec/support/zip/files/testfile.txt +0 -1
- data/spec/support/ziptestdata.rb +0 -13
metadata
CHANGED
@@ -1,19 +1,22 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: albacore
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.rc.
|
4
|
+
version: 1.0.0.rc.3
|
5
|
+
prerelease: 6
|
5
6
|
platform: ruby
|
6
7
|
authors:
|
7
8
|
- Henrik Feldt
|
8
9
|
- Anthony Mastrean
|
10
|
+
- Derick Bailey
|
9
11
|
autorequire:
|
10
12
|
bindir: bin
|
11
13
|
cert_chain: []
|
12
|
-
date:
|
14
|
+
date: 2014-02-13 00:00:00.000000000 Z
|
13
15
|
dependencies:
|
14
16
|
- !ruby/object:Gem::Dependency
|
15
17
|
name: nokogiri
|
16
18
|
requirement: !ruby/object:Gem::Requirement
|
19
|
+
none: false
|
17
20
|
requirements:
|
18
21
|
- - ~>
|
19
22
|
- !ruby/object:Gem::Version
|
@@ -21,6 +24,7 @@ dependencies:
|
|
21
24
|
type: :runtime
|
22
25
|
prerelease: false
|
23
26
|
version_requirements: !ruby/object:Gem::Requirement
|
27
|
+
none: false
|
24
28
|
requirements:
|
25
29
|
- - ~>
|
26
30
|
- !ruby/object:Gem::Version
|
@@ -28,20 +32,23 @@ dependencies:
|
|
28
32
|
- !ruby/object:Gem::Dependency
|
29
33
|
name: rake
|
30
34
|
requirement: !ruby/object:Gem::Requirement
|
35
|
+
none: false
|
31
36
|
requirements:
|
32
|
-
- - '>='
|
37
|
+
- - ! '>='
|
33
38
|
- !ruby/object:Gem::Version
|
34
39
|
version: '0'
|
35
40
|
type: :runtime
|
36
41
|
prerelease: false
|
37
42
|
version_requirements: !ruby/object:Gem::Requirement
|
43
|
+
none: false
|
38
44
|
requirements:
|
39
|
-
- - '>='
|
45
|
+
- - ! '>='
|
40
46
|
- !ruby/object:Gem::Version
|
41
47
|
version: '0'
|
42
48
|
- !ruby/object:Gem::Dependency
|
43
49
|
name: rubyzip
|
44
50
|
requirement: !ruby/object:Gem::Requirement
|
51
|
+
none: false
|
45
52
|
requirements:
|
46
53
|
- - ~>
|
47
54
|
- !ruby/object:Gem::Version
|
@@ -49,50 +56,25 @@ dependencies:
|
|
49
56
|
type: :runtime
|
50
57
|
prerelease: false
|
51
58
|
version_requirements: !ruby/object:Gem::Requirement
|
59
|
+
none: false
|
52
60
|
requirements:
|
53
61
|
- - ~>
|
54
62
|
- !ruby/object:Gem::Version
|
55
63
|
version: '1.0'
|
56
|
-
- !ruby/object:Gem::Dependency
|
57
|
-
name: guard
|
58
|
-
requirement: !ruby/object:Gem::Requirement
|
59
|
-
requirements:
|
60
|
-
- - '>='
|
61
|
-
- !ruby/object:Gem::Version
|
62
|
-
version: '0'
|
63
|
-
type: :development
|
64
|
-
prerelease: false
|
65
|
-
version_requirements: !ruby/object:Gem::Requirement
|
66
|
-
requirements:
|
67
|
-
- - '>='
|
68
|
-
- !ruby/object:Gem::Version
|
69
|
-
version: '0'
|
70
|
-
- !ruby/object:Gem::Dependency
|
71
|
-
name: guard-rspec
|
72
|
-
requirement: !ruby/object:Gem::Requirement
|
73
|
-
requirements:
|
74
|
-
- - '>='
|
75
|
-
- !ruby/object:Gem::Version
|
76
|
-
version: '0'
|
77
|
-
type: :development
|
78
|
-
prerelease: false
|
79
|
-
version_requirements: !ruby/object:Gem::Requirement
|
80
|
-
requirements:
|
81
|
-
- - '>='
|
82
|
-
- !ruby/object:Gem::Version
|
83
|
-
version: '0'
|
84
64
|
- !ruby/object:Gem::Dependency
|
85
65
|
name: rspec
|
86
66
|
requirement: !ruby/object:Gem::Requirement
|
67
|
+
none: false
|
87
68
|
requirements:
|
88
|
-
- - '>='
|
69
|
+
- - ! '>='
|
89
70
|
- !ruby/object:Gem::Version
|
90
71
|
version: '0'
|
91
72
|
type: :development
|
92
73
|
prerelease: false
|
93
74
|
version_requirements: !ruby/object:Gem::Requirement
|
75
|
+
none: false
|
94
76
|
requirements:
|
95
|
-
- - '>='
|
77
|
+
- - ! '>='
|
96
78
|
- !ruby/object:Gem::Version
|
97
79
|
version: '0'
|
98
80
|
description: Albacore is a professional quality suite of Rake tasks for building .NET
|
@@ -106,7 +88,6 @@ files:
|
|
106
88
|
- .bundle/config
|
107
89
|
- .gitignore
|
108
90
|
- .rspec
|
109
|
-
- .rvmrc
|
110
91
|
- .travis.yml
|
111
92
|
- CONTRIBUTING.md
|
112
93
|
- Gemfile
|
@@ -130,43 +111,43 @@ files:
|
|
130
111
|
- lib/albacore/config/cscconfig.rb
|
131
112
|
- lib/albacore/config/docuconfig.rb
|
132
113
|
- lib/albacore/config/execconfig.rb
|
133
|
-
- lib/albacore/config/
|
114
|
+
- lib/albacore/config/fluentmigratorconfig.rb
|
134
115
|
- lib/albacore/config/ilmergeconfig.rb
|
135
116
|
- lib/albacore/config/msbuildconfig.rb
|
136
|
-
- lib/albacore/config/
|
137
|
-
- lib/albacore/config/
|
138
|
-
- lib/albacore/config/mstesttestrunnerconfig.rb
|
117
|
+
- lib/albacore/config/mspecconfig.rb
|
118
|
+
- lib/albacore/config/mstestconfig.rb
|
139
119
|
- lib/albacore/config/nantconfig.rb
|
140
120
|
- lib/albacore/config/nchurnconfig.rb
|
141
121
|
- lib/albacore/config/ncoverconsoleconfig.rb
|
142
122
|
- lib/albacore/config/ncoverreportconfig.rb
|
143
123
|
- lib/albacore/config/ndependconfig.rb
|
144
124
|
- lib/albacore/config/netversion.rb
|
125
|
+
- lib/albacore/config/nugetinstallconfig.rb
|
145
126
|
- lib/albacore/config/nugetpackconfig.rb
|
146
|
-
- lib/albacore/config/nugetpublishconfig.rb
|
147
127
|
- lib/albacore/config/nugetpushconfig.rb
|
148
128
|
- lib/albacore/config/nugetupdateconfig.rb
|
149
|
-
- lib/albacore/config/
|
150
|
-
- lib/albacore/config/
|
129
|
+
- lib/albacore/config/nunitconfig.rb
|
130
|
+
- lib/albacore/config/nuspecconfig.rb
|
131
|
+
- lib/albacore/config/plinkconfig.rb
|
132
|
+
- lib/albacore/config/specflowconfig.rb
|
151
133
|
- lib/albacore/config/sqlcmdconfig.rb
|
152
134
|
- lib/albacore/config/unzipconfig.rb
|
153
|
-
- lib/albacore/config/vssgetconfig.rb
|
154
135
|
- lib/albacore/config/xbuildconfig.rb
|
155
|
-
- lib/albacore/config/
|
136
|
+
- lib/albacore/config/xunitconfig.rb
|
156
137
|
- lib/albacore/config/zipdirectoryconfig.rb
|
157
138
|
- lib/albacore/csc.rb
|
158
139
|
- lib/albacore/docu.rb
|
159
140
|
- lib/albacore/exec.rb
|
160
|
-
- lib/albacore/
|
141
|
+
- lib/albacore/fluentmigrator.rb
|
161
142
|
- lib/albacore/ilmerge.rb
|
162
143
|
- lib/albacore/msbuild.rb
|
163
|
-
- lib/albacore/
|
164
|
-
- lib/albacore/
|
165
|
-
- lib/albacore/mstesttestrunner.rb
|
144
|
+
- lib/albacore/mspec.rb
|
145
|
+
- lib/albacore/mstest.rb
|
166
146
|
- lib/albacore/nant.rb
|
167
147
|
- lib/albacore/nchurn.rb
|
168
148
|
- lib/albacore/ncoverconsole.rb
|
169
149
|
- lib/albacore/ncoverreport.rb
|
150
|
+
- lib/albacore/ncoverreports.rb
|
170
151
|
- lib/albacore/ncoverreports/assemblyfilter.rb
|
171
152
|
- lib/albacore/ncoverreports/branchcoverage.rb
|
172
153
|
- lib/albacore/ncoverreports/classfilter.rb
|
@@ -177,40 +158,38 @@ files:
|
|
177
158
|
- lib/albacore/ncoverreports/methodcoverage.rb
|
178
159
|
- lib/albacore/ncoverreports/methodfilter.rb
|
179
160
|
- lib/albacore/ncoverreports/namespacefilter.rb
|
161
|
+
- lib/albacore/ncoverreports/reportbase.rb
|
180
162
|
- lib/albacore/ncoverreports/reportfilterbase.rb
|
181
163
|
- lib/albacore/ncoverreports/summaryreport.rb
|
182
164
|
- lib/albacore/ncoverreports/symbolcoverage.rb
|
183
165
|
- lib/albacore/ndepend.rb
|
184
166
|
- lib/albacore/nugetinstall.rb
|
185
167
|
- lib/albacore/nugetpack.rb
|
186
|
-
- lib/albacore/nugetpublish.rb
|
187
168
|
- lib/albacore/nugetpush.rb
|
188
169
|
- lib/albacore/nugetupdate.rb
|
189
|
-
- lib/albacore/
|
170
|
+
- lib/albacore/nunit.rb
|
190
171
|
- lib/albacore/nuspec.rb
|
191
172
|
- lib/albacore/output.rb
|
192
173
|
- lib/albacore/plink.rb
|
193
|
-
- lib/albacore/
|
174
|
+
- lib/albacore/specflow.rb
|
194
175
|
- lib/albacore/sqlcmd.rb
|
195
176
|
- lib/albacore/support/attrmethods.rb
|
196
177
|
- lib/albacore/support/createtask.rb
|
197
178
|
- lib/albacore/support/failure.rb
|
198
179
|
- lib/albacore/support/logging.rb
|
199
180
|
- lib/albacore/support/openstruct.rb
|
181
|
+
- lib/albacore/support/platform.rb
|
200
182
|
- lib/albacore/support/runcommand.rb
|
201
|
-
- lib/albacore/support/supportlinux.rb
|
202
183
|
- lib/albacore/support/updateattributes.rb
|
203
184
|
- lib/albacore/support/yamlconfig.rb
|
204
185
|
- lib/albacore/unzip.rb
|
205
186
|
- lib/albacore/version.rb
|
206
|
-
- lib/albacore/vssget.rb
|
207
187
|
- lib/albacore/xbuild.rb
|
208
|
-
- lib/albacore/
|
188
|
+
- lib/albacore/xunit.rb
|
209
189
|
- lib/albacore/zipdirectory.rb
|
210
|
-
- samples/Rakefile
|
211
|
-
- spec/README.md
|
212
190
|
- spec/albacoremodel_spec.rb
|
213
|
-
- spec/
|
191
|
+
- spec/aspnetcompiler_spec.rb
|
192
|
+
- spec/assemblyinfo/AssemblyInfo.cs
|
214
193
|
- spec/assemblyinfo_spec.rb
|
215
194
|
- spec/attrmethods_spec.rb
|
216
195
|
- spec/config_spec.rb
|
@@ -218,12 +197,11 @@ files:
|
|
218
197
|
- spec/csc_spec.rb
|
219
198
|
- spec/docu_spec.rb
|
220
199
|
- spec/exec_spec.rb
|
221
|
-
- spec/
|
200
|
+
- spec/fluentmigrator_spec.rb
|
222
201
|
- spec/ilmerge_spec.rb
|
223
202
|
- spec/msbuild_spec.rb
|
224
|
-
- spec/msdeploy_spec.rb
|
225
203
|
- spec/mspec_spec.rb
|
226
|
-
- spec/
|
204
|
+
- spec/mstest_spec.rb
|
227
205
|
- spec/nant_spec.rb
|
228
206
|
- spec/nchurn_spec.rb
|
229
207
|
- spec/ncoverconsole_spec.rb
|
@@ -231,560 +209,62 @@ files:
|
|
231
209
|
- spec/ndepend_spec.rb
|
232
210
|
- spec/netversion_spec.rb
|
233
211
|
- spec/nugetinstall_spec.rb
|
212
|
+
- spec/nugetpack_spec.rb
|
213
|
+
- spec/nugetpush_spec.rb
|
234
214
|
- spec/nugetupdate_spec.rb
|
235
|
-
- spec/
|
215
|
+
- spec/nunit_spec.rb
|
216
|
+
- spec/nuspec/nuspec.xsd
|
236
217
|
- spec/nuspec_spec.rb
|
218
|
+
- spec/output/bar/bar.txt
|
219
|
+
- spec/output/baz.txt
|
220
|
+
- spec/output/erb.txt
|
221
|
+
- spec/output/foo/foo/foo.txt
|
237
222
|
- spec/output_spec.rb
|
238
|
-
- spec/
|
239
|
-
- spec/
|
240
|
-
- spec/patches/system_patch.rb
|
223
|
+
- spec/patch/system_patch.rb
|
224
|
+
- spec/platform_spec.rb
|
241
225
|
- spec/plink_spec.rb
|
242
226
|
- spec/runcommand_spec.rb
|
243
|
-
- spec/spec.opts
|
244
227
|
- spec/spec_helper.rb
|
245
|
-
- spec/
|
228
|
+
- spec/specflow_spec.rb
|
246
229
|
- spec/sqlcmd_spec.rb
|
247
|
-
- spec/support/AssemblyInfo/AssemblyInfo.test
|
248
|
-
- spec/support/AssemblyInfo/AssemblyInfoInput.test
|
249
|
-
- spec/support/AssemblyInfo/assemblyinfo.yml
|
250
|
-
- spec/support/CodeCoverage/mspec/assemblies/Machine.Specifications.dll
|
251
|
-
- spec/support/CodeCoverage/mspec/assemblies/TestSolution.MSpecTests.dll
|
252
|
-
- spec/support/CodeCoverage/mspec/assemblies/TestSolution.dll
|
253
|
-
- spec/support/CodeCoverage/mspec/assemblies/nunit.framework.dll
|
254
|
-
- spec/support/CodeCoverage/mstest/TestSolution.MSTestTests.NET40.dll
|
255
|
-
- spec/support/CodeCoverage/mstest/TestSolution.MSTestTests.dll
|
256
|
-
- spec/support/CodeCoverage/nunit/assemblies/TestSolution.Tests.dll
|
257
|
-
- spec/support/CodeCoverage/nunit/assemblies/TestSolution.dll
|
258
|
-
- spec/support/CodeCoverage/nunit/assemblies/nunit.framework.dll
|
259
|
-
- spec/support/CodeCoverage/nunit/assemblies/with spaces/TestSolution.Tests.dll
|
260
|
-
- spec/support/CodeCoverage/nunit/assemblies/with spaces/TestSolution.dll
|
261
|
-
- spec/support/CodeCoverage/nunit/assemblies/with spaces/nunit.framework.dll
|
262
|
-
- spec/support/CodeCoverage/nunit/failing_assemblies/TestSolution.FailingTests.dll
|
263
|
-
- spec/support/CodeCoverage/nunit/failing_assemblies/nunit.framework.dll
|
264
|
-
- spec/support/CodeCoverage/report/coverage.xml
|
265
|
-
- spec/support/CodeCoverage/xunit/assemblies/TestSolution.XUnitTests.dll
|
266
|
-
- spec/support/CodeCoverage/xunit/assemblies/TestSolution.dll
|
267
|
-
- spec/support/CodeCoverage/xunit/assemblies/xunit.dll
|
268
|
-
- spec/support/CodeCoverage/xunit/assemblies/xunit.xml
|
269
|
-
- spec/support/FluentMigrator/FluentMigrator.dll
|
270
|
-
- spec/support/FluentMigrator/TestSolution.FluentMigrator.dll
|
271
|
-
- spec/support/SpecFlow/TechTalk.SpecFlow.dll
|
272
|
-
- spec/support/SpecFlow/TestSolution.SpecFlow.dll
|
273
|
-
- spec/support/SpecFlow/TestSolution.SpecFlow.pdb
|
274
|
-
- spec/support/SpecFlow/TestSolution.dll
|
275
|
-
- spec/support/SpecFlow/TestSolution.pdb
|
276
|
-
- spec/support/SpecFlow/nunit.framework.dll
|
277
|
-
- spec/support/TestSolution/LocalTestRun.testrunconfig
|
278
|
-
- spec/support/TestSolution/NDependProject.xml
|
279
|
-
- spec/support/TestSolution/TestSolution.5.0.ReSharper.user
|
280
|
-
- spec/support/TestSolution/TestSolution.FailingTests/FailingTestFixture.cs
|
281
|
-
- spec/support/TestSolution/TestSolution.FailingTests/Properties/AssemblyInfo.cs
|
282
|
-
- spec/support/TestSolution/TestSolution.FailingTests/TestSolution.FailingTests.csproj
|
283
|
-
- spec/support/TestSolution/TestSolution.FluentMigrator/M001_SampleMigration.cs
|
284
|
-
- spec/support/TestSolution/TestSolution.FluentMigrator/Properties/AssemblyInfo.cs
|
285
|
-
- spec/support/TestSolution/TestSolution.FluentMigrator/TestSolution.FluentMigrator.csproj
|
286
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy.sln
|
287
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/About.aspx
|
288
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/About.aspx.cs
|
289
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/About.aspx.designer.cs
|
290
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePassword.aspx
|
291
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePassword.aspx.cs
|
292
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePassword.aspx.designer.cs
|
293
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePasswordSuccess.aspx
|
294
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePasswordSuccess.aspx.cs
|
295
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePasswordSuccess.aspx.designer.cs
|
296
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Login.aspx
|
297
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Login.aspx.cs
|
298
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Login.aspx.designer.cs
|
299
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Register.aspx
|
300
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Register.aspx.cs
|
301
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Register.aspx.designer.cs
|
302
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Web.config
|
303
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Default.aspx
|
304
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Default.aspx.cs
|
305
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Default.aspx.designer.cs
|
306
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Global.asax
|
307
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Global.asax.cs
|
308
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Properties/AssemblyInfo.cs
|
309
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Scripts/jquery-1.4.1-vsdoc.js
|
310
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Scripts/jquery-1.4.1.js
|
311
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Scripts/jquery-1.4.1.min.js
|
312
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Site.Master
|
313
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Site.Master.cs
|
314
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Site.Master.designer.cs
|
315
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Styles/Site.css
|
316
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/TestSolution.MSDeploy.Publish.xml
|
317
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/TestSolution.MSDeploy.csproj
|
318
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Web.Debug.config
|
319
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Web.Release.config
|
320
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Web.config
|
321
|
-
- spec/support/TestSolution/TestSolution.MSTestTests.NET40/Properties/AssemblyInfo.cs
|
322
|
-
- spec/support/TestSolution/TestSolution.MSTestTests.NET40/TestSolution.MSTestTests.NET40.csproj
|
323
|
-
- spec/support/TestSolution/TestSolution.MSTestTests.NET40/Tests.cs
|
324
|
-
- spec/support/TestSolution/TestSolution.MSTestTests/Properties/AssemblyInfo.cs
|
325
|
-
- spec/support/TestSolution/TestSolution.MSTestTests/TestSolution.MSTestTests.csproj
|
326
|
-
- spec/support/TestSolution/TestSolution.MSTestTests/Tests.cs
|
327
|
-
- spec/support/TestSolution/TestSolution.MSpecTests/Properties/AssemblyInfo.cs
|
328
|
-
- spec/support/TestSolution/TestSolution.MSpecTests/SomeSpecTest.cs
|
329
|
-
- spec/support/TestSolution/TestSolution.MSpecTests/TestSolution.MSpecTests.csproj
|
330
|
-
- spec/support/TestSolution/TestSolution.SpecFlow/OneFeature.feature
|
331
|
-
- spec/support/TestSolution/TestSolution.SpecFlow/OneFeature.feature.cs
|
332
|
-
- spec/support/TestSolution/TestSolution.SpecFlow/Properties/AssemblyInfo.cs
|
333
|
-
- spec/support/TestSolution/TestSolution.SpecFlow/StepDefinition.cs
|
334
|
-
- spec/support/TestSolution/TestSolution.SpecFlow/TestSolution.SpecFlow.csproj
|
335
|
-
- spec/support/TestSolution/TestSolution.Tests/Properties/AssemblyInfo.cs
|
336
|
-
- spec/support/TestSolution/TestSolution.Tests/SomeTestFixture.cs
|
337
|
-
- spec/support/TestSolution/TestSolution.Tests/TestSolution.Tests.csproj
|
338
|
-
- spec/support/TestSolution/TestSolution.XUnitTests/Class1.cs
|
339
|
-
- spec/support/TestSolution/TestSolution.XUnitTests/FailingTestFixture.cs
|
340
|
-
- spec/support/TestSolution/TestSolution.XUnitTests/Properties/AssemblyInfo.cs
|
341
|
-
- spec/support/TestSolution/TestSolution.XUnitTests/TestSolution.XUnitTests.csproj
|
342
|
-
- spec/support/TestSolution/TestSolution.build
|
343
|
-
- spec/support/TestSolution/TestSolution.sln
|
344
|
-
- spec/support/TestSolution/TestSolution.vsmdi
|
345
|
-
- spec/support/TestSolution/TestSolution/Class1.cs
|
346
|
-
- spec/support/TestSolution/TestSolution/Properties/AssemblyInfo.cs
|
347
|
-
- spec/support/TestSolution/TestSolution/TestSolution.csproj
|
348
|
-
- spec/support/Tools/FluentMigrator-0.9/FluentMigrator.MSBuild.dll
|
349
|
-
- spec/support/Tools/FluentMigrator-0.9/FluentMigrator.NAnt.dll
|
350
|
-
- spec/support/Tools/FluentMigrator-0.9/FluentMigrator.Runner.dll
|
351
|
-
- spec/support/Tools/FluentMigrator-0.9/FluentMigrator.Runner.pdb
|
352
|
-
- spec/support/Tools/FluentMigrator-0.9/FluentMigrator.Tests.dll
|
353
|
-
- spec/support/Tools/FluentMigrator-0.9/FluentMigrator.Tests.pdb
|
354
|
-
- spec/support/Tools/FluentMigrator-0.9/FluentMigrator.dll
|
355
|
-
- spec/support/Tools/FluentMigrator-0.9/FluentMigrator.pdb
|
356
|
-
- spec/support/Tools/FluentMigrator-0.9/Migrate.exe
|
357
|
-
- spec/support/Tools/FluentMigrator-0.9/Migrate.exe.config
|
358
|
-
- spec/support/Tools/FluentMigrator-0.9/Moq.dll
|
359
|
-
- spec/support/Tools/FluentMigrator-0.9/Moq.xml
|
360
|
-
- spec/support/Tools/FluentMigrator-0.9/MySql.Data.dll
|
361
|
-
- spec/support/Tools/FluentMigrator-0.9/NAnt.Core.dll
|
362
|
-
- spec/support/Tools/FluentMigrator-0.9/NAnt.Core.xml
|
363
|
-
- spec/support/Tools/FluentMigrator-0.9/Oracle.DataAccess.dll
|
364
|
-
- spec/support/Tools/FluentMigrator-0.9/System.Data.SQLite.DLL
|
365
|
-
- spec/support/Tools/FluentMigrator-0.9/log4net.dll
|
366
|
-
- spec/support/Tools/FluentMigrator-0.9/nunit.framework.dll
|
367
|
-
- spec/support/Tools/FluentMigrator-0.9/nunit.should.dll
|
368
|
-
- spec/support/Tools/FluentMigrator-0.9/testscript.sql
|
369
|
-
- spec/support/Tools/MSTest-2008/MSTest.exe
|
370
|
-
- spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.CommandLine.dll
|
371
|
-
- spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.Common.dll
|
372
|
-
- spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.ControllerObject.dll
|
373
|
-
- spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.ExecutionCommon.dll
|
374
|
-
- spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.TMI.dll
|
375
|
-
- spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Adapter.dll
|
376
|
-
- spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.AssemblyResolver.dll
|
377
|
-
- spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.ObjectModel.dll
|
378
|
-
- spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Tip.dll
|
379
|
-
- spec/support/Tools/MSTest-2010/MSTest.exe
|
380
|
-
- spec/support/Tools/MSTest-2010/MSTest.exe.config
|
381
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.AgentObject.dll
|
382
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.AgentProcessManager.dll
|
383
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CMI.dll
|
384
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CheckinPolicies.dll
|
385
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CodeCoverage.dll
|
386
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CodedUITest.Controls.dll
|
387
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CodedUITestFramework.dll
|
388
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CodedUITestPackage.dll
|
389
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CommandLine.dll
|
390
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Common.dll
|
391
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Controller.SpooledJob.dll
|
392
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.ControllerObject.dll
|
393
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.DataCollectionAgentObject.dll
|
394
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.ExecutionCommon.dll
|
395
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.HostAdapters.ASPNETAdapter.dll
|
396
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.HostAdapters.ASPNETAgent.dll
|
397
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Linking.dll
|
398
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTest.dll
|
399
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExcelAddIn.dll
|
400
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExcelAddIn.dll.manifest
|
401
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExcelAddIn.vsto
|
402
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExcelCommon.dll
|
403
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExcelCommon.tlb
|
404
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExec.dll
|
405
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestFramework.dll
|
406
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestPackage.dll
|
407
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestUI.dll
|
408
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.NICServices.dll
|
409
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.NetworkEmulation.dll
|
410
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.OperationalStore.ClientHelper.dll
|
411
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.RecorderBar.dll
|
412
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.RecorderBarBHO100.dll
|
413
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Resource.dll
|
414
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Sqm.dll
|
415
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.TMI.dll
|
416
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.TestCaseManagement.dll
|
417
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.GenericTest.Adapter.dll
|
418
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.GenericTest.ObjectModel.dll
|
419
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.GenericTest.Tip.dll
|
420
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.ManualTest.Adapter.dll
|
421
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.ManualTest.ObjectModel.dll
|
422
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.ManualTest.Tip.dll
|
423
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.OrderedTest.Adapter.dll
|
424
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.OrderedTest.ObjectModel.dll
|
425
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.OrderedTest.Tip.dll
|
426
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.TuipPackage.dll
|
427
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Adapter.dll
|
428
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.AssemblyResolver.dll
|
429
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.ObjectModel.dll
|
430
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Tip.dll
|
431
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.WebLoadTest.Tip.dll
|
432
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll
|
433
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Vsip.dll
|
434
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.WarehouseCommon.dll
|
435
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.WebTestFramework.dll
|
436
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.WebTestPlayback.dll
|
437
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Wizard.TestProjectWizards.dll
|
438
|
-
- spec/support/Tools/MSTest-2010/mstest.reg
|
439
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/lib/Machine.Specifications.TDNetRunner.dll
|
440
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/lib/Machine.Specifications.dll
|
441
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/lib/Machine.Specifications.dll.tdnet
|
442
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/CommandLine.dll
|
443
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/CommandLine.xml
|
444
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.4.1.bat
|
445
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.4.5.bat
|
446
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.5.0
|
447
|
-
- VS2008.bat
|
448
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.5.0
|
449
|
-
- VS2010.bat
|
450
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.5.1
|
451
|
-
- VS2008.bat
|
452
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.5.1
|
453
|
-
- VS2010.bat
|
454
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.6.0
|
455
|
-
- VS2008.bat
|
456
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.6.0
|
457
|
-
- VS2010.bat
|
458
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.6.1
|
459
|
-
- VS2008.bat
|
460
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.6.1
|
461
|
-
- VS2010.bat
|
462
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallTDNetRunner.bat
|
463
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallTDNetRunnerSilent.bat
|
464
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/License.txt
|
465
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.GallioAdapter.3.1.dll
|
466
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.GallioAdapter.plugin
|
467
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.4.1.dll
|
468
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.4.5.dll
|
469
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.5.0.dll
|
470
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.5.1.dll
|
471
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.6.0.dll
|
472
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.6.1.dll
|
473
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.Reporting.Templates.dll
|
474
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.Reporting.dll
|
475
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.SeleniumSupport.dll
|
476
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.TDNetRunner.dll
|
477
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.WatinSupport.dll
|
478
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.dll
|
479
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.dll.tdnet
|
480
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/Spark.dll
|
481
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/TestDriven.Framework.dll
|
482
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/install.ps1
|
483
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec-clr4.exe
|
484
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec-clr4.exe.config
|
485
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec-x86-clr4.exe
|
486
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec-x86-clr4.exe.config
|
487
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec-x86.exe
|
488
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec.exe
|
489
|
-
- spec/support/Tools/NAnt-0.85/COPYING.txt
|
490
|
-
- spec/support/Tools/NAnt-0.85/README.txt
|
491
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.CompressionTasks.dll
|
492
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.CompressionTasks.xml
|
493
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.Core.dll
|
494
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.Core.xml
|
495
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.DotNetTasks.dll
|
496
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.DotNetTasks.xml
|
497
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.MSNetTasks.dll
|
498
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.MSNetTasks.xml
|
499
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.NUnit.dll
|
500
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.NUnit.xml
|
501
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.NUnit1Tasks.dll
|
502
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.NUnit1Tasks.xml
|
503
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.NUnit2Tasks.dll
|
504
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.NUnit2Tasks.xml
|
505
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.SourceControlTasks.dll
|
506
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.SourceControlTasks.xml
|
507
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.VSNetTasks.dll
|
508
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.VSNetTasks.xml
|
509
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.VisualCppTasks.dll
|
510
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.VisualCppTasks.xml
|
511
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.Win32Tasks.dll
|
512
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.Win32Tasks.xml
|
513
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.exe
|
514
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.exe.config
|
515
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.xml
|
516
|
-
- spec/support/Tools/NAnt-0.85/bin/NDoc.Documenter.NAnt.dll
|
517
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/ICSharpCode.SharpCvsLib.Console.dll
|
518
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/ICSharpCode.SharpCvsLib.dll
|
519
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/ICSharpCode.SharpZipLib.dll
|
520
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/NUnitCore.dll
|
521
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/mono/1.0/NDoc.Core.dll
|
522
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/mono/1.0/NDoc.Documenter.Msdn.dll
|
523
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/mono/1.0/NDoc.ExtendedUI.dll
|
524
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/mono/1.0/nunit.core.dll
|
525
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/mono/1.0/nunit.framework.dll
|
526
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/mono/1.0/nunit.util.dll
|
527
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/mono/2.0/NDoc.Core.dll
|
528
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/mono/2.0/NDoc.Documenter.Msdn.dll
|
529
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/mono/2.0/NDoc.ExtendedUI.dll
|
530
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/mono/2.0/nunit.core.dll
|
531
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/mono/2.0/nunit.framework.dll
|
532
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/mono/2.0/nunit.util.dll
|
533
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/net/1.0/NDoc.Core.dll
|
534
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/net/1.0/NDoc.Documenter.Msdn.dll
|
535
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/net/1.0/NDoc.ExtendedUI.dll
|
536
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/net/1.0/nunit.core.dll
|
537
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/net/1.0/nunit.framework.dll
|
538
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/net/1.0/nunit.util.dll
|
539
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/net/1.1/NDoc.Core.dll
|
540
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/net/1.1/NDoc.Documenter.Msdn.dll
|
541
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/net/1.1/NDoc.ExtendedUI.dll
|
542
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/net/1.1/nunit.core.dll
|
543
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/net/1.1/nunit.framework.dll
|
544
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/net/1.1/nunit.util.dll
|
545
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/net/2.0/NDoc.Core.dll
|
546
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/net/2.0/NDoc.Documenter.Msdn.dll
|
547
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/net/2.0/NDoc.ExtendedUI.dll
|
548
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/net/2.0/nunit.core.dll
|
549
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/net/2.0/nunit.framework.dll
|
550
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/net/2.0/nunit.util.dll
|
551
|
-
- spec/support/Tools/NAnt-0.85/bin/log4net.dll
|
552
|
-
- spec/support/Tools/NAnt-0.85/bin/scvs.exe
|
553
|
-
- spec/support/Tools/NChurn-v0.4/LICENSE.txt
|
554
|
-
- spec/support/Tools/NChurn-v0.4/NChurn.exe
|
555
|
-
- spec/support/Tools/NChurn-v0.4/README.md
|
556
|
-
- spec/support/Tools/NChurn-v0.4/VERSION
|
557
|
-
- spec/support/Tools/NChurn-v0.4/churn-0.4.0.0.txt
|
558
|
-
- spec/support/Tools/NCover-v3.3/ActiproEULA.hml
|
559
|
-
- spec/support/Tools/NCover-v3.3/ActiproSoftware.Shared.Wpf30.dll
|
560
|
-
- spec/support/Tools/NCover-v3.3/ActiproSoftware.SyntaxEditor.Addons.DotNet.Wpf30.dll
|
561
|
-
- spec/support/Tools/NCover-v3.3/ActiproSoftware.SyntaxEditor.Wpf30.dll
|
562
|
-
- spec/support/Tools/NCover-v3.3/ActiproSoftware.Text.Net20.dll
|
563
|
-
- spec/support/Tools/NCover-v3.3/AdminBootstrapper.exe
|
564
|
-
- spec/support/Tools/NCover-v3.3/Build Task Plugins/MSBuildNCoverExample.proj
|
565
|
-
- spec/support/Tools/NCover-v3.3/Build Task Plugins/MSBuildReportingExample.proj
|
566
|
-
- spec/support/Tools/NCover-v3.3/Build Task Plugins/NAntNCoverExample.build
|
567
|
-
- spec/support/Tools/NCover-v3.3/Build Task Plugins/NAntReportingExample.build
|
568
|
-
- spec/support/Tools/NCover-v3.3/Build Task Plugins/NCover.MSBuildTasks.dll
|
569
|
-
- spec/support/Tools/NCover-v3.3/Build Task Plugins/NCover.NAntTasks.dll
|
570
|
-
- spec/support/Tools/NCover-v3.3/Build Task Plugins/NCoverExplorer.MSBuildTasks.dll
|
571
|
-
- spec/support/Tools/NCover-v3.3/Build Task Plugins/NCoverExplorer.NAntTasks.dll
|
572
|
-
- spec/support/Tools/NCover-v3.3/CC.Net/NCoverReporting30.xsl
|
573
|
-
- spec/support/Tools/NCover-v3.3/CC.Net/dashboard.config
|
574
|
-
- spec/support/Tools/NCover-v3.3/CC.Net/excanvas.js
|
575
|
-
- spec/support/Tools/NCover-v3.3/CC.Net/g.png
|
576
|
-
- spec/support/Tools/NCover-v3.3/CC.Net/jquery-1.3.2.min.js
|
577
|
-
- spec/support/Tools/NCover-v3.3/CC.Net/r.png
|
578
|
-
- spec/support/Tools/NCover-v3.3/CC.Net/readme.txt
|
579
|
-
- spec/support/Tools/NCover-v3.3/CC.Net/trends.js
|
580
|
-
- spec/support/Tools/NCover-v3.3/CC.Net/y.png
|
581
|
-
- spec/support/Tools/NCover-v3.3/MSVCM90.dll
|
582
|
-
- spec/support/Tools/NCover-v3.3/MSVCP90.dll
|
583
|
-
- spec/support/Tools/NCover-v3.3/MSVCR90.dll
|
584
|
-
- spec/support/Tools/NCover-v3.3/Microsoft.VC90.CRT.manifest
|
585
|
-
- spec/support/Tools/NCover-v3.3/Mindscape.LightSpeed.Linq.dll
|
586
|
-
- spec/support/Tools/NCover-v3.3/Mindscape.LightSpeed.dll
|
587
|
-
- spec/support/Tools/NCover-v3.3/NCover.Console.exe
|
588
|
-
- spec/support/Tools/NCover-v3.3/NCover.Console.exe.config
|
589
|
-
- spec/support/Tools/NCover-v3.3/NCover.Data.x86.dll
|
590
|
-
- spec/support/Tools/NCover-v3.3/NCover.Explorer.Framework.dll
|
591
|
-
- spec/support/Tools/NCover-v3.3/NCover.Explorer.exe
|
592
|
-
- spec/support/Tools/NCover-v3.3/NCover.Explorer.exe.config
|
593
|
-
- spec/support/Tools/NCover-v3.3/NCover.Framework.XmlSerializers.dll
|
594
|
-
- spec/support/Tools/NCover-v3.3/NCover.Framework.dll
|
595
|
-
- spec/support/Tools/NCover-v3.3/NCover.Interfaces.Core.dll
|
596
|
-
- spec/support/Tools/NCover-v3.3/NCover.Interfaces.dll
|
597
|
-
- spec/support/Tools/NCover-v3.3/NCover.Legacy.Configuration.dll
|
598
|
-
- spec/support/Tools/NCover-v3.3/NCover.Lib.x86.dll
|
599
|
-
- spec/support/Tools/NCover-v3.3/NCover.Registration.exe
|
600
|
-
- spec/support/Tools/NCover-v3.3/NCover.Reporting.exe
|
601
|
-
- spec/support/Tools/NCover-v3.3/NCover.Runner.dll
|
602
|
-
- spec/support/Tools/NCover-v3.3/NCover.UpConvert.exe
|
603
|
-
- spec/support/Tools/NCover-v3.3/NCover.Utilities.dll
|
604
|
-
- spec/support/Tools/NCover-v3.3/NCoverEULA.pdf
|
605
|
-
- spec/support/Tools/NCover-v3.3/NCoverExplorer.Console.exe
|
606
|
-
- spec/support/Tools/NCover-v3.3/ReportingExample.config
|
607
|
-
- spec/support/Tools/NCover-v3.3/System.Data.SQLite.dll
|
608
|
-
- spec/support/Tools/NDepend-v2.12/EULA_NDepend.txt
|
609
|
-
- spec/support/Tools/NDepend-v2.12/Lib/DevExpress.Data.v8.2.dll
|
610
|
-
- spec/support/Tools/NDepend-v2.12/Lib/DevExpress.OfficeSkins.v8.2.dll
|
611
|
-
- spec/support/Tools/NDepend-v2.12/Lib/DevExpress.Utils.v8.2.dll
|
612
|
-
- spec/support/Tools/NDepend-v2.12/Lib/DevExpress.XtraBars.v8.2.dll
|
613
|
-
- spec/support/Tools/NDepend-v2.12/Lib/DevExpress.XtraEditors.v8.2.dll
|
614
|
-
- spec/support/Tools/NDepend-v2.12/Lib/DevExpress.XtraNavBar.v8.2.dll
|
615
|
-
- spec/support/Tools/NDepend-v2.12/Lib/EnvDTE.dll
|
616
|
-
- spec/support/Tools/NDepend-v2.12/Lib/Microsoft.Msagl.Drawing.dll
|
617
|
-
- spec/support/Tools/NDepend-v2.12/Lib/Microsoft.Msagl.GraphViewerGdi.dll
|
618
|
-
- spec/support/Tools/NDepend-v2.12/Lib/Microsoft.Msagl.GraphViewerGdi.dll.config
|
619
|
-
- spec/support/Tools/NDepend-v2.12/Lib/Microsoft.Msagl.dll
|
620
|
-
- spec/support/Tools/NDepend-v2.12/Lib/Microsoft.VisualStudio.OLE.Interop.dll
|
621
|
-
- spec/support/Tools/NDepend-v2.12/Lib/Microsoft.VisualStudio.Shell.Interop.dll
|
622
|
-
- spec/support/Tools/NDepend-v2.12/Lib/Microsoft.VisualStudio.Shell.dll
|
623
|
-
- spec/support/Tools/NDepend-v2.12/Lib/Mono.Cecil.Pdb.dll
|
624
|
-
- spec/support/Tools/NDepend-v2.12/Lib/Mono.Cecil.dll
|
625
|
-
- spec/support/Tools/NDepend-v2.12/Lib/NDepend.AddIn.dll
|
626
|
-
- spec/support/Tools/NDepend-v2.12/Lib/NDepend.Analysis.dll
|
627
|
-
- spec/support/Tools/NDepend-v2.12/Lib/NDepend.CQL.dll
|
628
|
-
- spec/support/Tools/NDepend-v2.12/Lib/NDepend.Framework.dll
|
629
|
-
- spec/support/Tools/NDepend-v2.12/Lib/NDepend.Platform.DotNet.dll
|
630
|
-
- spec/support/Tools/NDepend-v2.12/Lib/NDepend.Skins.dll
|
631
|
-
- spec/support/Tools/NDepend-v2.12/Lib/NDepend.UI.dll
|
632
|
-
- spec/support/Tools/NDepend-v2.12/Lib/msvcp71.dll
|
633
|
-
- spec/support/Tools/NDepend-v2.12/Lib/msvcr71.dll
|
634
|
-
- spec/support/Tools/NDepend-v2.12/NDepend.Console.exe
|
635
|
-
- spec/support/Tools/NDepend-v2.12/NDepend.Console.exe.config
|
636
|
-
- spec/support/Tools/NDepend-v2.12/QuickStartTutorial_NDepend.txt
|
637
|
-
- spec/support/Tools/NDepend-v2.12/VisualNDepend.exe
|
638
|
-
- spec/support/Tools/NUnit-v2.5/NUnitFitTests.html
|
639
|
-
- spec/support/Tools/NUnit-v2.5/NUnitTests.config
|
640
|
-
- spec/support/Tools/NUnit-v2.5/NUnitTests.nunit
|
641
|
-
- spec/support/Tools/NUnit-v2.5/TestResult.xml
|
642
|
-
- spec/support/Tools/NUnit-v2.5/agent.conf
|
643
|
-
- spec/support/Tools/NUnit-v2.5/agent.log.conf
|
644
|
-
- spec/support/Tools/NUnit-v2.5/clr.bat
|
645
|
-
- spec/support/Tools/NUnit-v2.5/framework/nunit.framework.dll
|
646
|
-
- spec/support/Tools/NUnit-v2.5/framework/nunit.framework.xml
|
647
|
-
- spec/support/Tools/NUnit-v2.5/framework/nunit.mocks.dll
|
648
|
-
- spec/support/Tools/NUnit-v2.5/framework/pnunit.framework.dll
|
649
|
-
- spec/support/Tools/NUnit-v2.5/launcher.log.conf
|
650
|
-
- spec/support/Tools/NUnit-v2.5/lib/Failure.png
|
651
|
-
- spec/support/Tools/NUnit-v2.5/lib/Ignored.png
|
652
|
-
- spec/support/Tools/NUnit-v2.5/lib/Inconclusive.png
|
653
|
-
- spec/support/Tools/NUnit-v2.5/lib/Skipped.png
|
654
|
-
- spec/support/Tools/NUnit-v2.5/lib/Success.png
|
655
|
-
- spec/support/Tools/NUnit-v2.5/lib/fit.dll
|
656
|
-
- spec/support/Tools/NUnit-v2.5/lib/log4net.dll
|
657
|
-
- spec/support/Tools/NUnit-v2.5/lib/nunit-console-runner.dll
|
658
|
-
- spec/support/Tools/NUnit-v2.5/lib/nunit-gui-runner.dll
|
659
|
-
- spec/support/Tools/NUnit-v2.5/lib/nunit.core.dll
|
660
|
-
- spec/support/Tools/NUnit-v2.5/lib/nunit.core.interfaces.dll
|
661
|
-
- spec/support/Tools/NUnit-v2.5/lib/nunit.fixtures.dll
|
662
|
-
- spec/support/Tools/NUnit-v2.5/lib/nunit.uiexception.dll
|
663
|
-
- spec/support/Tools/NUnit-v2.5/lib/nunit.uikit.dll
|
664
|
-
- spec/support/Tools/NUnit-v2.5/lib/nunit.util.dll
|
665
|
-
- spec/support/Tools/NUnit-v2.5/nunit-agent.exe
|
666
|
-
- spec/support/Tools/NUnit-v2.5/nunit-agent.exe.config
|
667
|
-
- spec/support/Tools/NUnit-v2.5/nunit-console-x86.exe
|
668
|
-
- spec/support/Tools/NUnit-v2.5/nunit-console-x86.exe.config
|
669
|
-
- spec/support/Tools/NUnit-v2.5/nunit-console.exe
|
670
|
-
- spec/support/Tools/NUnit-v2.5/nunit-console.exe.config
|
671
|
-
- spec/support/Tools/NUnit-v2.5/nunit-x86.exe
|
672
|
-
- spec/support/Tools/NUnit-v2.5/nunit-x86.exe.config
|
673
|
-
- spec/support/Tools/NUnit-v2.5/nunit.exe
|
674
|
-
- spec/support/Tools/NUnit-v2.5/nunit.exe.config
|
675
|
-
- spec/support/Tools/NUnit-v2.5/nunit.framework.dll
|
676
|
-
- spec/support/Tools/NUnit-v2.5/pnunit-agent.exe
|
677
|
-
- spec/support/Tools/NUnit-v2.5/pnunit-agent.exe.config
|
678
|
-
- spec/support/Tools/NUnit-v2.5/pnunit-launcher.exe
|
679
|
-
- spec/support/Tools/NUnit-v2.5/pnunit-launcher.exe.config
|
680
|
-
- spec/support/Tools/NUnit-v2.5/pnunit.framework.dll
|
681
|
-
- spec/support/Tools/NUnit-v2.5/pnunit.tests.dll
|
682
|
-
- spec/support/Tools/NUnit-v2.5/runFile.exe
|
683
|
-
- spec/support/Tools/NUnit-v2.5/runFile.exe.config
|
684
|
-
- spec/support/Tools/NUnit-v2.5/runpnunit.bat
|
685
|
-
- spec/support/Tools/NUnit-v2.5/test.conf
|
686
|
-
- spec/support/Tools/PartCover-v2.3/Interop.PartCover.dll
|
687
|
-
- spec/support/Tools/PartCover-v2.3/PartCover Browser Manual.rtf
|
688
|
-
- spec/support/Tools/PartCover-v2.3/PartCover Console Manual.rtf
|
689
|
-
- spec/support/Tools/PartCover-v2.3/PartCover.Browser.Api.dll
|
690
|
-
- spec/support/Tools/PartCover-v2.3/PartCover.Browser.exe
|
691
|
-
- spec/support/Tools/PartCover-v2.3/PartCover.Browser.exe.config
|
692
|
-
- spec/support/Tools/PartCover-v2.3/PartCover.CorDriver.dll
|
693
|
-
- spec/support/Tools/PartCover-v2.3/PartCover.Framework.dll
|
694
|
-
- spec/support/Tools/PartCover-v2.3/PartCover.exe
|
695
|
-
- spec/support/Tools/PartCover-v2.3/PartCover.exe.config
|
696
|
-
- spec/support/Tools/PartCover-v2.3/PartViewer.dll
|
697
|
-
- spec/support/Tools/PartCover-v2.3/app.ico
|
698
|
-
- spec/support/Tools/PartCover-v2.3/log4net.dll
|
699
|
-
- spec/support/Tools/PartCover-v2.3/xslt/Report By Assembly.xslt
|
700
|
-
- spec/support/Tools/PartCover-v2.3/xslt/Report By Class.xslt
|
701
|
-
- spec/support/Tools/SpecFlow/Antlr3.Runtime.dll
|
702
|
-
- spec/support/Tools/SpecFlow/Interop.SHDocVw.dll
|
703
|
-
- spec/support/Tools/SpecFlow/TechTalk.SpecFlow.Generator.dll
|
704
|
-
- spec/support/Tools/SpecFlow/TechTalk.SpecFlow.Parser.dll
|
705
|
-
- spec/support/Tools/SpecFlow/TechTalk.SpecFlow.Reporting.dll
|
706
|
-
- spec/support/Tools/SpecFlow/TechTalk.SpecFlow.VsIntegration.dll
|
707
|
-
- spec/support/Tools/SpecFlow/TechTalk.SpecFlow.dll
|
708
|
-
- spec/support/Tools/SpecFlow/TechTalk.SpecFlow.targets
|
709
|
-
- spec/support/Tools/SpecFlow/TechTalk.SpecFlow.tasks
|
710
|
-
- spec/support/Tools/SpecFlow/changelog.txt
|
711
|
-
- spec/support/Tools/SpecFlow/specflow.exe
|
712
|
-
- spec/support/Tools/XUnit-v1.9/EULA.txt
|
713
|
-
- spec/support/Tools/XUnit-v1.9/HTML.xslt
|
714
|
-
- spec/support/Tools/XUnit-v1.9/NUnitXml.xslt
|
715
|
-
- spec/support/Tools/XUnit-v1.9/xunit.console.clr4.exe
|
716
|
-
- spec/support/Tools/XUnit-v1.9/xunit.console.clr4.exe.config
|
717
|
-
- spec/support/Tools/XUnit-v1.9/xunit.console.clr4.x86.exe
|
718
|
-
- spec/support/Tools/XUnit-v1.9/xunit.console.clr4.x86.exe.config
|
719
|
-
- spec/support/Tools/XUnit-v1.9/xunit.console.exe
|
720
|
-
- spec/support/Tools/XUnit-v1.9/xunit.console.exe.config
|
721
|
-
- spec/support/Tools/XUnit-v1.9/xunit.console.x86.exe
|
722
|
-
- spec/support/Tools/XUnit-v1.9/xunit.console.x86.exe.config
|
723
|
-
- spec/support/Tools/XUnit-v1.9/xunit.dll
|
724
|
-
- spec/support/Tools/XUnit-v1.9/xunit.dll.tdnet
|
725
|
-
- spec/support/Tools/XUnit-v1.9/xunit.extensions.dll
|
726
|
-
- spec/support/Tools/XUnit-v1.9/xunit.extensions.xml
|
727
|
-
- spec/support/Tools/XUnit-v1.9/xunit.gui.clr4.exe
|
728
|
-
- spec/support/Tools/XUnit-v1.9/xunit.gui.clr4.x86.exe
|
729
|
-
- spec/support/Tools/XUnit-v1.9/xunit.gui.exe
|
730
|
-
- spec/support/Tools/XUnit-v1.9/xunit.gui.x86.exe
|
731
|
-
- spec/support/Tools/XUnit-v1.9/xunit.installer.exe
|
732
|
-
- spec/support/Tools/XUnit-v1.9/xunit.runner.msbuild.dll
|
733
|
-
- spec/support/Tools/XUnit-v1.9/xunit.runner.tdnet.dll
|
734
|
-
- spec/support/Tools/XUnit-v1.9/xunit.runner.utility.dll
|
735
|
-
- spec/support/Tools/XUnit-v1.9/xunit.runner.utility.xml
|
736
|
-
- spec/support/Tools/XUnit-v1.9/xunit.xml
|
737
|
-
- spec/support/assemblyinfotester.rb
|
738
|
-
- spec/support/csc/File1.cs
|
739
|
-
- spec/support/csc/File2.cs
|
740
|
-
- spec/support/csc/output/ignorethis.txt
|
741
|
-
- spec/support/ironruby_validator.rb
|
742
|
-
- spec/support/msbuildtestdata.rb
|
743
|
-
- spec/support/nanttestdata.rb
|
744
|
-
- spec/support/ncoverconsoletestdata.rb
|
745
|
-
- spec/support/ncoverreporttestdata.rb
|
746
|
-
- spec/support/nokogiri_validator.rb
|
747
|
-
- spec/support/nuspec/nuspec.xsd
|
748
|
-
- spec/support/outputtestdata.rb
|
749
|
-
- spec/support/test.yml
|
750
|
-
- spec/support/yamlconfig/msbuild.yml
|
751
|
-
- spec/support/yamlconfig/yaml_autoconfig_test.yml
|
752
|
-
- spec/support/zip/files/subfolder/sub file.txt
|
753
|
-
- spec/support/zip/files/testfile.txt
|
754
|
-
- spec/support/ziptestdata.rb
|
755
230
|
- spec/unzip_spec.rb
|
756
231
|
- spec/xbuild_spec.rb
|
757
232
|
- spec/xunit_spec.rb
|
233
|
+
- spec/yaml/test.yml
|
758
234
|
- spec/yamlconfig_spec.rb
|
235
|
+
- spec/zip/baz.txt
|
236
|
+
- spec/zip/foo/bar/bar.txt
|
237
|
+
- spec/zip/foo/foo.txt
|
759
238
|
- spec/zip_spec.rb
|
760
239
|
homepage: http://albacorebuild.net
|
761
240
|
licenses:
|
762
241
|
- MIT
|
763
|
-
metadata: {}
|
764
242
|
post_install_message:
|
765
243
|
rdoc_options: []
|
766
244
|
require_paths:
|
767
245
|
- lib
|
768
246
|
required_ruby_version: !ruby/object:Gem::Requirement
|
247
|
+
none: false
|
769
248
|
requirements:
|
770
|
-
- - '>='
|
249
|
+
- - ! '>='
|
771
250
|
- !ruby/object:Gem::Version
|
772
251
|
version: '0'
|
773
252
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
253
|
+
none: false
|
774
254
|
requirements:
|
775
|
-
- - '>'
|
255
|
+
- - ! '>'
|
776
256
|
- !ruby/object:Gem::Version
|
777
257
|
version: 1.3.1
|
778
258
|
requirements: []
|
779
259
|
rubyforge_project: albacore
|
780
|
-
rubygems_version:
|
260
|
+
rubygems_version: 1.8.28
|
781
261
|
signing_key:
|
782
|
-
specification_version:
|
262
|
+
specification_version: 3
|
783
263
|
summary: Dolphin-safe .NET and Mono rake tasks
|
784
264
|
test_files:
|
785
|
-
- spec/README.md
|
786
265
|
- spec/albacoremodel_spec.rb
|
787
|
-
- spec/
|
266
|
+
- spec/aspnetcompiler_spec.rb
|
267
|
+
- spec/assemblyinfo/AssemblyInfo.cs
|
788
268
|
- spec/assemblyinfo_spec.rb
|
789
269
|
- spec/attrmethods_spec.rb
|
790
270
|
- spec/config_spec.rb
|
@@ -792,12 +272,11 @@ test_files:
|
|
792
272
|
- spec/csc_spec.rb
|
793
273
|
- spec/docu_spec.rb
|
794
274
|
- spec/exec_spec.rb
|
795
|
-
- spec/
|
275
|
+
- spec/fluentmigrator_spec.rb
|
796
276
|
- spec/ilmerge_spec.rb
|
797
277
|
- spec/msbuild_spec.rb
|
798
|
-
- spec/msdeploy_spec.rb
|
799
278
|
- spec/mspec_spec.rb
|
800
|
-
- spec/
|
279
|
+
- spec/mstest_spec.rb
|
801
280
|
- spec/nant_spec.rb
|
802
281
|
- spec/nchurn_spec.rb
|
803
282
|
- spec/ncoverconsole_spec.rb
|
@@ -805,529 +284,30 @@ test_files:
|
|
805
284
|
- spec/ndepend_spec.rb
|
806
285
|
- spec/netversion_spec.rb
|
807
286
|
- spec/nugetinstall_spec.rb
|
287
|
+
- spec/nugetpack_spec.rb
|
288
|
+
- spec/nugetpush_spec.rb
|
808
289
|
- spec/nugetupdate_spec.rb
|
809
|
-
- spec/
|
290
|
+
- spec/nunit_spec.rb
|
291
|
+
- spec/nuspec/nuspec.xsd
|
810
292
|
- spec/nuspec_spec.rb
|
293
|
+
- spec/output/bar/bar.txt
|
294
|
+
- spec/output/baz.txt
|
295
|
+
- spec/output/erb.txt
|
296
|
+
- spec/output/foo/foo/foo.txt
|
811
297
|
- spec/output_spec.rb
|
812
|
-
- spec/
|
813
|
-
- spec/
|
814
|
-
- spec/patches/system_patch.rb
|
298
|
+
- spec/patch/system_patch.rb
|
299
|
+
- spec/platform_spec.rb
|
815
300
|
- spec/plink_spec.rb
|
816
301
|
- spec/runcommand_spec.rb
|
817
|
-
- spec/spec.opts
|
818
302
|
- spec/spec_helper.rb
|
819
|
-
- spec/
|
303
|
+
- spec/specflow_spec.rb
|
820
304
|
- spec/sqlcmd_spec.rb
|
821
|
-
- spec/support/AssemblyInfo/AssemblyInfo.test
|
822
|
-
- spec/support/AssemblyInfo/AssemblyInfoInput.test
|
823
|
-
- spec/support/AssemblyInfo/assemblyinfo.yml
|
824
|
-
- spec/support/CodeCoverage/mspec/assemblies/Machine.Specifications.dll
|
825
|
-
- spec/support/CodeCoverage/mspec/assemblies/TestSolution.MSpecTests.dll
|
826
|
-
- spec/support/CodeCoverage/mspec/assemblies/TestSolution.dll
|
827
|
-
- spec/support/CodeCoverage/mspec/assemblies/nunit.framework.dll
|
828
|
-
- spec/support/CodeCoverage/mstest/TestSolution.MSTestTests.NET40.dll
|
829
|
-
- spec/support/CodeCoverage/mstest/TestSolution.MSTestTests.dll
|
830
|
-
- spec/support/CodeCoverage/nunit/assemblies/TestSolution.Tests.dll
|
831
|
-
- spec/support/CodeCoverage/nunit/assemblies/TestSolution.dll
|
832
|
-
- spec/support/CodeCoverage/nunit/assemblies/nunit.framework.dll
|
833
|
-
- spec/support/CodeCoverage/nunit/assemblies/with spaces/TestSolution.Tests.dll
|
834
|
-
- spec/support/CodeCoverage/nunit/assemblies/with spaces/TestSolution.dll
|
835
|
-
- spec/support/CodeCoverage/nunit/assemblies/with spaces/nunit.framework.dll
|
836
|
-
- spec/support/CodeCoverage/nunit/failing_assemblies/TestSolution.FailingTests.dll
|
837
|
-
- spec/support/CodeCoverage/nunit/failing_assemblies/nunit.framework.dll
|
838
|
-
- spec/support/CodeCoverage/report/coverage.xml
|
839
|
-
- spec/support/CodeCoverage/xunit/assemblies/TestSolution.XUnitTests.dll
|
840
|
-
- spec/support/CodeCoverage/xunit/assemblies/TestSolution.dll
|
841
|
-
- spec/support/CodeCoverage/xunit/assemblies/xunit.dll
|
842
|
-
- spec/support/CodeCoverage/xunit/assemblies/xunit.xml
|
843
|
-
- spec/support/FluentMigrator/FluentMigrator.dll
|
844
|
-
- spec/support/FluentMigrator/TestSolution.FluentMigrator.dll
|
845
|
-
- spec/support/SpecFlow/TechTalk.SpecFlow.dll
|
846
|
-
- spec/support/SpecFlow/TestSolution.SpecFlow.dll
|
847
|
-
- spec/support/SpecFlow/TestSolution.SpecFlow.pdb
|
848
|
-
- spec/support/SpecFlow/TestSolution.dll
|
849
|
-
- spec/support/SpecFlow/TestSolution.pdb
|
850
|
-
- spec/support/SpecFlow/nunit.framework.dll
|
851
|
-
- spec/support/TestSolution/LocalTestRun.testrunconfig
|
852
|
-
- spec/support/TestSolution/NDependProject.xml
|
853
|
-
- spec/support/TestSolution/TestSolution.5.0.ReSharper.user
|
854
|
-
- spec/support/TestSolution/TestSolution.FailingTests/FailingTestFixture.cs
|
855
|
-
- spec/support/TestSolution/TestSolution.FailingTests/Properties/AssemblyInfo.cs
|
856
|
-
- spec/support/TestSolution/TestSolution.FailingTests/TestSolution.FailingTests.csproj
|
857
|
-
- spec/support/TestSolution/TestSolution.FluentMigrator/M001_SampleMigration.cs
|
858
|
-
- spec/support/TestSolution/TestSolution.FluentMigrator/Properties/AssemblyInfo.cs
|
859
|
-
- spec/support/TestSolution/TestSolution.FluentMigrator/TestSolution.FluentMigrator.csproj
|
860
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy.sln
|
861
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/About.aspx
|
862
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/About.aspx.cs
|
863
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/About.aspx.designer.cs
|
864
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePassword.aspx
|
865
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePassword.aspx.cs
|
866
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePassword.aspx.designer.cs
|
867
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePasswordSuccess.aspx
|
868
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePasswordSuccess.aspx.cs
|
869
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/ChangePasswordSuccess.aspx.designer.cs
|
870
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Login.aspx
|
871
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Login.aspx.cs
|
872
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Login.aspx.designer.cs
|
873
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Register.aspx
|
874
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Register.aspx.cs
|
875
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Register.aspx.designer.cs
|
876
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Account/Web.config
|
877
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Default.aspx
|
878
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Default.aspx.cs
|
879
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Default.aspx.designer.cs
|
880
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Global.asax
|
881
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Global.asax.cs
|
882
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Properties/AssemblyInfo.cs
|
883
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Scripts/jquery-1.4.1-vsdoc.js
|
884
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Scripts/jquery-1.4.1.js
|
885
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Scripts/jquery-1.4.1.min.js
|
886
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Site.Master
|
887
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Site.Master.cs
|
888
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Site.Master.designer.cs
|
889
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Styles/Site.css
|
890
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/TestSolution.MSDeploy.Publish.xml
|
891
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/TestSolution.MSDeploy.csproj
|
892
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Web.Debug.config
|
893
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Web.Release.config
|
894
|
-
- spec/support/TestSolution/TestSolution.MSDeploy/TestSolution.MSDeploy/Web.config
|
895
|
-
- spec/support/TestSolution/TestSolution.MSTestTests.NET40/Properties/AssemblyInfo.cs
|
896
|
-
- spec/support/TestSolution/TestSolution.MSTestTests.NET40/TestSolution.MSTestTests.NET40.csproj
|
897
|
-
- spec/support/TestSolution/TestSolution.MSTestTests.NET40/Tests.cs
|
898
|
-
- spec/support/TestSolution/TestSolution.MSTestTests/Properties/AssemblyInfo.cs
|
899
|
-
- spec/support/TestSolution/TestSolution.MSTestTests/TestSolution.MSTestTests.csproj
|
900
|
-
- spec/support/TestSolution/TestSolution.MSTestTests/Tests.cs
|
901
|
-
- spec/support/TestSolution/TestSolution.MSpecTests/Properties/AssemblyInfo.cs
|
902
|
-
- spec/support/TestSolution/TestSolution.MSpecTests/SomeSpecTest.cs
|
903
|
-
- spec/support/TestSolution/TestSolution.MSpecTests/TestSolution.MSpecTests.csproj
|
904
|
-
- spec/support/TestSolution/TestSolution.SpecFlow/OneFeature.feature
|
905
|
-
- spec/support/TestSolution/TestSolution.SpecFlow/OneFeature.feature.cs
|
906
|
-
- spec/support/TestSolution/TestSolution.SpecFlow/Properties/AssemblyInfo.cs
|
907
|
-
- spec/support/TestSolution/TestSolution.SpecFlow/StepDefinition.cs
|
908
|
-
- spec/support/TestSolution/TestSolution.SpecFlow/TestSolution.SpecFlow.csproj
|
909
|
-
- spec/support/TestSolution/TestSolution.Tests/Properties/AssemblyInfo.cs
|
910
|
-
- spec/support/TestSolution/TestSolution.Tests/SomeTestFixture.cs
|
911
|
-
- spec/support/TestSolution/TestSolution.Tests/TestSolution.Tests.csproj
|
912
|
-
- spec/support/TestSolution/TestSolution.XUnitTests/Class1.cs
|
913
|
-
- spec/support/TestSolution/TestSolution.XUnitTests/FailingTestFixture.cs
|
914
|
-
- spec/support/TestSolution/TestSolution.XUnitTests/Properties/AssemblyInfo.cs
|
915
|
-
- spec/support/TestSolution/TestSolution.XUnitTests/TestSolution.XUnitTests.csproj
|
916
|
-
- spec/support/TestSolution/TestSolution.build
|
917
|
-
- spec/support/TestSolution/TestSolution.sln
|
918
|
-
- spec/support/TestSolution/TestSolution.vsmdi
|
919
|
-
- spec/support/TestSolution/TestSolution/Class1.cs
|
920
|
-
- spec/support/TestSolution/TestSolution/Properties/AssemblyInfo.cs
|
921
|
-
- spec/support/TestSolution/TestSolution/TestSolution.csproj
|
922
|
-
- spec/support/Tools/FluentMigrator-0.9/FluentMigrator.MSBuild.dll
|
923
|
-
- spec/support/Tools/FluentMigrator-0.9/FluentMigrator.NAnt.dll
|
924
|
-
- spec/support/Tools/FluentMigrator-0.9/FluentMigrator.Runner.dll
|
925
|
-
- spec/support/Tools/FluentMigrator-0.9/FluentMigrator.Runner.pdb
|
926
|
-
- spec/support/Tools/FluentMigrator-0.9/FluentMigrator.Tests.dll
|
927
|
-
- spec/support/Tools/FluentMigrator-0.9/FluentMigrator.Tests.pdb
|
928
|
-
- spec/support/Tools/FluentMigrator-0.9/FluentMigrator.dll
|
929
|
-
- spec/support/Tools/FluentMigrator-0.9/FluentMigrator.pdb
|
930
|
-
- spec/support/Tools/FluentMigrator-0.9/Migrate.exe
|
931
|
-
- spec/support/Tools/FluentMigrator-0.9/Migrate.exe.config
|
932
|
-
- spec/support/Tools/FluentMigrator-0.9/Moq.dll
|
933
|
-
- spec/support/Tools/FluentMigrator-0.9/Moq.xml
|
934
|
-
- spec/support/Tools/FluentMigrator-0.9/MySql.Data.dll
|
935
|
-
- spec/support/Tools/FluentMigrator-0.9/NAnt.Core.dll
|
936
|
-
- spec/support/Tools/FluentMigrator-0.9/NAnt.Core.xml
|
937
|
-
- spec/support/Tools/FluentMigrator-0.9/Oracle.DataAccess.dll
|
938
|
-
- spec/support/Tools/FluentMigrator-0.9/System.Data.SQLite.DLL
|
939
|
-
- spec/support/Tools/FluentMigrator-0.9/log4net.dll
|
940
|
-
- spec/support/Tools/FluentMigrator-0.9/nunit.framework.dll
|
941
|
-
- spec/support/Tools/FluentMigrator-0.9/nunit.should.dll
|
942
|
-
- spec/support/Tools/FluentMigrator-0.9/testscript.sql
|
943
|
-
- spec/support/Tools/MSTest-2008/MSTest.exe
|
944
|
-
- spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.CommandLine.dll
|
945
|
-
- spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.Common.dll
|
946
|
-
- spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.ControllerObject.dll
|
947
|
-
- spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.ExecutionCommon.dll
|
948
|
-
- spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.TMI.dll
|
949
|
-
- spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Adapter.dll
|
950
|
-
- spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.AssemblyResolver.dll
|
951
|
-
- spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.ObjectModel.dll
|
952
|
-
- spec/support/Tools/MSTest-2008/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Tip.dll
|
953
|
-
- spec/support/Tools/MSTest-2010/MSTest.exe
|
954
|
-
- spec/support/Tools/MSTest-2010/MSTest.exe.config
|
955
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.AgentObject.dll
|
956
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.AgentProcessManager.dll
|
957
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CMI.dll
|
958
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CheckinPolicies.dll
|
959
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CodeCoverage.dll
|
960
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CodedUITest.Controls.dll
|
961
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CodedUITestFramework.dll
|
962
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CodedUITestPackage.dll
|
963
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.CommandLine.dll
|
964
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Common.dll
|
965
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Controller.SpooledJob.dll
|
966
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.ControllerObject.dll
|
967
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.DataCollectionAgentObject.dll
|
968
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.ExecutionCommon.dll
|
969
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.HostAdapters.ASPNETAdapter.dll
|
970
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.HostAdapters.ASPNETAgent.dll
|
971
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Linking.dll
|
972
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTest.dll
|
973
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExcelAddIn.dll
|
974
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExcelAddIn.dll.manifest
|
975
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExcelAddIn.vsto
|
976
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExcelCommon.dll
|
977
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExcelCommon.tlb
|
978
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExec.dll
|
979
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestFramework.dll
|
980
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestPackage.dll
|
981
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestUI.dll
|
982
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.NICServices.dll
|
983
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.NetworkEmulation.dll
|
984
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.OperationalStore.ClientHelper.dll
|
985
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.RecorderBar.dll
|
986
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.RecorderBarBHO100.dll
|
987
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Resource.dll
|
988
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Sqm.dll
|
989
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.TMI.dll
|
990
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.TestCaseManagement.dll
|
991
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.GenericTest.Adapter.dll
|
992
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.GenericTest.ObjectModel.dll
|
993
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.GenericTest.Tip.dll
|
994
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.ManualTest.Adapter.dll
|
995
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.ManualTest.ObjectModel.dll
|
996
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.ManualTest.Tip.dll
|
997
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.OrderedTest.Adapter.dll
|
998
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.OrderedTest.ObjectModel.dll
|
999
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.OrderedTest.Tip.dll
|
1000
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.TuipPackage.dll
|
1001
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Adapter.dll
|
1002
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.AssemblyResolver.dll
|
1003
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.ObjectModel.dll
|
1004
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.UnitTest.Tip.dll
|
1005
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Tips.WebLoadTest.Tip.dll
|
1006
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll
|
1007
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Vsip.dll
|
1008
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.WarehouseCommon.dll
|
1009
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.WebTestFramework.dll
|
1010
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.WebTestPlayback.dll
|
1011
|
-
- spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.Wizard.TestProjectWizards.dll
|
1012
|
-
- spec/support/Tools/MSTest-2010/mstest.reg
|
1013
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/lib/Machine.Specifications.TDNetRunner.dll
|
1014
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/lib/Machine.Specifications.dll
|
1015
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/lib/Machine.Specifications.dll.tdnet
|
1016
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/CommandLine.dll
|
1017
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/CommandLine.xml
|
1018
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.4.1.bat
|
1019
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.4.5.bat
|
1020
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.5.0
|
1021
|
-
- VS2008.bat
|
1022
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.5.0
|
1023
|
-
- VS2010.bat
|
1024
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.5.1
|
1025
|
-
- VS2008.bat
|
1026
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.5.1
|
1027
|
-
- VS2010.bat
|
1028
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.6.0
|
1029
|
-
- VS2008.bat
|
1030
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.6.0
|
1031
|
-
- VS2010.bat
|
1032
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.6.1
|
1033
|
-
- VS2008.bat
|
1034
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.6.1
|
1035
|
-
- VS2010.bat
|
1036
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallTDNetRunner.bat
|
1037
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallTDNetRunnerSilent.bat
|
1038
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/License.txt
|
1039
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.GallioAdapter.3.1.dll
|
1040
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.GallioAdapter.plugin
|
1041
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.4.1.dll
|
1042
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.4.5.dll
|
1043
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.5.0.dll
|
1044
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.5.1.dll
|
1045
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.6.0.dll
|
1046
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.ReSharperRunner.6.1.dll
|
1047
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.Reporting.Templates.dll
|
1048
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.Reporting.dll
|
1049
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.SeleniumSupport.dll
|
1050
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.TDNetRunner.dll
|
1051
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.WatinSupport.dll
|
1052
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.dll
|
1053
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.dll.tdnet
|
1054
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/Spark.dll
|
1055
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/TestDriven.Framework.dll
|
1056
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/install.ps1
|
1057
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec-clr4.exe
|
1058
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec-clr4.exe.config
|
1059
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec-x86-clr4.exe
|
1060
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec-x86-clr4.exe.config
|
1061
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec-x86.exe
|
1062
|
-
- spec/support/Tools/Machine.Specifications-0.5.3/tools/mspec.exe
|
1063
|
-
- spec/support/Tools/NAnt-0.85/COPYING.txt
|
1064
|
-
- spec/support/Tools/NAnt-0.85/README.txt
|
1065
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.CompressionTasks.dll
|
1066
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.CompressionTasks.xml
|
1067
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.Core.dll
|
1068
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.Core.xml
|
1069
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.DotNetTasks.dll
|
1070
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.DotNetTasks.xml
|
1071
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.MSNetTasks.dll
|
1072
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.MSNetTasks.xml
|
1073
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.NUnit.dll
|
1074
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.NUnit.xml
|
1075
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.NUnit1Tasks.dll
|
1076
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.NUnit1Tasks.xml
|
1077
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.NUnit2Tasks.dll
|
1078
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.NUnit2Tasks.xml
|
1079
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.SourceControlTasks.dll
|
1080
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.SourceControlTasks.xml
|
1081
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.VSNetTasks.dll
|
1082
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.VSNetTasks.xml
|
1083
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.VisualCppTasks.dll
|
1084
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.VisualCppTasks.xml
|
1085
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.Win32Tasks.dll
|
1086
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.Win32Tasks.xml
|
1087
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.exe
|
1088
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.exe.config
|
1089
|
-
- spec/support/Tools/NAnt-0.85/bin/NAnt.xml
|
1090
|
-
- spec/support/Tools/NAnt-0.85/bin/NDoc.Documenter.NAnt.dll
|
1091
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/ICSharpCode.SharpCvsLib.Console.dll
|
1092
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/ICSharpCode.SharpCvsLib.dll
|
1093
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/ICSharpCode.SharpZipLib.dll
|
1094
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/NUnitCore.dll
|
1095
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/mono/1.0/NDoc.Core.dll
|
1096
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/mono/1.0/NDoc.Documenter.Msdn.dll
|
1097
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/mono/1.0/NDoc.ExtendedUI.dll
|
1098
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/mono/1.0/nunit.core.dll
|
1099
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/mono/1.0/nunit.framework.dll
|
1100
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/mono/1.0/nunit.util.dll
|
1101
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/mono/2.0/NDoc.Core.dll
|
1102
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/mono/2.0/NDoc.Documenter.Msdn.dll
|
1103
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/mono/2.0/NDoc.ExtendedUI.dll
|
1104
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/mono/2.0/nunit.core.dll
|
1105
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/mono/2.0/nunit.framework.dll
|
1106
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/mono/2.0/nunit.util.dll
|
1107
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/net/1.0/NDoc.Core.dll
|
1108
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/net/1.0/NDoc.Documenter.Msdn.dll
|
1109
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/net/1.0/NDoc.ExtendedUI.dll
|
1110
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/net/1.0/nunit.core.dll
|
1111
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/net/1.0/nunit.framework.dll
|
1112
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/net/1.0/nunit.util.dll
|
1113
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/net/1.1/NDoc.Core.dll
|
1114
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/net/1.1/NDoc.Documenter.Msdn.dll
|
1115
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/net/1.1/NDoc.ExtendedUI.dll
|
1116
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/net/1.1/nunit.core.dll
|
1117
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/net/1.1/nunit.framework.dll
|
1118
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/net/1.1/nunit.util.dll
|
1119
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/net/2.0/NDoc.Core.dll
|
1120
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/net/2.0/NDoc.Documenter.Msdn.dll
|
1121
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/net/2.0/NDoc.ExtendedUI.dll
|
1122
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/net/2.0/nunit.core.dll
|
1123
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/net/2.0/nunit.framework.dll
|
1124
|
-
- spec/support/Tools/NAnt-0.85/bin/lib/net/2.0/nunit.util.dll
|
1125
|
-
- spec/support/Tools/NAnt-0.85/bin/log4net.dll
|
1126
|
-
- spec/support/Tools/NAnt-0.85/bin/scvs.exe
|
1127
|
-
- spec/support/Tools/NChurn-v0.4/LICENSE.txt
|
1128
|
-
- spec/support/Tools/NChurn-v0.4/NChurn.exe
|
1129
|
-
- spec/support/Tools/NChurn-v0.4/README.md
|
1130
|
-
- spec/support/Tools/NChurn-v0.4/VERSION
|
1131
|
-
- spec/support/Tools/NChurn-v0.4/churn-0.4.0.0.txt
|
1132
|
-
- spec/support/Tools/NCover-v3.3/ActiproEULA.hml
|
1133
|
-
- spec/support/Tools/NCover-v3.3/ActiproSoftware.Shared.Wpf30.dll
|
1134
|
-
- spec/support/Tools/NCover-v3.3/ActiproSoftware.SyntaxEditor.Addons.DotNet.Wpf30.dll
|
1135
|
-
- spec/support/Tools/NCover-v3.3/ActiproSoftware.SyntaxEditor.Wpf30.dll
|
1136
|
-
- spec/support/Tools/NCover-v3.3/ActiproSoftware.Text.Net20.dll
|
1137
|
-
- spec/support/Tools/NCover-v3.3/AdminBootstrapper.exe
|
1138
|
-
- spec/support/Tools/NCover-v3.3/Build Task Plugins/MSBuildNCoverExample.proj
|
1139
|
-
- spec/support/Tools/NCover-v3.3/Build Task Plugins/MSBuildReportingExample.proj
|
1140
|
-
- spec/support/Tools/NCover-v3.3/Build Task Plugins/NAntNCoverExample.build
|
1141
|
-
- spec/support/Tools/NCover-v3.3/Build Task Plugins/NAntReportingExample.build
|
1142
|
-
- spec/support/Tools/NCover-v3.3/Build Task Plugins/NCover.MSBuildTasks.dll
|
1143
|
-
- spec/support/Tools/NCover-v3.3/Build Task Plugins/NCover.NAntTasks.dll
|
1144
|
-
- spec/support/Tools/NCover-v3.3/Build Task Plugins/NCoverExplorer.MSBuildTasks.dll
|
1145
|
-
- spec/support/Tools/NCover-v3.3/Build Task Plugins/NCoverExplorer.NAntTasks.dll
|
1146
|
-
- spec/support/Tools/NCover-v3.3/CC.Net/NCoverReporting30.xsl
|
1147
|
-
- spec/support/Tools/NCover-v3.3/CC.Net/dashboard.config
|
1148
|
-
- spec/support/Tools/NCover-v3.3/CC.Net/excanvas.js
|
1149
|
-
- spec/support/Tools/NCover-v3.3/CC.Net/g.png
|
1150
|
-
- spec/support/Tools/NCover-v3.3/CC.Net/jquery-1.3.2.min.js
|
1151
|
-
- spec/support/Tools/NCover-v3.3/CC.Net/r.png
|
1152
|
-
- spec/support/Tools/NCover-v3.3/CC.Net/readme.txt
|
1153
|
-
- spec/support/Tools/NCover-v3.3/CC.Net/trends.js
|
1154
|
-
- spec/support/Tools/NCover-v3.3/CC.Net/y.png
|
1155
|
-
- spec/support/Tools/NCover-v3.3/MSVCM90.dll
|
1156
|
-
- spec/support/Tools/NCover-v3.3/MSVCP90.dll
|
1157
|
-
- spec/support/Tools/NCover-v3.3/MSVCR90.dll
|
1158
|
-
- spec/support/Tools/NCover-v3.3/Microsoft.VC90.CRT.manifest
|
1159
|
-
- spec/support/Tools/NCover-v3.3/Mindscape.LightSpeed.Linq.dll
|
1160
|
-
- spec/support/Tools/NCover-v3.3/Mindscape.LightSpeed.dll
|
1161
|
-
- spec/support/Tools/NCover-v3.3/NCover.Console.exe
|
1162
|
-
- spec/support/Tools/NCover-v3.3/NCover.Console.exe.config
|
1163
|
-
- spec/support/Tools/NCover-v3.3/NCover.Data.x86.dll
|
1164
|
-
- spec/support/Tools/NCover-v3.3/NCover.Explorer.Framework.dll
|
1165
|
-
- spec/support/Tools/NCover-v3.3/NCover.Explorer.exe
|
1166
|
-
- spec/support/Tools/NCover-v3.3/NCover.Explorer.exe.config
|
1167
|
-
- spec/support/Tools/NCover-v3.3/NCover.Framework.XmlSerializers.dll
|
1168
|
-
- spec/support/Tools/NCover-v3.3/NCover.Framework.dll
|
1169
|
-
- spec/support/Tools/NCover-v3.3/NCover.Interfaces.Core.dll
|
1170
|
-
- spec/support/Tools/NCover-v3.3/NCover.Interfaces.dll
|
1171
|
-
- spec/support/Tools/NCover-v3.3/NCover.Legacy.Configuration.dll
|
1172
|
-
- spec/support/Tools/NCover-v3.3/NCover.Lib.x86.dll
|
1173
|
-
- spec/support/Tools/NCover-v3.3/NCover.Registration.exe
|
1174
|
-
- spec/support/Tools/NCover-v3.3/NCover.Reporting.exe
|
1175
|
-
- spec/support/Tools/NCover-v3.3/NCover.Runner.dll
|
1176
|
-
- spec/support/Tools/NCover-v3.3/NCover.UpConvert.exe
|
1177
|
-
- spec/support/Tools/NCover-v3.3/NCover.Utilities.dll
|
1178
|
-
- spec/support/Tools/NCover-v3.3/NCoverEULA.pdf
|
1179
|
-
- spec/support/Tools/NCover-v3.3/NCoverExplorer.Console.exe
|
1180
|
-
- spec/support/Tools/NCover-v3.3/ReportingExample.config
|
1181
|
-
- spec/support/Tools/NCover-v3.3/System.Data.SQLite.dll
|
1182
|
-
- spec/support/Tools/NDepend-v2.12/EULA_NDepend.txt
|
1183
|
-
- spec/support/Tools/NDepend-v2.12/Lib/DevExpress.Data.v8.2.dll
|
1184
|
-
- spec/support/Tools/NDepend-v2.12/Lib/DevExpress.OfficeSkins.v8.2.dll
|
1185
|
-
- spec/support/Tools/NDepend-v2.12/Lib/DevExpress.Utils.v8.2.dll
|
1186
|
-
- spec/support/Tools/NDepend-v2.12/Lib/DevExpress.XtraBars.v8.2.dll
|
1187
|
-
- spec/support/Tools/NDepend-v2.12/Lib/DevExpress.XtraEditors.v8.2.dll
|
1188
|
-
- spec/support/Tools/NDepend-v2.12/Lib/DevExpress.XtraNavBar.v8.2.dll
|
1189
|
-
- spec/support/Tools/NDepend-v2.12/Lib/EnvDTE.dll
|
1190
|
-
- spec/support/Tools/NDepend-v2.12/Lib/Microsoft.Msagl.Drawing.dll
|
1191
|
-
- spec/support/Tools/NDepend-v2.12/Lib/Microsoft.Msagl.GraphViewerGdi.dll
|
1192
|
-
- spec/support/Tools/NDepend-v2.12/Lib/Microsoft.Msagl.GraphViewerGdi.dll.config
|
1193
|
-
- spec/support/Tools/NDepend-v2.12/Lib/Microsoft.Msagl.dll
|
1194
|
-
- spec/support/Tools/NDepend-v2.12/Lib/Microsoft.VisualStudio.OLE.Interop.dll
|
1195
|
-
- spec/support/Tools/NDepend-v2.12/Lib/Microsoft.VisualStudio.Shell.Interop.dll
|
1196
|
-
- spec/support/Tools/NDepend-v2.12/Lib/Microsoft.VisualStudio.Shell.dll
|
1197
|
-
- spec/support/Tools/NDepend-v2.12/Lib/Mono.Cecil.Pdb.dll
|
1198
|
-
- spec/support/Tools/NDepend-v2.12/Lib/Mono.Cecil.dll
|
1199
|
-
- spec/support/Tools/NDepend-v2.12/Lib/NDepend.AddIn.dll
|
1200
|
-
- spec/support/Tools/NDepend-v2.12/Lib/NDepend.Analysis.dll
|
1201
|
-
- spec/support/Tools/NDepend-v2.12/Lib/NDepend.CQL.dll
|
1202
|
-
- spec/support/Tools/NDepend-v2.12/Lib/NDepend.Framework.dll
|
1203
|
-
- spec/support/Tools/NDepend-v2.12/Lib/NDepend.Platform.DotNet.dll
|
1204
|
-
- spec/support/Tools/NDepend-v2.12/Lib/NDepend.Skins.dll
|
1205
|
-
- spec/support/Tools/NDepend-v2.12/Lib/NDepend.UI.dll
|
1206
|
-
- spec/support/Tools/NDepend-v2.12/Lib/msvcp71.dll
|
1207
|
-
- spec/support/Tools/NDepend-v2.12/Lib/msvcr71.dll
|
1208
|
-
- spec/support/Tools/NDepend-v2.12/NDepend.Console.exe
|
1209
|
-
- spec/support/Tools/NDepend-v2.12/NDepend.Console.exe.config
|
1210
|
-
- spec/support/Tools/NDepend-v2.12/QuickStartTutorial_NDepend.txt
|
1211
|
-
- spec/support/Tools/NDepend-v2.12/VisualNDepend.exe
|
1212
|
-
- spec/support/Tools/NUnit-v2.5/NUnitFitTests.html
|
1213
|
-
- spec/support/Tools/NUnit-v2.5/NUnitTests.config
|
1214
|
-
- spec/support/Tools/NUnit-v2.5/NUnitTests.nunit
|
1215
|
-
- spec/support/Tools/NUnit-v2.5/TestResult.xml
|
1216
|
-
- spec/support/Tools/NUnit-v2.5/agent.conf
|
1217
|
-
- spec/support/Tools/NUnit-v2.5/agent.log.conf
|
1218
|
-
- spec/support/Tools/NUnit-v2.5/clr.bat
|
1219
|
-
- spec/support/Tools/NUnit-v2.5/framework/nunit.framework.dll
|
1220
|
-
- spec/support/Tools/NUnit-v2.5/framework/nunit.framework.xml
|
1221
|
-
- spec/support/Tools/NUnit-v2.5/framework/nunit.mocks.dll
|
1222
|
-
- spec/support/Tools/NUnit-v2.5/framework/pnunit.framework.dll
|
1223
|
-
- spec/support/Tools/NUnit-v2.5/launcher.log.conf
|
1224
|
-
- spec/support/Tools/NUnit-v2.5/lib/Failure.png
|
1225
|
-
- spec/support/Tools/NUnit-v2.5/lib/Ignored.png
|
1226
|
-
- spec/support/Tools/NUnit-v2.5/lib/Inconclusive.png
|
1227
|
-
- spec/support/Tools/NUnit-v2.5/lib/Skipped.png
|
1228
|
-
- spec/support/Tools/NUnit-v2.5/lib/Success.png
|
1229
|
-
- spec/support/Tools/NUnit-v2.5/lib/fit.dll
|
1230
|
-
- spec/support/Tools/NUnit-v2.5/lib/log4net.dll
|
1231
|
-
- spec/support/Tools/NUnit-v2.5/lib/nunit-console-runner.dll
|
1232
|
-
- spec/support/Tools/NUnit-v2.5/lib/nunit-gui-runner.dll
|
1233
|
-
- spec/support/Tools/NUnit-v2.5/lib/nunit.core.dll
|
1234
|
-
- spec/support/Tools/NUnit-v2.5/lib/nunit.core.interfaces.dll
|
1235
|
-
- spec/support/Tools/NUnit-v2.5/lib/nunit.fixtures.dll
|
1236
|
-
- spec/support/Tools/NUnit-v2.5/lib/nunit.uiexception.dll
|
1237
|
-
- spec/support/Tools/NUnit-v2.5/lib/nunit.uikit.dll
|
1238
|
-
- spec/support/Tools/NUnit-v2.5/lib/nunit.util.dll
|
1239
|
-
- spec/support/Tools/NUnit-v2.5/nunit-agent.exe
|
1240
|
-
- spec/support/Tools/NUnit-v2.5/nunit-agent.exe.config
|
1241
|
-
- spec/support/Tools/NUnit-v2.5/nunit-console-x86.exe
|
1242
|
-
- spec/support/Tools/NUnit-v2.5/nunit-console-x86.exe.config
|
1243
|
-
- spec/support/Tools/NUnit-v2.5/nunit-console.exe
|
1244
|
-
- spec/support/Tools/NUnit-v2.5/nunit-console.exe.config
|
1245
|
-
- spec/support/Tools/NUnit-v2.5/nunit-x86.exe
|
1246
|
-
- spec/support/Tools/NUnit-v2.5/nunit-x86.exe.config
|
1247
|
-
- spec/support/Tools/NUnit-v2.5/nunit.exe
|
1248
|
-
- spec/support/Tools/NUnit-v2.5/nunit.exe.config
|
1249
|
-
- spec/support/Tools/NUnit-v2.5/nunit.framework.dll
|
1250
|
-
- spec/support/Tools/NUnit-v2.5/pnunit-agent.exe
|
1251
|
-
- spec/support/Tools/NUnit-v2.5/pnunit-agent.exe.config
|
1252
|
-
- spec/support/Tools/NUnit-v2.5/pnunit-launcher.exe
|
1253
|
-
- spec/support/Tools/NUnit-v2.5/pnunit-launcher.exe.config
|
1254
|
-
- spec/support/Tools/NUnit-v2.5/pnunit.framework.dll
|
1255
|
-
- spec/support/Tools/NUnit-v2.5/pnunit.tests.dll
|
1256
|
-
- spec/support/Tools/NUnit-v2.5/runFile.exe
|
1257
|
-
- spec/support/Tools/NUnit-v2.5/runFile.exe.config
|
1258
|
-
- spec/support/Tools/NUnit-v2.5/runpnunit.bat
|
1259
|
-
- spec/support/Tools/NUnit-v2.5/test.conf
|
1260
|
-
- spec/support/Tools/PartCover-v2.3/Interop.PartCover.dll
|
1261
|
-
- spec/support/Tools/PartCover-v2.3/PartCover Browser Manual.rtf
|
1262
|
-
- spec/support/Tools/PartCover-v2.3/PartCover Console Manual.rtf
|
1263
|
-
- spec/support/Tools/PartCover-v2.3/PartCover.Browser.Api.dll
|
1264
|
-
- spec/support/Tools/PartCover-v2.3/PartCover.Browser.exe
|
1265
|
-
- spec/support/Tools/PartCover-v2.3/PartCover.Browser.exe.config
|
1266
|
-
- spec/support/Tools/PartCover-v2.3/PartCover.CorDriver.dll
|
1267
|
-
- spec/support/Tools/PartCover-v2.3/PartCover.Framework.dll
|
1268
|
-
- spec/support/Tools/PartCover-v2.3/PartCover.exe
|
1269
|
-
- spec/support/Tools/PartCover-v2.3/PartCover.exe.config
|
1270
|
-
- spec/support/Tools/PartCover-v2.3/PartViewer.dll
|
1271
|
-
- spec/support/Tools/PartCover-v2.3/app.ico
|
1272
|
-
- spec/support/Tools/PartCover-v2.3/log4net.dll
|
1273
|
-
- spec/support/Tools/PartCover-v2.3/xslt/Report By Assembly.xslt
|
1274
|
-
- spec/support/Tools/PartCover-v2.3/xslt/Report By Class.xslt
|
1275
|
-
- spec/support/Tools/SpecFlow/Antlr3.Runtime.dll
|
1276
|
-
- spec/support/Tools/SpecFlow/Interop.SHDocVw.dll
|
1277
|
-
- spec/support/Tools/SpecFlow/TechTalk.SpecFlow.Generator.dll
|
1278
|
-
- spec/support/Tools/SpecFlow/TechTalk.SpecFlow.Parser.dll
|
1279
|
-
- spec/support/Tools/SpecFlow/TechTalk.SpecFlow.Reporting.dll
|
1280
|
-
- spec/support/Tools/SpecFlow/TechTalk.SpecFlow.VsIntegration.dll
|
1281
|
-
- spec/support/Tools/SpecFlow/TechTalk.SpecFlow.dll
|
1282
|
-
- spec/support/Tools/SpecFlow/TechTalk.SpecFlow.targets
|
1283
|
-
- spec/support/Tools/SpecFlow/TechTalk.SpecFlow.tasks
|
1284
|
-
- spec/support/Tools/SpecFlow/changelog.txt
|
1285
|
-
- spec/support/Tools/SpecFlow/specflow.exe
|
1286
|
-
- spec/support/Tools/XUnit-v1.9/EULA.txt
|
1287
|
-
- spec/support/Tools/XUnit-v1.9/HTML.xslt
|
1288
|
-
- spec/support/Tools/XUnit-v1.9/NUnitXml.xslt
|
1289
|
-
- spec/support/Tools/XUnit-v1.9/xunit.console.clr4.exe
|
1290
|
-
- spec/support/Tools/XUnit-v1.9/xunit.console.clr4.exe.config
|
1291
|
-
- spec/support/Tools/XUnit-v1.9/xunit.console.clr4.x86.exe
|
1292
|
-
- spec/support/Tools/XUnit-v1.9/xunit.console.clr4.x86.exe.config
|
1293
|
-
- spec/support/Tools/XUnit-v1.9/xunit.console.exe
|
1294
|
-
- spec/support/Tools/XUnit-v1.9/xunit.console.exe.config
|
1295
|
-
- spec/support/Tools/XUnit-v1.9/xunit.console.x86.exe
|
1296
|
-
- spec/support/Tools/XUnit-v1.9/xunit.console.x86.exe.config
|
1297
|
-
- spec/support/Tools/XUnit-v1.9/xunit.dll
|
1298
|
-
- spec/support/Tools/XUnit-v1.9/xunit.dll.tdnet
|
1299
|
-
- spec/support/Tools/XUnit-v1.9/xunit.extensions.dll
|
1300
|
-
- spec/support/Tools/XUnit-v1.9/xunit.extensions.xml
|
1301
|
-
- spec/support/Tools/XUnit-v1.9/xunit.gui.clr4.exe
|
1302
|
-
- spec/support/Tools/XUnit-v1.9/xunit.gui.clr4.x86.exe
|
1303
|
-
- spec/support/Tools/XUnit-v1.9/xunit.gui.exe
|
1304
|
-
- spec/support/Tools/XUnit-v1.9/xunit.gui.x86.exe
|
1305
|
-
- spec/support/Tools/XUnit-v1.9/xunit.installer.exe
|
1306
|
-
- spec/support/Tools/XUnit-v1.9/xunit.runner.msbuild.dll
|
1307
|
-
- spec/support/Tools/XUnit-v1.9/xunit.runner.tdnet.dll
|
1308
|
-
- spec/support/Tools/XUnit-v1.9/xunit.runner.utility.dll
|
1309
|
-
- spec/support/Tools/XUnit-v1.9/xunit.runner.utility.xml
|
1310
|
-
- spec/support/Tools/XUnit-v1.9/xunit.xml
|
1311
|
-
- spec/support/assemblyinfotester.rb
|
1312
|
-
- spec/support/csc/File1.cs
|
1313
|
-
- spec/support/csc/File2.cs
|
1314
|
-
- spec/support/csc/output/ignorethis.txt
|
1315
|
-
- spec/support/ironruby_validator.rb
|
1316
|
-
- spec/support/msbuildtestdata.rb
|
1317
|
-
- spec/support/nanttestdata.rb
|
1318
|
-
- spec/support/ncoverconsoletestdata.rb
|
1319
|
-
- spec/support/ncoverreporttestdata.rb
|
1320
|
-
- spec/support/nokogiri_validator.rb
|
1321
|
-
- spec/support/nuspec/nuspec.xsd
|
1322
|
-
- spec/support/outputtestdata.rb
|
1323
|
-
- spec/support/test.yml
|
1324
|
-
- spec/support/yamlconfig/msbuild.yml
|
1325
|
-
- spec/support/yamlconfig/yaml_autoconfig_test.yml
|
1326
|
-
- spec/support/zip/files/subfolder/sub file.txt
|
1327
|
-
- spec/support/zip/files/testfile.txt
|
1328
|
-
- spec/support/ziptestdata.rb
|
1329
305
|
- spec/unzip_spec.rb
|
1330
306
|
- spec/xbuild_spec.rb
|
1331
307
|
- spec/xunit_spec.rb
|
308
|
+
- spec/yaml/test.yml
|
1332
309
|
- spec/yamlconfig_spec.rb
|
310
|
+
- spec/zip/baz.txt
|
311
|
+
- spec/zip/foo/bar/bar.txt
|
312
|
+
- spec/zip/foo/foo.txt
|
1333
313
|
- spec/zip_spec.rb
|