File tree 4 files changed +18
-0
lines changed
4 files changed +18
-0
lines changed Original file line number Diff line number Diff line change 3
3
<config >
4
4
<add key =" repositorypath" value =" packages" />
5
5
</config >
6
+ <packageSources >
7
+ <add key =" myget.org/F/aarnott" value =" https://www.myget.org/F/aarnott/api/v2" />
8
+ </packageSources >
6
9
</configuration >
Original file line number Diff line number Diff line change 3
3
using System ;
4
4
using Validation ;
5
5
6
+ /// <summary>
7
+ /// Specifies which values for this parameter should be used for running the test method.
8
+ /// </summary>
6
9
[ AttributeUsage ( AttributeTargets . Parameter ) ]
7
10
public class CombinatorialValuesAttribute : Attribute
8
11
{
12
+ /// <summary>
13
+ /// Initializes a new instance of the <see cref="CombinatorialValuesAttribute"/> class.
14
+ /// </summary>
15
+ /// <param name="values">The values to pass to this parameter.</param>
9
16
public CombinatorialValuesAttribute ( params object [ ] values )
10
17
{
11
18
Requires . NotNull ( values , nameof ( values ) ) ;
12
19
13
20
this . Values = values ;
14
21
}
15
22
23
+ /// <summary>
24
+ /// Gets the values that should be passed to this parameter on the test method.
25
+ /// </summary>
26
+ /// <value>An array of values.</value>
16
27
public object [ ] Values { get ; }
17
28
}
18
29
}
Original file line number Diff line number Diff line change 57
57
<ItemGroup >
58
58
<None Include =" packages.config" />
59
59
</ItemGroup >
60
+ <ItemGroup >
61
+ <Analyzer Include =" ..\..\packages\StyleCop.Analyzers.1.0.0-alpha-g4e621dfd0d\tools\analyzers\StyleCop.Analyzers.dll" />
62
+ </ItemGroup >
60
63
<Import Project =" $(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
61
64
<Import Project =" ..\..\Packages\Nerdbank.GitVersioning.1.0.15178-beta\build\NerdBank.GitVersioning.targets" Condition =" Exists('..\..\Packages\Nerdbank.GitVersioning.1.0.15178-beta\build\NerdBank.GitVersioning.targets')" />
62
65
<Target Name =" EnsureNuGetPackageBuildImports" BeforeTargets =" PrepareForBuild" >
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<packages >
3
3
<package id =" Nerdbank.GitVersioning" version =" 1.0.15178-beta" targetFramework =" portable45-net45+win8+wp8+wpa81" developmentDependency =" true" />
4
+ <package id =" StyleCop.Analyzers" version =" 1.0.0-alpha-g4e621dfd0d" targetFramework =" portable45-net45+win8+wp8+wpa81" developmentDependency =" true" />
4
5
<package id =" Validation" version =" 2.0.6.15003" targetFramework =" portable45-net45+win8+wp8+wpa81" />
5
6
<package id =" xunit.abstractions" version =" 2.0.0" targetFramework =" portable45-net45+win8+wp8+wpa81" />
6
7
<package id =" xunit.extensibility.core" version =" 2.0.0" targetFramework =" portable45-net45+win8+wp8+wpa81" />
You can’t perform that action at this time.
0 commit comments