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 38
38
foreach ($module in $modules) {
39
39
if ($module.FullName -match $powerShellDropboxProviderModuleName){
40
40
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 "
42
42
dotnet build $solutionPath
43
43
break
44
44
}
Original file line number Diff line number Diff line change 30
30
run : |
31
31
$items = Get-ChildItem -Include *.sln -Recurse
32
32
foreach ($item in $items){
33
+ if ($item -notmatch 'PSDropBin'){
33
34
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'){
41
+ dotnet build $item
42
+ }
34
43
}
35
44
- name : DotNet Test
36
45
run : |
Original file line number Diff line number Diff line change 25
25
{D2C43456-1BFA-4539-9F4A-C08B3D85B327} .Release| Any CPU .ActiveCfg = Release| Any CPU
26
26
{D2C43456-1BFA-4539-9F4A-C08B3D85B327} .Release| Any CPU .Build .0 = Release| Any CPU
27
27
{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
28
29
{3AE70642-216F-4669-84FF-C4C003082CBC} .Release| Any CPU .ActiveCfg = Release| Any CPU
29
30
{3AE70642-216F-4669-84FF-C4C003082CBC} .Release| Any CPU .Build .0 = Release| Any CPU
30
31
EndGlobalSection
You can’t perform that action at this time.
0 commit comments