mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-04-20 21:22:50 +08:00
7 lines
250 B
PowerShell
7 lines
250 B
PowerShell
$files = $( foreach ($line in $( git diff head origin/dev --stat-width 200 ) | findstr '\|')
|
|
{
|
|
$line.split('\|')[0].trim()
|
|
} ) -join ';'
|
|
echo $files
|
|
dotnet jb cleanupcode --no-build --include = "$files" ./NetAdmin.sln
|
|
dotnet script ./PushSign.csx |