tools: use dotnet build in VS2015 CI

This commit is contained in:
Konstantinos Karakostas
2022-11-20 15:10:50 +02:00
parent 2945971ba9
commit 2770eca1bf
6 changed files with 63 additions and 34 deletions
+12
View File
@@ -0,0 +1,12 @@
param (
[Parameter(Mandatory)][string]$Path,
[Parameter(Mandatory)][string]$Match
)
echo "Removing projects that match $($Match) from $($Path)"
Get-Content $Path -Delimiter 'EndProject' |
Where-Object {$_ -notlike $Match} |
Set-Content "$($Path).new"
Move-Item -Path "$($Path).new" -Destination $Path -Force