albacore 0.3.4 → 0.3.5
Sign up to get free protection for your applications and to get access to all the features.
- data/.bundle/config +2 -0
- data/.travis.yml +1 -0
- data/Gemfile +4 -1
- data/lib/albacore/assemblyinfo.rb +2 -1
- data/lib/albacore/config/netversion.rb +11 -8
- data/lib/albacore/output.rb +17 -14
- data/lib/albacore/sqlcmd.rb +3 -1
- data/lib/albacore/xunittestrunner.rb +4 -0
- data/lib/version.rb +1 -1
- data/spec/assemblyinfo_spec.rb +9 -0
- data/spec/msbuild_spec.rb +287 -287
- data/spec/mstesttestrunner_spec.rb +144 -144
- data/spec/netversion_spec.rb +53 -0
- data/spec/nugetinstall_spec.rb +46 -46
- data/spec/output_spec.rb +30 -0
- data/spec/sqlcmd_spec.rb +1 -1
- data/spec/support/CodeCoverage/xunit/assemblies/xunit.xml +2604 -2604
- data/spec/support/TestSolution/LocalTestRun.testrunconfig +4 -4
- data/spec/support/TestSolution/TestSolution.FailingTests/TestSolution.FailingTests.csproj +94 -94
- data/spec/support/TestSolution/TestSolution.FluentMigrator/TestSolution.FluentMigrator.csproj +94 -94
- data/spec/support/TestSolution/TestSolution.MSTestTests.NET40/Properties/AssemblyInfo.cs +36 -36
- data/spec/support/TestSolution/TestSolution.MSTestTests.NET40/TestSolution.MSTestTests.NET40.csproj +52 -52
- data/spec/support/TestSolution/TestSolution.MSTestTests/TestSolution.MSTestTests.csproj +90 -90
- data/spec/support/TestSolution/TestSolution.MSpecTests/TestSolution.MSpecTests.csproj +103 -103
- data/spec/support/TestSolution/TestSolution.SpecFlow/TestSolution.SpecFlow.csproj +115 -115
- data/spec/support/TestSolution/TestSolution.Tests/TestSolution.Tests.csproj +100 -100
- data/spec/support/TestSolution/TestSolution.XUnitTests/TestSolution.XUnitTests.csproj +101 -101
- data/spec/support/TestSolution/TestSolution.sln +75 -75
- data/spec/support/TestSolution/TestSolution.vsmdi +5 -5
- data/spec/support/TestSolution/TestSolution/TestSolution.csproj +90 -90
- data/spec/support/Tools/MSTest-2010/MSTest.exe.config +31 -31
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExcelAddIn.dll.manifest +251 -251
- data/spec/support/Tools/MSTest-2010/Microsoft.VisualStudio.QualityTools.LoadTestExcelAddIn.vsto +105 -105
- data/spec/support/Tools/Machine.Specifications-0.5.3/lib/Machine.Specifications.dll.tdnet +5 -5
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/CommandLine.xml +504 -504
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.4.1.bat +4 -4
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.4.5.bat +4 -4
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.5.0 - VS2008.bat +4 -4
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.5.0 - VS2010.bat +4 -4
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.5.1 - VS2008.bat +4 -4
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.5.1 - VS2010.bat +4 -4
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.6.0 - VS2008.bat +4 -4
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.6.0 - VS2010.bat +4 -4
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.6.1 - VS2008.bat +4 -4
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallResharperRunner.6.1 - VS2010.bat +4 -4
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallTDNetRunner.bat +16 -16
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/InstallTDNetRunnerSilent.bat +16 -16
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/License.txt +53 -53
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.GallioAdapter.plugin +42 -42
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/Machine.Specifications.dll.tdnet +5 -5
- data/spec/support/Tools/Machine.Specifications-0.5.3/tools/install.ps1 +5 -5
- data/spec/support/Tools/XUnit-v1.9/EULA.txt +28 -28
- data/spec/support/Tools/XUnit-v1.9/HTML.xslt +125 -125
- data/spec/support/Tools/XUnit-v1.9/NUnitXml.xslt +120 -120
- data/spec/support/Tools/XUnit-v1.9/xunit.console.clr4.exe.config +20 -20
- data/spec/support/Tools/XUnit-v1.9/xunit.console.clr4.x86.exe.config +20 -20
- data/spec/support/Tools/XUnit-v1.9/xunit.console.exe.config +20 -20
- data/spec/support/Tools/XUnit-v1.9/xunit.console.x86.exe.config +20 -20
- data/spec/support/Tools/XUnit-v1.9/xunit.dll.tdnet +4 -4
- data/spec/support/Tools/XUnit-v1.9/xunit.extensions.xml +805 -805
- data/spec/support/Tools/XUnit-v1.9/xunit.runner.utility.xml +1212 -1212
- data/spec/support/Tools/XUnit-v1.9/xunit.xml +2604 -2604
- data/spec/support/assemblyinfotester.rb +1 -0
- data/spec/xunit_spec.rb +38 -0
- metadata +14 -7
data/spec/support/TestSolution/TestSolution.MSTestTests.NET40/TestSolution.MSTestTests.NET40.csproj
CHANGED
@@ -1,53 +1,53 @@
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
2
|
-
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
3
|
-
<PropertyGroup>
|
4
|
-
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
5
|
-
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
6
|
-
<ProductVersion>8.0.30703</ProductVersion>
|
7
|
-
<SchemaVersion>2.0</SchemaVersion>
|
8
|
-
<ProjectGuid>{DE9E4B14-96B1-4DAF-A8AC-008C99E99531}</ProjectGuid>
|
9
|
-
<OutputType>Library</OutputType>
|
10
|
-
<AppDesignerFolder>Properties</AppDesignerFolder>
|
11
|
-
<RootNamespace>TestSolution.MSTestTests.NET40</RootNamespace>
|
12
|
-
<AssemblyName>TestSolution.MSTestTests.NET40</AssemblyName>
|
13
|
-
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
14
|
-
<FileAlignment>512</FileAlignment>
|
15
|
-
</PropertyGroup>
|
16
|
-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
17
|
-
<DebugSymbols>true</DebugSymbols>
|
18
|
-
<DebugType>full</DebugType>
|
19
|
-
<Optimize>false</Optimize>
|
20
|
-
<OutputPath>bin\Debug\</OutputPath>
|
21
|
-
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
22
|
-
<ErrorReport>prompt</ErrorReport>
|
23
|
-
<WarningLevel>4</WarningLevel>
|
24
|
-
</PropertyGroup>
|
25
|
-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
26
|
-
<DebugType>pdbonly</DebugType>
|
27
|
-
<Optimize>true</Optimize>
|
28
|
-
<OutputPath>bin\Release\</OutputPath>
|
29
|
-
<DefineConstants>TRACE</DefineConstants>
|
30
|
-
<ErrorReport>prompt</ErrorReport>
|
31
|
-
<WarningLevel>4</WarningLevel>
|
32
|
-
</PropertyGroup>
|
33
|
-
<ItemGroup>
|
34
|
-
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
35
|
-
<SpecificVersion>False</SpecificVersion>
|
36
|
-
<HintPath>..\..\..\..\..\..\..\TEMP\mstest\Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll</HintPath>
|
37
|
-
</Reference>
|
38
|
-
<Reference Include="System" />
|
39
|
-
<Reference Include="System.Core" />
|
40
|
-
</ItemGroup>
|
41
|
-
<ItemGroup>
|
42
|
-
<Compile Include="Properties\AssemblyInfo.cs" />
|
43
|
-
<Compile Include="Tests.cs" />
|
44
|
-
</ItemGroup>
|
45
|
-
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
46
|
-
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
47
|
-
Other similar extension points exist, see Microsoft.Common.targets.
|
48
|
-
<Target Name="BeforeBuild">
|
49
|
-
</Target>
|
50
|
-
<Target Name="AfterBuild">
|
51
|
-
</Target>
|
52
|
-
-->
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
3
|
+
<PropertyGroup>
|
4
|
+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
5
|
+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
6
|
+
<ProductVersion>8.0.30703</ProductVersion>
|
7
|
+
<SchemaVersion>2.0</SchemaVersion>
|
8
|
+
<ProjectGuid>{DE9E4B14-96B1-4DAF-A8AC-008C99E99531}</ProjectGuid>
|
9
|
+
<OutputType>Library</OutputType>
|
10
|
+
<AppDesignerFolder>Properties</AppDesignerFolder>
|
11
|
+
<RootNamespace>TestSolution.MSTestTests.NET40</RootNamespace>
|
12
|
+
<AssemblyName>TestSolution.MSTestTests.NET40</AssemblyName>
|
13
|
+
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
14
|
+
<FileAlignment>512</FileAlignment>
|
15
|
+
</PropertyGroup>
|
16
|
+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
17
|
+
<DebugSymbols>true</DebugSymbols>
|
18
|
+
<DebugType>full</DebugType>
|
19
|
+
<Optimize>false</Optimize>
|
20
|
+
<OutputPath>bin\Debug\</OutputPath>
|
21
|
+
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
22
|
+
<ErrorReport>prompt</ErrorReport>
|
23
|
+
<WarningLevel>4</WarningLevel>
|
24
|
+
</PropertyGroup>
|
25
|
+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
26
|
+
<DebugType>pdbonly</DebugType>
|
27
|
+
<Optimize>true</Optimize>
|
28
|
+
<OutputPath>bin\Release\</OutputPath>
|
29
|
+
<DefineConstants>TRACE</DefineConstants>
|
30
|
+
<ErrorReport>prompt</ErrorReport>
|
31
|
+
<WarningLevel>4</WarningLevel>
|
32
|
+
</PropertyGroup>
|
33
|
+
<ItemGroup>
|
34
|
+
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
35
|
+
<SpecificVersion>False</SpecificVersion>
|
36
|
+
<HintPath>..\..\..\..\..\..\..\TEMP\mstest\Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll</HintPath>
|
37
|
+
</Reference>
|
38
|
+
<Reference Include="System" />
|
39
|
+
<Reference Include="System.Core" />
|
40
|
+
</ItemGroup>
|
41
|
+
<ItemGroup>
|
42
|
+
<Compile Include="Properties\AssemblyInfo.cs" />
|
43
|
+
<Compile Include="Tests.cs" />
|
44
|
+
</ItemGroup>
|
45
|
+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
46
|
+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
47
|
+
Other similar extension points exist, see Microsoft.Common.targets.
|
48
|
+
<Target Name="BeforeBuild">
|
49
|
+
</Target>
|
50
|
+
<Target Name="AfterBuild">
|
51
|
+
</Target>
|
52
|
+
-->
|
53
53
|
</Project>
|
@@ -1,97 +1,97 @@
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
2
|
-
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
3
|
-
<PropertyGroup>
|
4
|
-
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
5
|
-
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
6
|
-
<ProductVersion>9.0.30729</ProductVersion>
|
7
|
-
<SchemaVersion>2.0</SchemaVersion>
|
8
|
-
<ProjectGuid>{A3E3685B-07C6-4D0F-AF30-2BF50DCC0F84}</ProjectGuid>
|
9
|
-
<OutputType>Library</OutputType>
|
10
|
-
<AppDesignerFolder>Properties</AppDesignerFolder>
|
11
|
-
<RootNamespace>TestSolution.MSTestTests</RootNamespace>
|
12
|
-
<AssemblyName>TestSolution.MSTestTests</AssemblyName>
|
13
|
-
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
|
14
|
-
<FileAlignment>512</FileAlignment>
|
15
|
-
<ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
16
|
-
<FileUpgradeFlags>
|
17
|
-
</FileUpgradeFlags>
|
18
|
-
<OldToolsVersion>3.5</OldToolsVersion>
|
19
|
-
<UpgradeBackupLocation />
|
20
|
-
<PublishUrl>publish\</PublishUrl>
|
21
|
-
<Install>true</Install>
|
22
|
-
<InstallFrom>Disk</InstallFrom>
|
23
|
-
<UpdateEnabled>false</UpdateEnabled>
|
24
|
-
<UpdateMode>Foreground</UpdateMode>
|
25
|
-
<UpdateInterval>7</UpdateInterval>
|
26
|
-
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
|
27
|
-
<UpdatePeriodically>false</UpdatePeriodically>
|
28
|
-
<UpdateRequired>false</UpdateRequired>
|
29
|
-
<MapFileExtensions>true</MapFileExtensions>
|
30
|
-
<ApplicationRevision>0</ApplicationRevision>
|
31
|
-
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
|
32
|
-
<IsWebBootstrapper>false</IsWebBootstrapper>
|
33
|
-
<UseApplicationTrust>false</UseApplicationTrust>
|
34
|
-
<BootstrapperEnabled>true</BootstrapperEnabled>
|
35
|
-
<TargetFrameworkProfile />
|
36
|
-
</PropertyGroup>
|
37
|
-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
38
|
-
<DebugSymbols>true</DebugSymbols>
|
39
|
-
<DebugType>full</DebugType>
|
40
|
-
<Optimize>false</Optimize>
|
41
|
-
<OutputPath>bin\Debug\</OutputPath>
|
42
|
-
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
43
|
-
<ErrorReport>prompt</ErrorReport>
|
44
|
-
<WarningLevel>4</WarningLevel>
|
45
|
-
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
|
46
|
-
</PropertyGroup>
|
47
|
-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
48
|
-
<DebugType>pdbonly</DebugType>
|
49
|
-
<Optimize>true</Optimize>
|
50
|
-
<OutputPath>bin\Release\</OutputPath>
|
51
|
-
<DefineConstants>TRACE</DefineConstants>
|
52
|
-
<ErrorReport>prompt</ErrorReport>
|
53
|
-
<WarningLevel>4</WarningLevel>
|
54
|
-
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
|
55
|
-
</PropertyGroup>
|
56
|
-
<ItemGroup>
|
57
|
-
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
|
58
|
-
<Reference Include="System" />
|
59
|
-
<Reference Include="System.Core">
|
60
|
-
<RequiredTargetFramework>3.5</RequiredTargetFramework>
|
61
|
-
</Reference>
|
62
|
-
</ItemGroup>
|
63
|
-
<ItemGroup>
|
64
|
-
<Compile Include="Properties\AssemblyInfo.cs" />
|
65
|
-
<Compile Include="Tests.cs" />
|
66
|
-
</ItemGroup>
|
67
|
-
<ItemGroup>
|
68
|
-
<BootstrapperPackage Include=".NETFramework,Version=v4.0">
|
69
|
-
<Visible>False</Visible>
|
70
|
-
<ProductName>Microsoft .NET Framework 4 %28x86 and x64%29</ProductName>
|
71
|
-
<Install>true</Install>
|
72
|
-
</BootstrapperPackage>
|
73
|
-
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
|
74
|
-
<Visible>False</Visible>
|
75
|
-
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
|
76
|
-
<Install>false</Install>
|
77
|
-
</BootstrapperPackage>
|
78
|
-
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
|
79
|
-
<Visible>False</Visible>
|
80
|
-
<ProductName>.NET Framework 3.5 SP1</ProductName>
|
81
|
-
<Install>false</Install>
|
82
|
-
</BootstrapperPackage>
|
83
|
-
<BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
|
84
|
-
<Visible>False</Visible>
|
85
|
-
<ProductName>Windows Installer 3.1</ProductName>
|
86
|
-
<Install>true</Install>
|
87
|
-
</BootstrapperPackage>
|
88
|
-
</ItemGroup>
|
89
|
-
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
3
|
+
<PropertyGroup>
|
4
|
+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
5
|
+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
6
|
+
<ProductVersion>9.0.30729</ProductVersion>
|
7
|
+
<SchemaVersion>2.0</SchemaVersion>
|
8
|
+
<ProjectGuid>{A3E3685B-07C6-4D0F-AF30-2BF50DCC0F84}</ProjectGuid>
|
9
|
+
<OutputType>Library</OutputType>
|
10
|
+
<AppDesignerFolder>Properties</AppDesignerFolder>
|
11
|
+
<RootNamespace>TestSolution.MSTestTests</RootNamespace>
|
12
|
+
<AssemblyName>TestSolution.MSTestTests</AssemblyName>
|
13
|
+
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
|
14
|
+
<FileAlignment>512</FileAlignment>
|
15
|
+
<ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
16
|
+
<FileUpgradeFlags>
|
17
|
+
</FileUpgradeFlags>
|
18
|
+
<OldToolsVersion>3.5</OldToolsVersion>
|
19
|
+
<UpgradeBackupLocation />
|
20
|
+
<PublishUrl>publish\</PublishUrl>
|
21
|
+
<Install>true</Install>
|
22
|
+
<InstallFrom>Disk</InstallFrom>
|
23
|
+
<UpdateEnabled>false</UpdateEnabled>
|
24
|
+
<UpdateMode>Foreground</UpdateMode>
|
25
|
+
<UpdateInterval>7</UpdateInterval>
|
26
|
+
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
|
27
|
+
<UpdatePeriodically>false</UpdatePeriodically>
|
28
|
+
<UpdateRequired>false</UpdateRequired>
|
29
|
+
<MapFileExtensions>true</MapFileExtensions>
|
30
|
+
<ApplicationRevision>0</ApplicationRevision>
|
31
|
+
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
|
32
|
+
<IsWebBootstrapper>false</IsWebBootstrapper>
|
33
|
+
<UseApplicationTrust>false</UseApplicationTrust>
|
34
|
+
<BootstrapperEnabled>true</BootstrapperEnabled>
|
35
|
+
<TargetFrameworkProfile />
|
36
|
+
</PropertyGroup>
|
37
|
+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
38
|
+
<DebugSymbols>true</DebugSymbols>
|
39
|
+
<DebugType>full</DebugType>
|
40
|
+
<Optimize>false</Optimize>
|
41
|
+
<OutputPath>bin\Debug\</OutputPath>
|
42
|
+
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
43
|
+
<ErrorReport>prompt</ErrorReport>
|
44
|
+
<WarningLevel>4</WarningLevel>
|
45
|
+
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
|
46
|
+
</PropertyGroup>
|
47
|
+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
48
|
+
<DebugType>pdbonly</DebugType>
|
49
|
+
<Optimize>true</Optimize>
|
50
|
+
<OutputPath>bin\Release\</OutputPath>
|
51
|
+
<DefineConstants>TRACE</DefineConstants>
|
52
|
+
<ErrorReport>prompt</ErrorReport>
|
53
|
+
<WarningLevel>4</WarningLevel>
|
54
|
+
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
|
55
|
+
</PropertyGroup>
|
56
|
+
<ItemGroup>
|
57
|
+
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
|
58
|
+
<Reference Include="System" />
|
59
|
+
<Reference Include="System.Core">
|
60
|
+
<RequiredTargetFramework>3.5</RequiredTargetFramework>
|
61
|
+
</Reference>
|
62
|
+
</ItemGroup>
|
63
|
+
<ItemGroup>
|
64
|
+
<Compile Include="Properties\AssemblyInfo.cs" />
|
65
|
+
<Compile Include="Tests.cs" />
|
66
|
+
</ItemGroup>
|
67
|
+
<ItemGroup>
|
68
|
+
<BootstrapperPackage Include=".NETFramework,Version=v4.0">
|
69
|
+
<Visible>False</Visible>
|
70
|
+
<ProductName>Microsoft .NET Framework 4 %28x86 and x64%29</ProductName>
|
71
|
+
<Install>true</Install>
|
72
|
+
</BootstrapperPackage>
|
73
|
+
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
|
74
|
+
<Visible>False</Visible>
|
75
|
+
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
|
76
|
+
<Install>false</Install>
|
77
|
+
</BootstrapperPackage>
|
78
|
+
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
|
79
|
+
<Visible>False</Visible>
|
80
|
+
<ProductName>.NET Framework 3.5 SP1</ProductName>
|
81
|
+
<Install>false</Install>
|
82
|
+
</BootstrapperPackage>
|
83
|
+
<BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
|
84
|
+
<Visible>False</Visible>
|
85
|
+
<ProductName>Windows Installer 3.1</ProductName>
|
86
|
+
<Install>true</Install>
|
87
|
+
</BootstrapperPackage>
|
88
|
+
</ItemGroup>
|
89
|
+
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
90
90
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
91
91
|
Other similar extension points exist, see Microsoft.Common.targets.
|
92
92
|
<Target Name="BeforeBuild">
|
93
93
|
</Target>
|
94
94
|
<Target Name="AfterBuild">
|
95
95
|
</Target>
|
96
|
-
-->
|
96
|
+
-->
|
97
97
|
</Project>
|
@@ -1,110 +1,110 @@
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
2
|
-
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
3
|
-
<PropertyGroup>
|
4
|
-
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
5
|
-
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
6
|
-
<ProductVersion>9.0.30729</ProductVersion>
|
7
|
-
<SchemaVersion>2.0</SchemaVersion>
|
8
|
-
<ProjectGuid>{DC8BF855-3A09-4349-8A66-C20AF0EA00DF}</ProjectGuid>
|
9
|
-
<OutputType>Library</OutputType>
|
10
|
-
<AppDesignerFolder>Properties</AppDesignerFolder>
|
11
|
-
<RootNamespace>TestSolution.MSpecTests</RootNamespace>
|
12
|
-
<AssemblyName>TestSolution.MSpecTests</AssemblyName>
|
13
|
-
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
|
14
|
-
<FileAlignment>512</FileAlignment>
|
15
|
-
<FileUpgradeFlags>
|
16
|
-
</FileUpgradeFlags>
|
17
|
-
<OldToolsVersion>3.5</OldToolsVersion>
|
18
|
-
<UpgradeBackupLocation />
|
19
|
-
<PublishUrl>publish\</PublishUrl>
|
20
|
-
<Install>true</Install>
|
21
|
-
<InstallFrom>Disk</InstallFrom>
|
22
|
-
<UpdateEnabled>false</UpdateEnabled>
|
23
|
-
<UpdateMode>Foreground</UpdateMode>
|
24
|
-
<UpdateInterval>7</UpdateInterval>
|
25
|
-
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
|
26
|
-
<UpdatePeriodically>false</UpdatePeriodically>
|
27
|
-
<UpdateRequired>false</UpdateRequired>
|
28
|
-
<MapFileExtensions>true</MapFileExtensions>
|
29
|
-
<ApplicationRevision>0</ApplicationRevision>
|
30
|
-
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
|
31
|
-
<IsWebBootstrapper>false</IsWebBootstrapper>
|
32
|
-
<UseApplicationTrust>false</UseApplicationTrust>
|
33
|
-
<BootstrapperEnabled>true</BootstrapperEnabled>
|
34
|
-
</PropertyGroup>
|
35
|
-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
36
|
-
<DebugSymbols>true</DebugSymbols>
|
37
|
-
<DebugType>full</DebugType>
|
38
|
-
<Optimize>false</Optimize>
|
39
|
-
<OutputPath>bin\Debug\</OutputPath>
|
40
|
-
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
41
|
-
<ErrorReport>prompt</ErrorReport>
|
42
|
-
<WarningLevel>4</WarningLevel>
|
43
|
-
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
|
44
|
-
</PropertyGroup>
|
45
|
-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
46
|
-
<DebugType>pdbonly</DebugType>
|
47
|
-
<Optimize>true</Optimize>
|
48
|
-
<OutputPath>bin\Release\</OutputPath>
|
49
|
-
<DefineConstants>TRACE</DefineConstants>
|
50
|
-
<ErrorReport>prompt</ErrorReport>
|
51
|
-
<WarningLevel>4</WarningLevel>
|
52
|
-
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
|
53
|
-
</PropertyGroup>
|
54
|
-
<ItemGroup>
|
55
|
-
<Reference Include="Machine.Specifications">
|
56
|
-
<HintPath>..\..\Tools\Machine.Specifications-0.5.3\lib\Machine.Specifications.dll</HintPath>
|
57
|
-
</Reference>
|
58
|
-
<Reference Include="nunit.framework, Version=2.4.6.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
|
59
|
-
<SpecificVersion>False</SpecificVersion>
|
60
|
-
<HintPath>..\..\Tools\Machine.Specification-v0.2\nunit.framework.dll</HintPath>
|
61
|
-
</Reference>
|
62
|
-
<Reference Include="System" />
|
63
|
-
<Reference Include="System.Core">
|
64
|
-
<RequiredTargetFramework>3.5</RequiredTargetFramework>
|
65
|
-
</Reference>
|
66
|
-
<Reference Include="System.Xml.Linq">
|
67
|
-
<RequiredTargetFramework>3.5</RequiredTargetFramework>
|
68
|
-
</Reference>
|
69
|
-
<Reference Include="System.Data.DataSetExtensions">
|
70
|
-
<RequiredTargetFramework>3.5</RequiredTargetFramework>
|
71
|
-
</Reference>
|
72
|
-
<Reference Include="System.Data" />
|
73
|
-
<Reference Include="System.Xml" />
|
74
|
-
</ItemGroup>
|
75
|
-
<ItemGroup>
|
76
|
-
<Compile Include="Properties\AssemblyInfo.cs" />
|
77
|
-
<Compile Include="SomeSpecTest.cs" />
|
78
|
-
</ItemGroup>
|
79
|
-
<ItemGroup>
|
80
|
-
<ProjectReference Include="..\TestSolution\TestSolution.csproj">
|
81
|
-
<Project>{36F8C06F-3BBA-4D11-9333-83573A760284}</Project>
|
82
|
-
<Name>TestSolution</Name>
|
83
|
-
</ProjectReference>
|
84
|
-
</ItemGroup>
|
85
|
-
<ItemGroup>
|
86
|
-
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
|
87
|
-
<Visible>False</Visible>
|
88
|
-
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
|
89
|
-
<Install>false</Install>
|
90
|
-
</BootstrapperPackage>
|
91
|
-
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
|
92
|
-
<Visible>False</Visible>
|
93
|
-
<ProductName>.NET Framework 3.5 SP1</ProductName>
|
94
|
-
<Install>true</Install>
|
95
|
-
</BootstrapperPackage>
|
96
|
-
<BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
|
97
|
-
<Visible>False</Visible>
|
98
|
-
<ProductName>Windows Installer 3.1</ProductName>
|
99
|
-
<Install>true</Install>
|
100
|
-
</BootstrapperPackage>
|
101
|
-
</ItemGroup>
|
102
|
-
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
3
|
+
<PropertyGroup>
|
4
|
+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
5
|
+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
6
|
+
<ProductVersion>9.0.30729</ProductVersion>
|
7
|
+
<SchemaVersion>2.0</SchemaVersion>
|
8
|
+
<ProjectGuid>{DC8BF855-3A09-4349-8A66-C20AF0EA00DF}</ProjectGuid>
|
9
|
+
<OutputType>Library</OutputType>
|
10
|
+
<AppDesignerFolder>Properties</AppDesignerFolder>
|
11
|
+
<RootNamespace>TestSolution.MSpecTests</RootNamespace>
|
12
|
+
<AssemblyName>TestSolution.MSpecTests</AssemblyName>
|
13
|
+
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
|
14
|
+
<FileAlignment>512</FileAlignment>
|
15
|
+
<FileUpgradeFlags>
|
16
|
+
</FileUpgradeFlags>
|
17
|
+
<OldToolsVersion>3.5</OldToolsVersion>
|
18
|
+
<UpgradeBackupLocation />
|
19
|
+
<PublishUrl>publish\</PublishUrl>
|
20
|
+
<Install>true</Install>
|
21
|
+
<InstallFrom>Disk</InstallFrom>
|
22
|
+
<UpdateEnabled>false</UpdateEnabled>
|
23
|
+
<UpdateMode>Foreground</UpdateMode>
|
24
|
+
<UpdateInterval>7</UpdateInterval>
|
25
|
+
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
|
26
|
+
<UpdatePeriodically>false</UpdatePeriodically>
|
27
|
+
<UpdateRequired>false</UpdateRequired>
|
28
|
+
<MapFileExtensions>true</MapFileExtensions>
|
29
|
+
<ApplicationRevision>0</ApplicationRevision>
|
30
|
+
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
|
31
|
+
<IsWebBootstrapper>false</IsWebBootstrapper>
|
32
|
+
<UseApplicationTrust>false</UseApplicationTrust>
|
33
|
+
<BootstrapperEnabled>true</BootstrapperEnabled>
|
34
|
+
</PropertyGroup>
|
35
|
+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
36
|
+
<DebugSymbols>true</DebugSymbols>
|
37
|
+
<DebugType>full</DebugType>
|
38
|
+
<Optimize>false</Optimize>
|
39
|
+
<OutputPath>bin\Debug\</OutputPath>
|
40
|
+
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
41
|
+
<ErrorReport>prompt</ErrorReport>
|
42
|
+
<WarningLevel>4</WarningLevel>
|
43
|
+
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
|
44
|
+
</PropertyGroup>
|
45
|
+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
46
|
+
<DebugType>pdbonly</DebugType>
|
47
|
+
<Optimize>true</Optimize>
|
48
|
+
<OutputPath>bin\Release\</OutputPath>
|
49
|
+
<DefineConstants>TRACE</DefineConstants>
|
50
|
+
<ErrorReport>prompt</ErrorReport>
|
51
|
+
<WarningLevel>4</WarningLevel>
|
52
|
+
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
|
53
|
+
</PropertyGroup>
|
54
|
+
<ItemGroup>
|
55
|
+
<Reference Include="Machine.Specifications">
|
56
|
+
<HintPath>..\..\Tools\Machine.Specifications-0.5.3\lib\Machine.Specifications.dll</HintPath>
|
57
|
+
</Reference>
|
58
|
+
<Reference Include="nunit.framework, Version=2.4.6.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
|
59
|
+
<SpecificVersion>False</SpecificVersion>
|
60
|
+
<HintPath>..\..\Tools\Machine.Specification-v0.2\nunit.framework.dll</HintPath>
|
61
|
+
</Reference>
|
62
|
+
<Reference Include="System" />
|
63
|
+
<Reference Include="System.Core">
|
64
|
+
<RequiredTargetFramework>3.5</RequiredTargetFramework>
|
65
|
+
</Reference>
|
66
|
+
<Reference Include="System.Xml.Linq">
|
67
|
+
<RequiredTargetFramework>3.5</RequiredTargetFramework>
|
68
|
+
</Reference>
|
69
|
+
<Reference Include="System.Data.DataSetExtensions">
|
70
|
+
<RequiredTargetFramework>3.5</RequiredTargetFramework>
|
71
|
+
</Reference>
|
72
|
+
<Reference Include="System.Data" />
|
73
|
+
<Reference Include="System.Xml" />
|
74
|
+
</ItemGroup>
|
75
|
+
<ItemGroup>
|
76
|
+
<Compile Include="Properties\AssemblyInfo.cs" />
|
77
|
+
<Compile Include="SomeSpecTest.cs" />
|
78
|
+
</ItemGroup>
|
79
|
+
<ItemGroup>
|
80
|
+
<ProjectReference Include="..\TestSolution\TestSolution.csproj">
|
81
|
+
<Project>{36F8C06F-3BBA-4D11-9333-83573A760284}</Project>
|
82
|
+
<Name>TestSolution</Name>
|
83
|
+
</ProjectReference>
|
84
|
+
</ItemGroup>
|
85
|
+
<ItemGroup>
|
86
|
+
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
|
87
|
+
<Visible>False</Visible>
|
88
|
+
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
|
89
|
+
<Install>false</Install>
|
90
|
+
</BootstrapperPackage>
|
91
|
+
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
|
92
|
+
<Visible>False</Visible>
|
93
|
+
<ProductName>.NET Framework 3.5 SP1</ProductName>
|
94
|
+
<Install>true</Install>
|
95
|
+
</BootstrapperPackage>
|
96
|
+
<BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
|
97
|
+
<Visible>False</Visible>
|
98
|
+
<ProductName>Windows Installer 3.1</ProductName>
|
99
|
+
<Install>true</Install>
|
100
|
+
</BootstrapperPackage>
|
101
|
+
</ItemGroup>
|
102
|
+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
103
103
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
104
104
|
Other similar extension points exist, see Microsoft.Common.targets.
|
105
105
|
<Target Name="BeforeBuild">
|
106
106
|
</Target>
|
107
107
|
<Target Name="AfterBuild">
|
108
108
|
</Target>
|
109
|
-
-->
|
109
|
+
-->
|
110
110
|
</Project>
|