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
@@ -1 +0,0 @@
|
|
1
|
-
0.4.0.0
|
@@ -1,178 +0,0 @@
|
|
1
|
-
+----------------------------------------------------------------+
|
2
|
-
| README.md | 14 |
|
3
|
-
| NChurn/Program.cs | 6 |
|
4
|
-
| NChurn.Core/Adapters/Svn/SvnAdapter.cs | 5 |
|
5
|
-
| NChurn.Core/NChurn.Core.csproj | 5 |
|
6
|
-
| NChurn.Core.Tests/TestHelpers.cs | 4 |
|
7
|
-
| NChurn.Core/Adapters/BaseAdapter.cs | 4 |
|
8
|
-
| NChurn.Core/Adapters/Git/GitAdapter.cs | 4 |
|
9
|
-
| NChurn.Core/Adapters/Hg/HgAdapter.cs | 4 |
|
10
|
-
| NChurn.Core/Adapters/TF/TFAdapter.cs | 4 |
|
11
|
-
| VERSION | 4 |
|
12
|
-
| AssemblyInfo.cs | 3 |
|
13
|
-
| NChurn.Core/Adapters/AdapterResolver.cs | 3 |
|
14
|
-
| NChurn.Core/Adapters/DummyAdapter.cs | 3 |
|
15
|
-
| NChurn.Core/Adapters/IVersioningAdapter.cs | 3 |
|
16
|
-
| NChurn.Core/Analyzers/Analyzer.cs | 3 |
|
17
|
-
| NChurn.Core.Tests/Integration/Adapters/GitTest.cs | 2 |
|
18
|
-
| NChurn.Core.Tests/Integration/Adapters/HgTest.cs | 2 |
|
19
|
-
| NChurn.Core.Tests/NChurn.Core.Tests.csproj | 2 |
|
20
|
-
| NChurn.Core/Reporters/BaseAnalysisReporter.cs | 2 |
|
21
|
-
| NChurn.Core/Reporters/IAnalysisReporter.cs | 2 |
|
22
|
-
| NChurn.Core/Reporters/TableReporter.cs | 2 |
|
23
|
-
| NChurn.Core/Reporters/XMLReporter.cs | 2 |
|
24
|
-
| NChurn.Core/Support/ICommandRunner.cs | 2 |
|
25
|
-
| NChurn.Core/Support/Win32/Win32CommandRunner.cs | 2 |
|
26
|
-
| NChurn/todo.txt | 2 |
|
27
|
-
| Rakefile | 2 |
|
28
|
-
| .gitignore | 1 |
|
29
|
-
| Gemfile | 1 |
|
30
|
-
| Gemfile.lock | 1 |
|
31
|
-
| lib/CommandLine.dll | 1 |
|
32
|
-
| lib/Moq.dll | 1 |
|
33
|
-
| lib/nunit.framework.dll | 1 |
|
34
|
-
| lib/Shouldly.dll | 1 |
|
35
|
-
| LICENSE.txt | 1 |
|
36
|
-
| NChurn.Core.Tests/Fixtures/git.log | 1 |
|
37
|
-
| NChurn.Core.Tests/Fixtures/git.log.result | 1 |
|
38
|
-
| NChurn.Core.Tests/Fixtures/hg.log | 1 |
|
39
|
-
| NChurn.Core.Tests/Fixtures/hg.log.result | 1 |
|
40
|
-
| NChurn.Core.Tests/Fixtures/svn.log | 1 |
|
41
|
-
| NChurn.Core.Tests/Fixtures/svn.log.result | 1 |
|
42
|
-
| NChurn.Core.Tests/Integration/Adapters/SvnTest.cs | 1 |
|
43
|
-
| NChurn.Core.Tests/Integration/Adapters/TfTest.cs | 1 |
|
44
|
-
| NChurn.Core.Tests/Properties/AssemblyInfo.cs | 1 |
|
45
|
-
| NChurn.Core/Adapters/AutoDiscoveryAdapter.cs | 1 |
|
46
|
-
| NChurn.Core/Adapters/IAdapterResolver.cs | 1 |
|
47
|
-
| NChurn.Core/Analyzers/AnalysisResult.cs | 1 |
|
48
|
-
| NChurn.Core/Processors/Cutoff/MinimalCutoffProcessor.cs | 1 |
|
49
|
-
| NChurn.Core/Processors/Cutoff/PrecentCutoffProcessor.cs | 1 |
|
50
|
-
| NChurn.Core/Processors/IProcessor.cs | 1 |
|
51
|
-
| NChurn.Core/Properties/AssemblyInfo.cs | 1 |
|
52
|
-
| NChurn.Core/Reporters/CSVReporter.cs | 1 |
|
53
|
-
| NChurn.Core/Support/CommandRunnerException.cs | 1 |
|
54
|
-
| NChurn.Core/Support/DataSourceContextKeys.cs | 1 |
|
55
|
-
| NChurn.Core/Support/IAdapterDataSource.cs | 1 |
|
56
|
-
| NChurn.Core/Support/SystemExts.cs | 1 |
|
57
|
-
| NChurn.Core/Support/Win32/Win32CommandRunnerDataSource.cs | 1 |
|
58
|
-
| NChurn.sln | 1 |
|
59
|
-
| NChurn/app.config | 1 |
|
60
|
-
| NChurn/NChurn.CLI.csproj | 1 |
|
61
|
-
| NChurn/Properties/AssemblyInfo.cs | 1 |
|
62
|
-
| tools/ILMerge/ILMerge License.rtf | 1 |
|
63
|
-
| tools/ILMerge/ILMerge.doc | 1 |
|
64
|
-
| tools/ILMerge/ILMerge.exe | 1 |
|
65
|
-
| tools/MoMA/Definitions/2.4.0.1-defs.zip | 1 |
|
66
|
-
| tools/MoMA/Definitions/2.6-defs.zip | 1 |
|
67
|
-
| tools/MoMA/ICSharpCode.SharpZipLib.dll | 1 |
|
68
|
-
| tools/MoMA/MoMA.Analyzer.dll | 1 |
|
69
|
-
| tools/MoMA/MoMA.exe | 1 |
|
70
|
-
| tools/MoMA/Mono.Cecil.dll | 1 |
|
71
|
-
| tools/MoMA/Reports/Media/fail.png | 1 |
|
72
|
-
| tools/MoMA/Reports/Media/minus.png | 1 |
|
73
|
-
| tools/MoMA/Reports/Media/moma.css | 1 |
|
74
|
-
| tools/MoMA/Reports/Media/moma.js | 1 |
|
75
|
-
| tools/MoMA/Reports/Media/pass.png | 1 |
|
76
|
-
| tools/MoMA/Reports/Media/plus.png | 1 |
|
77
|
-
| tools/MoMA/Resources/button_ok.png | 1 |
|
78
|
-
| tools/MoMA/Resources/dialogback.png | 1 |
|
79
|
-
| tools/MoMA/Resources/dialog-warning.png | 1 |
|
80
|
-
| tools/MoMA/Resources/list-add.png | 1 |
|
81
|
-
| tools/MoMA/Resources/list-directory.png | 1 |
|
82
|
-
| tools/MoMA/Resources/list-remove.png | 1 |
|
83
|
-
| tools/MoMA/Resources/monoback.png | 1 |
|
84
|
-
| tools/MoMA/Resources/spinner.gif | 1 |
|
85
|
-
| tools/NCover/ActiproEULA.html | 1 |
|
86
|
-
| tools/NCover/ActiproSoftware.Shared.Net11.dll | 1 |
|
87
|
-
| tools/NCover/ActiproSoftware.SyntaxEditor.Net11.dll | 1 |
|
88
|
-
| tools/NCover/ActiproSoftware.WinUICore.Net11.dll | 1 |
|
89
|
-
| tools/NCover/CommandBars.dll | 1 |
|
90
|
-
| tools/NCover/ConsoleConfig.xsd | 1 |
|
91
|
-
| tools/NCover/ConsoleExample.config | 1 |
|
92
|
-
| tools/NCover/Coverage.xsl | 1 |
|
93
|
-
| tools/NCover/CoverageReport.xsl | 1 |
|
94
|
-
| tools/NCover/CoverLib.dll | 1 |
|
95
|
-
| tools/NCover/ICSharpCode.TextEditor.dll | 1 |
|
96
|
-
| tools/NCover/LicencePersonal.rtf | 1 |
|
97
|
-
| tools/NCover/license.txt | 1 |
|
98
|
-
| tools/NCover/Microsoft.VC80.CRT.manifest | 1 |
|
99
|
-
| tools/NCover/MSVCP80.dll | 1 |
|
100
|
-
| tools/NCover/MSVCR80.dll | 1 |
|
101
|
-
| tools/NCover/NCover.Console.exe | 1 |
|
102
|
-
| tools/NCover/NCover.Console.exe.config | 1 |
|
103
|
-
| tools/NCover/NCover.Framework.dll | 1 |
|
104
|
-
| tools/NCover/NCoverExplorer.Console.exe | 1 |
|
105
|
-
| tools/NCover/NCoverExplorer.Core.dll | 1 |
|
106
|
-
| tools/NCover/NCoverExplorer.exe | 1 |
|
107
|
-
| tools/NCover/NCoverExplorer.exe.config | 1 |
|
108
|
-
| tools/NCover/NCoverExplorer.NCoverRunner.dll | 1 |
|
109
|
-
| tools/NCover/NCoverExplorer.WinForms.dll | 1 |
|
110
|
-
| tools/NCover/NCoverExplorerFAQ.html | 1 |
|
111
|
-
| tools/NCover/NCoverExplorerReleaseNotes.html | 1 |
|
112
|
-
| tools/NCover/NCoverFAQ.html | 1 |
|
113
|
-
| tools/NCover/VC80CRT.MAN | 1 |
|
114
|
-
| tools/NUnit/agent.conf | 1 |
|
115
|
-
| tools/NUnit/agent.log.conf | 1 |
|
116
|
-
| tools/NUnit/framework/nunit.framework.dll | 1 |
|
117
|
-
| tools/NUnit/framework/nunit.framework.xml | 1 |
|
118
|
-
| tools/NUnit/framework/nunit.mocks.dll | 1 |
|
119
|
-
| tools/NUnit/framework/pnunit.framework.dll | 1 |
|
120
|
-
| tools/NUnit/launcher.log.conf | 1 |
|
121
|
-
| tools/NUnit/lib/Failure.png | 1 |
|
122
|
-
| tools/NUnit/lib/fit.dll | 1 |
|
123
|
-
| tools/NUnit/lib/Ignored.png | 1 |
|
124
|
-
| tools/NUnit/lib/Inconclusive.png | 1 |
|
125
|
-
| tools/NUnit/lib/log4net.dll | 1 |
|
126
|
-
| tools/NUnit/lib/nunit.core.dll | 1 |
|
127
|
-
| tools/NUnit/lib/nunit.core.interfaces.dll | 1 |
|
128
|
-
| tools/NUnit/lib/nunit.fixtures.dll | 1 |
|
129
|
-
| tools/NUnit/lib/nunit.uiexception.dll | 1 |
|
130
|
-
| tools/NUnit/lib/nunit.uikit.dll | 1 |
|
131
|
-
| tools/NUnit/lib/nunit.util.dll | 1 |
|
132
|
-
| tools/NUnit/lib/nunit-console-runner.dll | 1 |
|
133
|
-
| tools/NUnit/lib/nunit-gui-runner.dll | 1 |
|
134
|
-
| tools/NUnit/lib/Skipped.png | 1 |
|
135
|
-
| tools/NUnit/lib/Success.png | 1 |
|
136
|
-
| tools/NUnit/nunit.exe | 1 |
|
137
|
-
| tools/NUnit/nunit.exe.config | 1 |
|
138
|
-
| tools/NUnit/nunit.framework.dll | 1 |
|
139
|
-
| tools/NUnit/nunit-agent.exe | 1 |
|
140
|
-
| tools/NUnit/nunit-agent.exe.config | 1 |
|
141
|
-
| tools/NUnit/nunit-agent-x86.exe | 1 |
|
142
|
-
| tools/NUnit/nunit-agent-x86.exe.config | 1 |
|
143
|
-
| tools/NUnit/nunit-console.exe | 1 |
|
144
|
-
| tools/NUnit/nunit-console.exe.config | 1 |
|
145
|
-
| tools/NUnit/nunit-console-x86.exe | 1 |
|
146
|
-
| tools/NUnit/nunit-console-x86.exe.config | 1 |
|
147
|
-
| tools/NUnit/NUnitFitTests.html | 1 |
|
148
|
-
| tools/NUnit/NUnitTests.config | 1 |
|
149
|
-
| tools/NUnit/NUnitTests.nunit | 1 |
|
150
|
-
| tools/NUnit/nunit-x86.exe | 1 |
|
151
|
-
| tools/NUnit/nunit-x86.exe.config | 1 |
|
152
|
-
| tools/NUnit/pnunit.framework.dll | 1 |
|
153
|
-
| tools/NUnit/pnunit.tests.dll | 1 |
|
154
|
-
| tools/NUnit/pnunit-agent.exe | 1 |
|
155
|
-
| tools/NUnit/pnunit-agent.exe.config | 1 |
|
156
|
-
| tools/NUnit/pnunit-launcher.exe | 1 |
|
157
|
-
| tools/NUnit/pnunit-launcher.exe.config | 1 |
|
158
|
-
| tools/NUnit/runFile.exe | 1 |
|
159
|
-
| tools/NUnit/runFile.exe.config | 1 |
|
160
|
-
| tools/NUnit/runpnunit.bat | 1 |
|
161
|
-
| tools/NUnit/test.conf | 1 |
|
162
|
-
| tools/NUnit/tests/loadtest-assembly.dll | 1 |
|
163
|
-
| tools/NUnit/tests/mock-assembly.dll | 1 |
|
164
|
-
| tools/NUnit/tests/nonamespace-assembly.dll | 1 |
|
165
|
-
| tools/NUnit/tests/nunit.core.tests.dll | 1 |
|
166
|
-
| tools/NUnit/tests/nunit.fixtures.tests.dll | 1 |
|
167
|
-
| tools/NUnit/tests/nunit.framework.dll | 1 |
|
168
|
-
| tools/NUnit/tests/nunit.framework.tests.dll | 1 |
|
169
|
-
| tools/NUnit/tests/nunit.mocks.tests.dll | 1 |
|
170
|
-
| tools/NUnit/tests/nunit.uiexception.tests.dll | 1 |
|
171
|
-
| tools/NUnit/tests/nunit.uikit.tests.dll | 1 |
|
172
|
-
| tools/NUnit/tests/nunit.util.tests.dll | 1 |
|
173
|
-
| tools/NUnit/tests/nunit-console.tests.dll | 1 |
|
174
|
-
| tools/NUnit/tests/nunit-gui.tests.dll | 1 |
|
175
|
-
| tools/NUnit/tests/test-assembly.dll | 1 |
|
176
|
-
| tools/NUnit/tests/test-utilities.dll | 1 |
|
177
|
-
| tools/NUnit/tests/timing-tests.dll | 1 |
|
178
|
-
+----------------------------------------------------------------+
|
@@ -1,287 +0,0 @@
|
|
1
|
-
<html>
|
2
|
-
<head>
|
3
|
-
<title>End-User License Agreement (EULA)</title>
|
4
|
-
<style>
|
5
|
-
BODY { font-family: Verdana, sans-serif; }
|
6
|
-
LI { margin-top: 10pt; }
|
7
|
-
</style>
|
8
|
-
</head>
|
9
|
-
<body>
|
10
|
-
|
11
|
-
|
12
|
-
<h2>END-USER LICENSE AGREEMENT FOR ACTIPRO SOFTWARE LLC SOFTWARE</h2>
|
13
|
-
|
14
|
-
<hr><b>
|
15
|
-
IMPORTANT - READ CAREFULLY: This Actipro Software LLC ("Actipro") End-User License Agreement ("EULA")
|
16
|
-
is a legal agreement between you (�Licensee�), a developer of software applications, and Actipro for the Actipro software product
|
17
|
-
accompanying this EULA, which includes computer software and may include associated source code, media, printed materials,
|
18
|
-
and "on-line" or electronic documentation ("SOFTWARE PRODUCT"). By installing, copying, or otherwise using the SOFTWARE PRODUCT,
|
19
|
-
you agree to be bound by the terms of this EULA. If you do not agree to the terms of this EULA, do not install, use, distribute
|
20
|
-
in any manner, or replicate in any manner, any part, file or portion of the SOFTWARE PRODUCT.
|
21
|
-
</b><hr>
|
22
|
-
|
23
|
-
<p>
|
24
|
-
The SOFTWARE PRODUCT is protected by copyright laws and international copyright treaties, as well as other intellectual property laws and treaties. The SOFTWARE PRODUCT is licensed, not sold.
|
25
|
-
</p>
|
26
|
-
|
27
|
-
<p>
|
28
|
-
The Licensee is considered to be an authorized licensee (�Authorized�) if the Licensee has legitimately obtained a registered license for the SOFTWARE PRODUCT from Actipro or an authorized Actipro reseller.
|
29
|
-
</p>
|
30
|
-
|
31
|
-
<p>
|
32
|
-
<b>RIGOROUS ENFORCEMENT OF INTELLECTUAL PROPERTY RIGHTS.</b>
|
33
|
-
If the licensed right of use for this SOFTWARE PRODUCT is purchased by the Licensee with any intent to reverse engineer,
|
34
|
-
decompile, create derivative works, and the exploitation or unauthorized transfer of, any Actipro intellectual property and
|
35
|
-
trade secrets, to include any exposed methods or source code where provided, no licensed right of use shall exist, and any products
|
36
|
-
created as a result shall be judged illegal by definition of all applicable law. Any sale or resale of intellectual property or
|
37
|
-
created derivatives so obtained will be prosecuted to the fullest extent of all local, federal and international law.
|
38
|
-
</p>
|
39
|
-
|
40
|
-
<p>
|
41
|
-
<b>GRANT OF LICENSE.</b> This EULA, if legally executed as defined herein, licenses and so grants the Licensee the following rights:
|
42
|
-
</p>
|
43
|
-
|
44
|
-
<p>
|
45
|
-
<b>Evaluation.</b> If the downloaded SOFTWARE PRODUCT is designated as an Evaluation Release (�Evaluation Release�),
|
46
|
-
the Licensee is granted a license for a period of only fifteen (15) days after installation of the Evaluation Release
|
47
|
-
of the SOFTWARE PRODUCT ("Evaluation Period"). After the Evaluation Period, the Licensee must either:
|
48
|
-
<ol>
|
49
|
-
<li>Delete the SOFTWARE PRODUCT and all related files from ALL computers onto which it was installed or copied, or</li>
|
50
|
-
<li>Contact Actipro or one of its authorized resellers to purchase the SOFTWARE PRODUCT.</li>
|
51
|
-
</ol>
|
52
|
-
</p>
|
53
|
-
|
54
|
-
<p>
|
55
|
-
The Licensee may use the Evaluation Release of the SOFTWARE PRODUCT for evaluation purposes only.
|
56
|
-
The Licensee may not distribute ANY of the files, in any form or manner, provided with the Evaluation Release of the
|
57
|
-
SOFTWARE PRODUCT to ANY PARTIES.
|
58
|
-
</p>
|
59
|
-
|
60
|
-
<p>
|
61
|
-
<b>Development.</b> Actipro grants the Licensee the non-exclusive license to install and use multiple copies of the
|
62
|
-
SOFTWARE PRODUCT or any prior version for the sole purpose of developing any number of end user applications that
|
63
|
-
operate in conjunction with the SOFTWARE PRODUCT. If the Licensee is not Authorized, the Licensee may not use the
|
64
|
-
SOFTWARE PRODUCT beyond the Evaluation Period.
|
65
|
-
</p>
|
66
|
-
|
67
|
-
<p>
|
68
|
-
If the Licensee has purchased a single developer license (�Single Developer License�), the Licensee is Authorized
|
69
|
-
to use the SOFTWARE PRODUCT indefinitely beyond the Evaluation Period. A Single Developer License for the SOFTWARE PRODUCT
|
70
|
-
may not be shared or used concurrently by more than one individual developer. In a project that uses the SOFTWARE PRODUCT,
|
71
|
-
each individual developer on the project requires a separate Single Developer License, regardless of whether they directly
|
72
|
-
use the component or not. Single Developer Licenses may also be obtained in team discount packs.
|
73
|
-
</p>
|
74
|
-
|
75
|
-
<p>
|
76
|
-
If the Licensee has purchased a site license (�Site License�), each of the developers at a single physical location is
|
77
|
-
considered Authorized according to the terms and conditions of the Single Developer License. Each additional physical
|
78
|
-
location requires an additional Site License to be considered Authorized.
|
79
|
-
</p>
|
80
|
-
|
81
|
-
<p>
|
82
|
-
If the Licensee has purchased an enterprise license (�Enterprise License�), all developers in the Licensee's organization,
|
83
|
-
regardless of location, are considered Authorized according to the terms and conditions of the Single Developer License.
|
84
|
-
</p>
|
85
|
-
|
86
|
-
<p>
|
87
|
-
If the Licensee has purchased a blueprint license (�Blueprint License�), each of the Authorized developers for the SOFTWARE PRODUCT is
|
88
|
-
considered Authorized to access source code for the SOFTWARE PRODUCT ("Source Code").
|
89
|
-
The Blueprint License must be purchased at the same time as a Site License or Enterprise License.
|
90
|
-
Source Code may exclude Actipro proprietary licensing code.
|
91
|
-
The sale of Blueprint Licenses is considered final and neither the SOFTWARE PRODUCT nor Source Code may be returned under any circumstances.
|
92
|
-
</p>
|
93
|
-
|
94
|
-
<p>
|
95
|
-
<b>Duplication and Distribution.</b> The SOFTWARE PRODUCT may include certain files ("Redistributables") intended for distribution
|
96
|
-
by the Licensee to the users of programs the Licensee creates. Redistributables include, for example, those files identified in
|
97
|
-
printed or electronic documentation as redistributable files, or those files pre-selected for deployment by an install utility
|
98
|
-
provided with the SOFTWARE PRODUCT (if any). In any event, the Redistributables for the SOFTWARE PRODUCT are only those files
|
99
|
-
specifically designated as such by Actipro.
|
100
|
-
</p>
|
101
|
-
|
102
|
-
<p>
|
103
|
-
Subject to all of the terms and conditions in this EULA, if the Licensee is Authorized, Actipro grants the Licensee the non-exclusive,
|
104
|
-
royalty-free license to duplicate the Redistributables and to distribute them solely in conjunction with software products
|
105
|
-
developed by the Licensee that use them. The Licensee may not supply any means by which end users could incorporate the
|
106
|
-
SOFTWARE PRODUCT or portions thereof into their own products.
|
107
|
-
</p>
|
108
|
-
|
109
|
-
<p>
|
110
|
-
<b>Source Code.</b> If the Licensee has purchased a Blueprint License and is Authorized, the Licensee is provided Source Code
|
111
|
-
for the SOFTWARE PRODUCT. The following stipulations and restrictions apply to Source Code:
|
112
|
-
<ol>
|
113
|
-
<li>Source Code shall be considered as part the SOFTWARE PRODUCT and all requirements stated above still apply,
|
114
|
-
meaning that developers at a separate site from the one which purchased the Blueprint License are NOT able to work on
|
115
|
-
any project created that uses the Source Code, unless that site has also purchased a Blueprint License.
|
116
|
-
The only exception is when an Enterprise License has been purchased along with the Blueprint License,
|
117
|
-
in which case the Source Code may be used by developers at any site.</li>
|
118
|
-
<li>Actipro grants the Licensee the non-exclusive license to view and modify the Source Code for the sole purposes of education and troubleshooting.
|
119
|
-
If the Licensee troubleshoots the Source Code, the Licensee may compile the corrected source code and use and distribute the
|
120
|
-
resulting object code solely as a replacement for the corresponding Redistributables the Source Code compiles into.</li>
|
121
|
-
<li>The Licensee may NOT distribute or sell the Source Code, or portions or modifications or derivative works thereof, to any third party
|
122
|
-
not Authorized by the Licensee�s Blueprint License(s), without explicit permission by Actipro.</li>
|
123
|
-
<li>The Licensee may not compete against Actipro by repackaging, recompiling, or renaming the SOFTWARE PRODUCT for which the
|
124
|
-
Licensee purchased Source Code. Any derivative works based on the Source Code are illegal to be created or sold if they compete
|
125
|
-
in any way with the SOFTWARE PRODUCT or other Actipro products.</li>
|
126
|
-
<li>Any object code that is created by using the Source Code or derivative code based on the Source Code must be obfuscated.</li>
|
127
|
-
<li>Any object code that is created by using the Source Code or derivative code based on the Source Code may NOT bear "ActiproSoftware"
|
128
|
-
or the name of the SOFTWARE PRODUCT in the object code assembly name.</li>
|
129
|
-
<li>All Source Code must be kept in its proper "ActiproSoftware" namespace.</li>
|
130
|
-
<li>Actipro shall retain all rights, title and interest in and to all corrections, modifications and derivative works of the Source Code
|
131
|
-
created by the Licensee, including all copyrights subsisting therein, to the extent such corrections, modifications or
|
132
|
-
derivative works contain copyrightable code or expression derived from the Source Code.</li>
|
133
|
-
<li>The Licensee acknowledges that the Source Code contains valuable and proprietary trade secrets of Actipro, and agrees to expend
|
134
|
-
every effort to insure its confidentiality.</li>
|
135
|
-
<li>Source Code may be obtained by coordinating with Actipro during the support period for the Blueprint License, typically one year
|
136
|
-
in duration, starting on the date of purchase of the Blueprint License.</li>
|
137
|
-
</ol>
|
138
|
-
</p>
|
139
|
-
|
140
|
-
<p>
|
141
|
-
<b>Storage/Network Use.</b> The Licensee may also store or install a copy of the SOFTWARE PRODUCT on a storage device,
|
142
|
-
such as a network server, used only to install or run the SOFTWARE PRODUCT on the the Licensee�s other computers over an internal network;
|
143
|
-
however, the Licensee must acquire and dedicate a Single Developer License for each separate individual developer who wishes to use
|
144
|
-
the SOFTWARE PRODUCT.
|
145
|
-
</p>
|
146
|
-
|
147
|
-
<p>
|
148
|
-
<b>DESCRIPTION OF OTHER RIGHTS AND LIMITATIONS.</b>
|
149
|
-
</p>
|
150
|
-
|
151
|
-
<p>
|
152
|
-
<b>Not for Resale Software.</b> If the SOFTWARE PRODUCT is labeled and provided as "Not for Resale" or "NFR", then, notwithstanding
|
153
|
-
other sections of this EULA, the Licensee may not resell, distribute, or otherwise transfer for value or benefit in any manner,
|
154
|
-
the SOFTWARE PRODUCT or any derivative work using the SOFTWARE PRODUCT. The Licensee may not transfer, rent, lease, lend, copy,
|
155
|
-
modify, translate, sublicense, time-share or electronically transmit the SOFTWARE PRODUCT, media or documentation.
|
156
|
-
This also applies to any and all intermediate files, source code, and compiled executables.
|
157
|
-
</p>
|
158
|
-
|
159
|
-
<p>
|
160
|
-
<b>Limitations on Reverse Engineering, Decompilation, and Disassembly.</b> The Licensee may not reverse engineer, decompile,
|
161
|
-
create derivative works, modify, translate, or disassemble the SOFTWARE PRODUCT, and only to the extent that such activity is
|
162
|
-
expressly permitted by applicable law notwithstanding this limitation. The Licensee agrees to take all reasonable, legal and
|
163
|
-
appropriate measures to prohibit the illegal dissemination of the SOFTWARE PRODUCT or any of its constituent parts and redistributables
|
164
|
-
to the fullest extent of all applicable local, US Codes and International Laws and Treaties regarding anti-circumvention, including
|
165
|
-
but not limited to, the Geneva and Berne World Intellectual Property Organization (WIPO) Diplomatic Conferences.
|
166
|
-
</p>
|
167
|
-
|
168
|
-
<p>
|
169
|
-
<b>Rental.</b> The Licensee may not rent, lease, or lend the SOFTWARE PRODUCT.
|
170
|
-
</p>
|
171
|
-
|
172
|
-
<p>
|
173
|
-
<b>Separation of Components, Their Constituent Parts and Redistributables.</b> The SOFTWARE PRODUCT is licensed as a single product.
|
174
|
-
The SOFTWARE PRODUCT and its constituent parts and any provided redistributables may not be reverse engineered, decompiled, disassembled,
|
175
|
-
nor placed for distribution, sale, or resale as individual creations by the Licensee or any individual not expressly given
|
176
|
-
such permission by Actipro. The provision of Source Code, if included with the SOFTWARE PRODUCT, does not constitute transfer of any
|
177
|
-
legal rights to such code, and resale or distribution of all or any portion of all Source Code and intellectual property will be prosecuted
|
178
|
-
to the fullest extent of all applicable local, federal and international laws. All Actipro libraries, Source Code, Redistributables and
|
179
|
-
other files remain Actipro's exclusive property. The Licensee may not distribute any files, except those that Actipro has expressly
|
180
|
-
designated as Redistributable.
|
181
|
-
</p>
|
182
|
-
|
183
|
-
<p>
|
184
|
-
<b>Installation and Use.</b> The license granted in this EULA for the Licensee to create his/her own compiled programs and distribute
|
185
|
-
the Licensee�s programs and the Redistributables (if any), is subject to all of the following conditions:
|
186
|
-
<ol>
|
187
|
-
<li>All copies of the programs the Licensee creates must bear a valid copyright notice, either their own or the Actipro copyright
|
188
|
-
notice that appears on the SOFTWARE PRODUCT.</li>
|
189
|
-
<li>The Licensee may not remove or alter any Actipro copyright, trademark or other proprietary rights notice contained in any portion
|
190
|
-
of Actipro libraries, source code, Redistributables or other files that bear such a notice.</li>
|
191
|
-
<li>Actipro provides no warranty at all to any person, and the Licensee will remain solely responsible to anyone receiving the
|
192
|
-
Licensee�s programs for support, service, upgrades, or technical or other assistance, and such recipients will have no right
|
193
|
-
to contact Actipro for such services or assistance.</li>
|
194
|
-
<li>The Licensee will indemnify and hold Actipro, its related companies and its suppliers, harmless from and against any claims or
|
195
|
-
liabilities arising out of the use, reproduction or distribution of the Licensee�s programs.</li>
|
196
|
-
<li>The Licensee�s programs containing the SOFTWARE PRODUCT must be written using a licensed, registered copy of the SOFTWARE PRODUCT.</li>
|
197
|
-
<li>The Licensee�s programs must add primary and substantial functionality, and may not be merely a set or subset of any of the libraries,
|
198
|
-
Source Code, Redistributables or other files of the SOFTWARE PRODUCT.</li>
|
199
|
-
<li>The Licensee may not use Actipro's or any of its suppliers' names, logos, or trademarks to market the Licensee�s programs,
|
200
|
-
unless expressly given such permission by Actipro.</li>
|
201
|
-
</ol>
|
202
|
-
</p>
|
203
|
-
|
204
|
-
<p>
|
205
|
-
<b>Support Services.</b> Actipro may provide the Licensee with support services related to the SOFTWARE PRODUCT ("Support Services").
|
206
|
-
Use of Support Services is governed by Actipro policies and programs described in the user manual, in on-line documentation and/or other
|
207
|
-
Actipro provided materials. Any supplemental software code provided to the Licensee as part of the Support Services shall be considered
|
208
|
-
part of the SOFTWARE PRODUCT and subject to the terms and conditions of this EULA. With respect to technical information the Licensee
|
209
|
-
provides to Actipro as part of the Support Services, Actipro may use such information for its business purposes, including for product
|
210
|
-
support and development.
|
211
|
-
</p>
|
212
|
-
|
213
|
-
<p>
|
214
|
-
<b>Software Transfer.</b> The Licensee may NOT permanently or temporarily transfer ANY of the Licensee�s rights under this EULA to any
|
215
|
-
individual or entity. Regardless of any modifications which the Licensee makes and regardless of how the Licensee might compile, link,
|
216
|
-
and/or package the Licensee�s programs, under no circumstances may the libraries, redistributables, and/or other files of the
|
217
|
-
SOFTWARE PRODUCT (including any portions thereof) be used for developing programs by anyone other than the Licensee. Only the Licensee
|
218
|
-
as the licensed end user has the right to use the libraries, redistributables, or other files of the SOFTWARE PRODUCT (or any portions thereof)
|
219
|
-
for developing programs created with the SOFTWARE PRODUCT. In particular, the Licensee may not share copies of the Source Code or
|
220
|
-
Redistributables with other co-developers.
|
221
|
-
</p>
|
222
|
-
|
223
|
-
<p>
|
224
|
-
<b>Termination.</b> Without prejudice to any other rights or remedies, Actipro will terminate this EULA upon the Licensee�s failure to
|
225
|
-
comply with all the terms and conditions of this EULA. In such event, the Licensee must destroy all copies of the SOFTWARE PRODUCT and
|
226
|
-
all of its component parts including any related documentation, and must remove ANY and ALL use of such technology immediately from any
|
227
|
-
applications using technology contained in the SOFTWARE PRODUCT developed by the Licensee, whether in native, altered or compiled state.
|
228
|
-
</p>
|
229
|
-
|
230
|
-
<p>
|
231
|
-
<b>UPGRADES.</b> If the SOFTWARE PRODUCT is labeled as an upgrade, the Licensee must be properly licensed to use the SOFTWARE PRODUCT
|
232
|
-
identified by Actipro as being eligible for the upgrade in order to use the SOFTWARE PRODUCT. A SOFTWARE PRODUCT labeled as an upgrade
|
233
|
-
replaces and/or supplements the SOFTWARE PRODUCT that formed the basis for the Licensee�s eligibility for the upgrade, and together
|
234
|
-
constitute a single SOFTWARE PRODUCT. The Licensee may use the resulting upgraded SOFTWARE PRODUCT only in accordance with all the
|
235
|
-
terms of this EULA.
|
236
|
-
</p>
|
237
|
-
|
238
|
-
<p>
|
239
|
-
<b>COPYRIGHT.</b> All title and copyrights in and to the SOFTWARE PRODUCT (including but not limited to any images, demos, source code,
|
240
|
-
intermediate files, packages, photographs, animations, video, audio, music, text, and "applets" incorporated into the SOFTWARE PRODUCT),
|
241
|
-
the accompanying printed materials, and any copies of the SOFTWARE PRODUCT are owned by Actipro or its subsidiaries.
|
242
|
-
The SOFTWARE PRODUCT is protected by copyright laws and international treaty provisions. Therefore, the Licensee must treat the
|
243
|
-
SOFTWARE PRODUCT like any other copyrighted material except that the Licensee may install the SOFTWARE PRODUCT for use by the Licensee.
|
244
|
-
The Licensee may not copy any printed materials accompanying the SOFTWARE PRODUCT.
|
245
|
-
</p>
|
246
|
-
|
247
|
-
<p>
|
248
|
-
<b>GENERAL PROVISIONS.</b> This EULA may only be modified in writing signed by the Licensee and an authorized officer of Actipro.
|
249
|
-
If any provision of this EULA is found void or unenforceable, the remainder will remain valid and enforceable according to its terms.
|
250
|
-
</p>
|
251
|
-
|
252
|
-
<p>
|
253
|
-
<b>MISCELLANEOUS.</b> If the Licensee acquired this product in the United States, this EULA is governed by the laws of the State of Ohio.
|
254
|
-
</p>
|
255
|
-
|
256
|
-
<p>
|
257
|
-
If this SOFTWARE PRODUCT was acquired outside the United States, then the Licensee, agrees and ascends to the adherence to all
|
258
|
-
applicable international treaties regarding copyright and intellectual property rights which shall also apply.
|
259
|
-
In addition, the Licensee agrees that any local law(s) to the benefit and protection of Actipro ownership of, and interest in,
|
260
|
-
its intellectual property and right of recovery for damages thereto will also apply.
|
261
|
-
</p>
|
262
|
-
|
263
|
-
<p>
|
264
|
-
Should you have any questions concerning this EULA, or if you desire to contact Actipro for any reason, please contact us via our
|
265
|
-
support web pages at <a href="http://www.actiprosoftware.com">http://www.actiprosoftware.com</a>.
|
266
|
-
</p>
|
267
|
-
|
268
|
-
<p><b>
|
269
|
-
NO WARRANTIES. ACTIPRO EXPRESSLY DISCLAIMS ANY WARRANTY FOR THE SOFTWARE PRODUCT. THE PRODUCT AND ANY RELATED DOCUMENTATION IS PROVIDED
|
270
|
-
"AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
|
271
|
-
FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT. THE ENTIRE RISK ARISING OUT OF USE OR PERFORMANCE OF THE PRODUCT REMAINS WITH THE LICENSEE.
|
272
|
-
</b></p>
|
273
|
-
|
274
|
-
<p><b>
|
275
|
-
LIMITATION OF LIABILITY. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL ACTIPRO OR ITS SUPPLIERS BE LIABLE
|
276
|
-
FOR ANY SPECIAL, INCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF
|
277
|
-
BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, OR ANY OTHER PECUNIARY LOSS) ARISING OUT OF THE USE OF OR
|
278
|
-
INABILITY TO USE THE SOFTWARE PRODUCT OR THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT SERVICES, EVEN IF ACTIPRO HAS BEEN ADVISED OF
|
279
|
-
THE POSSIBILITY OF SUCH DAMAGES.
|
280
|
-
</b></p>
|
281
|
-
|
282
|
-
<p>
|
283
|
-
Copyright (c) 2002-2007 Actipro Software LLC. All rights reserved.
|
284
|
-
</p>
|
285
|
-
|
286
|
-
</body>
|
287
|
-
</html>
|