Skip to content

Commit d499d22

Browse files
authored
Merge pull request #584 from mono/develop
Bump mdoc to 5.8.5
2 parents eb934bc + 9d0792f commit d499d22

62 files changed

Lines changed: 1505 additions & 524 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

azure-pipelines.lgtm.yml

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
# ASP.NET Core (.NET Framework)
2+
# Build and test ASP.NET Core projects targeting the full .NET Framework.
3+
# Add steps that publish symbols, save build artifacts, and more:
4+
# https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core
5+
6+
pr: none
7+
trigger: none
8+
schedules:
9+
- cron: "0 0 * * *"
10+
displayName: Daily midnight build
11+
branches:
12+
include:
13+
- main
14+
15+
pool:
16+
vmImage: 'windows-latest'
17+
18+
variables:
19+
- name: LGTM.SnapshotIdentifiers
20+
value: Build=Full
21+
- name: LGTM.SnapshotMetadata
22+
value: Owner=MDoc
23+
- name: LGTM.UploadSnapshot
24+
value: true
25+
- name: Semmle.SkipAnalysis
26+
value: true
27+
- name: buildConfiguration
28+
value: Release
29+
30+
steps:
31+
- task: NuGetToolInstaller@1
32+
displayName: Install NuGet Tool
33+
34+
- task: NuGetCommand@2
35+
inputs:
36+
command: 'restore'
37+
restoreSolution: '**/*.sln'
38+
feedsToUse: 'config'
39+
40+
- task: Semmle@0
41+
displayName: Security - LGTM
42+
env:
43+
SYSTEM_ACCESSTOKEN: $(System.AccessToken)
44+
inputs:
45+
toolVersion: 'LatestPreRelease'
46+
sourceCodeDirectory: '$(Build.SourcesDirectory)'
47+
language: 'csharp'
48+
cleanupBuildCommands: |
49+
dotnet clean mdoc/mdoc.csproj --configuration $(buildConfiguration)
50+
dotnet clean monodoc/monodoc.csproj --configuration $(buildConfiguration)
51+
buildCommands: |
52+
dotnet build mdoc/mdoc.csproj --configuration $(buildConfiguration)
53+
dotnet build monodoc/monodoc.csproj --configuration $(buildConfiguration)
54+
querySuite: 'Required'
55+
timeout: '7200'
56+
ram: '16384'
57+
addProjectDirToScanningExclusionList: true

0 commit comments

Comments
 (0)