File tree 3 files changed +11
-6
lines changed
Xunit.Combinatorial.Tests
3 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -4,10 +4,13 @@ configuration: Release
4
4
environment :
5
5
VisualStudioVersion : 15.0
6
6
before_build :
7
- - ps : msbuild src\Xunit.Combinatorial.sln /nologo /m /v:quiet /t: restore
7
+ - ps : dotnet restore src
8
8
build_script :
9
- - ps : msbuild src\Xunit.Combinatorial.sln /nologo /m /fl /v:quiet /t:build,pack
10
- test :
11
- assemblies : ' bin\**\*tests.dll'
9
+ - ps : >-
10
+ dotnet build src /nologo
11
+
12
+ dotnet pack src --no-build /nologo
13
+ test_script :
14
+ - ps : dotnet test .\src\Xunit.Combinatorial.Tests\Xunit.Combinatorial.Tests.csproj --no-build
12
15
artifacts :
13
16
- path : bin\**\*.nupkg
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
<PropertyGroup >
3
- <TargetFramework >net452</ TargetFramework >
3
+ <TargetFrameworks >net461;netcoreapp1.0</ TargetFrameworks >
4
4
<IsPackable >false</IsPackable >
5
5
</PropertyGroup >
6
6
<ItemGroup >
12
12
<ProjectReference Include =" ..\Xunit.Combinatorial\Xunit.Combinatorial.csproj" />
13
13
</ItemGroup >
14
14
<ItemGroup >
15
- <PackageReference Include =" Validation" Version =" 2.2.8 " />
15
+ <PackageReference Include =" Validation" Version =" 2.4.15 " />
16
16
<PackageReference Include =" xunit" Version =" 2.2.0" />
17
17
<PackageReference Include =" xunit.runner.visualstudio" Version =" 2.2.0" />
18
+ <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 15.0.0" />
18
19
</ItemGroup >
19
20
<ItemGroup >
20
21
<Service Include =" {82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
Original file line number Diff line number Diff line change 69
69
<Rule Id =" CA2242" Action =" Warning" />
70
70
</Rules >
71
71
<Rules AnalyzerId =" StyleCop.Analyzers" RuleNamespace =" StyleCop.Analyzers" >
72
+ <Rule Id =" AD0001" Action =" None" />
72
73
<Rule Id =" SA1005" Action =" Hidden" />
73
74
<Rule Id =" SA1600" Action =" Hidden" />
74
75
<Rule Id =" SX1309S" Action =" None" />
You can’t perform that action at this time.
0 commit comments