Skip to content

Commit

Permalink
Update code coverage and set file path filter
Browse files Browse the repository at this point in the history
  • Loading branch information
Oren Novotny committed Sep 29, 2018
1 parent 335350c commit aca6d5f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CodeCoverage.runsettings
Expand Up @@ -21,7 +21,7 @@ Included items must then not match any entries in the exclude list to remain inc
<ModulePath>.*Refit.*\.dll$</ModulePath>
</Include>
<Exclude>
<ModulePath>.*Tests.*</ModulePath>
<ModulePath>.*Tests.dll$</ModulePath>
</Exclude>
</ModulePaths>

Expand Down
6 changes: 2 additions & 4 deletions Refit.sln
Expand Up @@ -6,9 +6,7 @@ MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{4F1C8991-7097-4471-A9A6-A72005AB594D}"
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
.vsts-ci.yml = .vsts-ci.yml
.vsts-pr.yml = .vsts-pr.yml
.vsts-shared.yml = .vsts-shared.yml
azure-pipelines.yml = azure-pipelines.yml
Directory.build.props = Directory.build.props
README.md = README.md
Refit.ruleset = Refit.ruleset
Expand All @@ -30,7 +28,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "InterfaceStubGenerator.App"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "InterfaceStubGenerator.BuildTasks", "InterfaceStubGenerator.BuildTasks\InterfaceStubGenerator.BuildTasks.csproj", "{DE66466A-4912-4352-B973-E544D3073DDC}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Refit.HttpClientFactory", "Refit.HttpClientFactory\Refit.HttpClientFactory.csproj", "{01AE14AC-88D1-49C4-A612-2F9B2DEB5DEA}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Refit.HttpClientFactory", "Refit.HttpClientFactory\Refit.HttpClientFactory.csproj", "{01AE14AC-88D1-49C4-A612-2F9B2DEB5DEA}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
9 changes: 7 additions & 2 deletions azure-pipelines.yml
@@ -1,6 +1,11 @@
trigger:
- master
- rel/*
branches:
include:
- master
- rel/*
paths:
exclude:
- '**/*.md'

pool:
vmImage: vs2017-win2016
Expand Down

0 comments on commit aca6d5f

Please sign in to comment.