Skip to content

Commit 4a0b1b4

Browse files
committed
ignore samples for code coverage
1 parent c369c0a commit 4a0b1b4

9 files changed

Lines changed: 12 additions & 12 deletions

File tree

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ after_test:
9393
9494
dotnet build -c $env:CONFIGURATION --no-restore -v m /p:codecov=true
9595
96-
OpenCover.Console.exe -target:"$env:XUNIT20\xunit.console.x86.exe" -targetargs:"test\$env:APPVEYOR_PROJECT_NAME.Tests\bin\$env:CONFIGURATION\net471\$env:APPVEYOR_PROJECT_NAME.Tests.dll -noshadow" -register:user -filter:"+[*]* -[$env:APPVEYOR_PROJECT_NAME.Tests]*" -hideskipped:All -output:".\coverage.xml"
96+
OpenCover.Console.exe -target:"$env:XUNIT20\xunit.console.x86.exe" -targetargs:"test\$env:APPVEYOR_PROJECT_NAME.Tests\bin\$env:CONFIGURATION\net471\$env:APPVEYOR_PROJECT_NAME.Tests.dll -noshadow" -register:user -filter:"+[*]* -[$env:APPVEYOR_PROJECT_NAME.Tests]* -[$env:APPVEYOR_PROJECT_NAME.Samples]*" -hideskipped:All -output:".\coverage.xml"
9797
9898
Write-Host "FINISHED generating code coverage report" -ForegroundColor Magenta
9999

