File tree Expand file tree Collapse file tree 3 files changed +11
-1
lines changed
Modules/IntelliTect.PSDropbin Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 3838 foreach ($module in $modules) {
3939 if ($module.FullName -match $powerShellDropboxProviderModuleName){
4040 Write-Host "$($powerShellDropboxProviderModuleName) module was changed. Building latest version..."
41- $solutionPath = Join-Path $module.FullName "$($powerShellDropboxProviderModuleName).sln "
41+ $solutionPath = Join-Path $module.FullName "IntelliTect. $($powerShellDropboxProviderModuleName)" "IntelliTect.$($powerShellDropboxProviderModuleName).csproj "
4242 dotnet build $solutionPath
4343 break
4444 }
Original file line number Diff line number Diff line change 3030 run : |
3131 $items = Get-ChildItem -Include *.sln -Recurse
3232 foreach ($item in $items){
33+ if ($item -notmatch 'PSDropBin'){
3334 dotnet build $item
35+ }
36+ }
37+ #build PSDropBin.csproj only (not entire solution as test proj won't build)
38+ $items = Get-ChildItem -Include *.csproj -Recurse
39+ foreach ($item in $items){
40+ if ($item -match 'PSDropBin' && $item -notmatch 'Tests'){
41+ dotnet build $item
42+ }
3443 }
3544 - name : DotNet Test
3645 run : |
Original file line number Diff line number Diff line change 2525 {D2C43456-1BFA-4539-9F4A-C08B3D85B327} .Release| Any CPU .ActiveCfg = Release| Any CPU
2626 {D2C43456-1BFA-4539-9F4A-C08B3D85B327} .Release| Any CPU .Build .0 = Release| Any CPU
2727 {3AE70642-216F-4669-84FF-C4C003082CBC} .Debug| Any CPU .ActiveCfg = Debug| Any CPU
28+ {3AE70642-216F-4669-84FF-C4C003082CBC} .Debug| Any CPU .Build .0 = Debug| Any CPU
2829 {3AE70642-216F-4669-84FF-C4C003082CBC} .Release| Any CPU .ActiveCfg = Release| Any CPU
2930 {3AE70642-216F-4669-84FF-C4C003082CBC} .Release| Any CPU .Build .0 = Release| Any CPU
3031 EndGlobalSection
You can’t perform that action at this time.
0 commit comments