Skip to content
Open
Show file tree
Hide file tree
Changes from 14 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .markdownlint.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"MD033": false,
"MD056": true,
"MD059": false,
"MD060" : { "style": "any" }
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is OK with any. It's building with that on the main branch. It does help to have a coherent table style.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It was not properly building with any, I had to set it to false.

"MD060": false
}
23 changes: 21 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,8 @@ steps:

git clone https://github.com/nanoframework/Windows.Storage.git --depth 100 -b main libs/Windows.Storage

git clone https://github.com/nanoframework/Windows.Storage.Streams.git --depth 100 -b main libs/Windows.Storage.Streams
git clone https://github.com/nanoframework/Windows.Storage.Streams.git --depth 100 -b main libs/Windows.Storage.Streams

git clone https://github.com/nanoframework/System.Device.Adc.git --depth 100 -b main libs/System.Device.Adc

git clone https://github.com/nanoframework/System.Device.WiFi.git -b main libs/System.Device.WiFi
Expand Down Expand Up @@ -613,6 +613,25 @@ steps:
msbuildArchitecture: 'x64'
maximumCpuCount: true

# Clean up samples folder from IoT.Device before building
- task: PowerShell@2
displayName: Remove samples folder from IoT.Device
condition: >-
and(
succeeded(),
or(
eq(variables['BUILD_ALL'], 'true'),
contains(variables['BuildOptions.COMMIT_MESSAGE'], '***BUILD_ALL***'),
eq(variables['BuildOptions.BUILD_ALL'], 'true')
)
)
inputs:
targetType: 'inline'
script: |
if (Test-Path "nanoFramework.IoT.Device\devices\samples") {
Remove-Item -Recurse -Force nanoFramework.IoT.Device\devices\samples
}

# This should build all the bindings in nanoFramework.IoT.Device in the devices directory
- task: PowerShell@2
displayName: Build all from nanoFramework.IoT.Device
Expand Down
3 changes: 2 additions & 1 deletion docfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@
"**/PropertyChanged/**",
"**/TestAppv5*/**",
"**/TestMqtt*/**",
"**/Microsoft.ApplicationInsights.*/**"
"**/Microsoft.ApplicationInsights.*/**",
"**/nanoFramework.CoreLibrary.Benchmarks/**"
]
}
],
Expand Down