PartialResponse.AspNetCore.Mvc.Formatters.Json.sln

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PartialResponse.AspNetCore.
1313
EndProject
1414
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PartialResponse.AspNetCore.Mvc.Formatters.Json.Tests", "test\PartialResponse.AspNetCore.Mvc.Formatters.Json.Tests\PartialResponse.AspNetCore.Mvc.Formatters.Json.Tests.csproj", "{2F881047-13F4-42B1-923D-CA7C3A7705F2}"
1515
EndProject
16-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PartialResponse.AspNetCore.Mvc.Formatters.Json.Demo", "samples\PartialResponse.AspNetCore.Mvc.Formatters.Json.Demo\PartialResponse.AspNetCore.Mvc.Formatters.Json.Demo.csproj", "{F65AB962-E8AB-4A2B-9178-322EEA67F9C5}"
17-
EndProject
1816
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{E51F9EAF-B010-4AFF-B44C-79E180E97093}"
1917
ProjectSection(SolutionItems) = preProject
2018
.appveyor.yml = .appveyor.yml
2119
stylecop.json = stylecop.json
2220
EndProjectSection
2321
EndProject
22+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PartialResponse.AspNetCore.Mvc.Formatters.Json.Samples", "samples\PartialResponse.AspNetCore.Mvc.Formatters.Json.Samples\PartialResponse.AspNetCore.Mvc.Formatters.Json.Samples.csproj", "{A593C467-89C7-4E2F-91D2-7AE47572B20D}"
23+
EndProject
2424
Global
2525
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2626
Debug|Any CPU = Debug|Any CPU
@@ -35,18 +35,18 @@ Global
3535
{2F881047-13F4-42B1-923D-CA7C3A7705F2}.Debug|Any CPU.Build.0 = Debug|Any CPU
3636
{2F881047-13F4-42B1-923D-CA7C3A7705F2}.Release|Any CPU.ActiveCfg = Release|Any CPU
3737
{2F881047-13F4-42B1-923D-CA7C3A7705F2}.Release|Any CPU.Build.0 = Release|Any CPU
38-
{F65AB962-E8AB-4A2B-9178-322EEA67F9C5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
39-
{F65AB962-E8AB-4A2B-9178-322EEA67F9C5}.Debug|Any CPU.Build.0 = Debug|Any CPU
40-
{F65AB962-E8AB-4A2B-9178-322EEA67F9C5}.Release|Any CPU.ActiveCfg = Release|Any CPU
41-
{F65AB962-E8AB-4A2B-9178-322EEA67F9C5}.Release|Any CPU.Build.0 = Release|Any CPU
38+
{A593C467-89C7-4E2F-91D2-7AE47572B20D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
39+
{A593C467-89C7-4E2F-91D2-7AE47572B20D}.Debug|Any CPU.Build.0 = Debug|Any CPU
40+
{A593C467-89C7-4E2F-91D2-7AE47572B20D}.Release|Any CPU.ActiveCfg = Release|Any CPU
41+
{A593C467-89C7-4E2F-91D2-7AE47572B20D}.Release|Any CPU.Build.0 = Release|Any CPU
4242
EndGlobalSection
4343
GlobalSection(SolutionProperties) = preSolution
4444
HideSolutionNode = FALSE
4545
EndGlobalSection
4646
GlobalSection(NestedProjects) = preSolution
4747
{AAE3521D-6478-4D81-A6A4-4FE45534306E} = {76236DA2-0225-4CA2-A2C8-46C665DE6D71}
4848
{2F881047-13F4-42B1-923D-CA7C3A7705F2} = {9B5D9D87-31E2-47BF-A9EC-B9958AE2EB2A}
49-
{F65AB962-E8AB-4A2B-9178-322EEA67F9C5} = {7E27D3E5-DD84-40B0-BC5E-70E46C92E5CF}
49+
{A593C467-89C7-4E2F-91D2-7AE47572B20D} = {7E27D3E5-DD84-40B0-BC5E-70E46C92E5CF}
5050
EndGlobalSection
5151
GlobalSection(ExtensibilityGlobals) = postSolution
5252
SolutionGuid = {BB850AA8-A179-4E90-A781-C52F8E252787}

samples/PartialResponse.AspNetCore.Mvc.Formatters.Json.Demo/Controllers/ExecutorController.cs renamed to samples/PartialResponse.AspNetCore.Mvc.Formatters.Json.Samples/Controllers/ExecutorController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.Collections.Generic;
44
using Microsoft.AspNetCore.Mvc;
55

6-
namespace PartialResponse.AspNetCore.Mvc.Formatters.Json.Demo.Controllers
6+
namespace PartialResponse.AspNetCore.Mvc.Formatters.Json.Samples.Controllers
77
{
88
public class ExecutorController : Controller
99
{

samples/PartialResponse.AspNetCore.Mvc.Formatters.Json.Demo/Controllers/FormatterController.cs renamed to samples/PartialResponse.AspNetCore.Mvc.Formatters.Json.Samples/Controllers/FormatterController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.Collections.Generic;
44
using Microsoft.AspNetCore.Mvc;
55

6-
namespace PartialResponse.AspNetCore.Mvc.Formatters.Json.Demo.Controllers
6+
namespace PartialResponse.AspNetCore.Mvc.Formatters.Json.Samples.Controllers
77
{
88
public class FormatterController : Controller
99
{

samples/PartialResponse.AspNetCore.Mvc.Formatters.Json.Demo/PartialResponse.AspNetCore.Mvc.Formatters.Json.Demo.csproj renamed to samples/PartialResponse.AspNetCore.Mvc.Formatters.Json.Samples/PartialResponse.AspNetCore.Mvc.Formatters.Json.Samples.csproj

File renamed without changes.

samples/PartialResponse.AspNetCore.Mvc.Formatters.Json.Demo/Program.cs renamed to samples/PartialResponse.AspNetCore.Mvc.Formatters.Json.Samples/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using Microsoft.AspNetCore;
44
using Microsoft.AspNetCore.Hosting;
55

6-
namespace PartialResponse.AspNetCore.Mvc.Formatters.Json.Demo
6+
namespace PartialResponse.AspNetCore.Mvc.Formatters.Json.Samples
77
{
88
public class Program
99
{

samples/PartialResponse.AspNetCore.Mvc.Formatters.Json.Demo/Startup.cs renamed to samples/PartialResponse.AspNetCore.Mvc.Formatters.Json.Samples/Startup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using Microsoft.Extensions.Logging;
88
using PartialResponse.Extensions.DependencyInjection;
99

10-
namespace PartialResponse.AspNetCore.Mvc.Formatters.Json.Demo
10+
namespace PartialResponse.AspNetCore.Mvc.Formatters.Json.Samples
1111
{
1212
public class Startup
1313
{

samples/PartialResponse.AspNetCore.Mvc.Formatters.Json.Demo/appsettings.json renamed to samples/PartialResponse.AspNetCore.Mvc.Formatters.Json.Samples/appsettings.json

File renamed without changes.

samples/PartialResponse.AspNetCore.Mvc.Formatters.Json.Demo/stylecop.ruleset renamed to samples/PartialResponse.AspNetCore.Mvc.Formatters.Json.Samples/stylecop.ruleset

File renamed without changes.

0 commit comments

Comments
 (0)