Skip to content

Commit 85adb6b

Browse files
committed
Added PowerShell scripts #2
1 parent 3f2e71f commit 85adb6b

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

build.ps1

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
dotnet build ./NotifyPropertyChanged.Verifier.sln --configuration Release

ci.ps1

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
./build.ps1
2+
./test.ps1

test.ps1

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Remove-Item ./CoverageResults -Force -Recurse -ErrorAction SilentlyContinue
2+
dotnet test ./NotifyPropertyChanged.Verifier.Tests/NotifyPropertyChanged.Verifier.Tests.csproj --configuration Release /p:CollectCoverage=true /p:Exclude="[ViewModels]*" /p:CoverletOutput="../CoverageResults/"
3+
dotnet test ./NotifyPropertyChanged.Verifier.AdditionalTests/NotifyPropertyChanged.Verifier.AdditionalTests.csproj --configuration Release /p:CollectCoverage=true /p:Exclude="[ViewModels]*" /p:CoverletOutput="../CoverageResults/" /p:MergeWith="../CoverageResults/coverage.json" /p:CoverletOutputFormat=opencover /p:Threshold=94.44

0 commit comments

Comments
 (0)