We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 666d720 commit 60591b7Copy full SHA for 60591b7
.appveyor.yml
@@ -29,7 +29,7 @@ install:
29
# Build Script #
30
#---------------------------------#
31
build_script:
32
- - ps: .\build.ps1 --target=CI --verbosity=diagnostic
+ - ps: .\build.ps1 --target=CI
33
34
# Tests
35
test: off
recipe.cake
@@ -112,7 +112,7 @@ BuildParameters.Tasks.UploadCodecovReportTask
112
if (coverageFiles.Any())
113
{
114
var settings = new CodecovSettings {
115
- Files = coverageFiles.Select(f => f.FullPath),
+ Files = coverageFiles.Select(f => f.FullPath.Replace("/", "\\")),
116
NonZero = true,
117
Token = BuildParameters.Codecov.RepoToken
118
};
0 commit comments