Skip to content

Bump mdoc to 5.8.5 #584

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 24 commits into from
Oct 19, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
749ae75
Updated CppWinRt formatter for enum (#561)
jeffreyxrh Jun 2, 2021
48abb77
mdoc should not use TypeMap for parameter and return elements (#558)
Jun 4, 2021
7b6fce3
Update nuget feedCredential name
anmeng10101 Jun 24, 2021
7d98583
Merge pull request #564 from mono/feedCredential
anmeng10101 Jun 28, 2021
f85bfe2
update ECMAUrlParser to support nullable (?)
TianqiZhang Jun 30, 2021
a38e403
indent
TianqiZhang Jun 30, 2021
9163ef7
support array scenario
TianqiZhang Jul 2, 2021
d6971df
fix most errors in ReachabilityTest
TianqiZhang Jul 3, 2021
a56fc85
try another way
TianqiZhang Jul 5, 2021
f255973
fix issues
TianqiZhang Jul 5, 2021
6f7cbac
add instructions about how to run jay
TianqiZhang Jul 5, 2021
d22bb30
fix indent
TianqiZhang Jul 5, 2021
a35e227
add lgtm and sdl tool (#571)
daxianji007 Aug 11, 2021
eb27051
Update azure-pipelines.yml for Azure Pipelines
daxianji007 Aug 27, 2021
dc240a1
Update azure-pipelines.yml for Azure Pipelines
daxianji007 Aug 27, 2021
71e3f16
Merge pull request #572 Add Component Governance task in build
TianqiZhang Aug 27, 2021
e2a59f2
Update frameworksbootstrapper.cs
jeffreyxrh Aug 27, 2021
8090c24
Merge pull request #573: Automatically include xmls to import for boo…
TianqiZhang Sep 7, 2021
e09a476
Merge pull request #565: update ECMAUrlParser to support nullable (?)
TianqiZhang Sep 7, 2021
3f9c168
Added a debug message when unable to resolve a type (#574)
jeffreyxrh Sep 7, 2021
853953c
Added support for Microsoft.UI.Xaml dependency property (#563)
jeffreyxrh Sep 14, 2021
fd9de01
bump to 5.8.4 (#575)
huangmin-ms Sep 22, 2021
d85a540
Fixed issues of attached entities and the unique case of TargetProper…
JeffInChrist Oct 8, 2021
9d0792f
Bump to 5.8.5 (#579)
huangmin-ms Oct 18, 2021
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
57 changes: 57 additions & 0 deletions azure-pipelines.lgtm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# ASP.NET Core (.NET Framework)
# Build and test ASP.NET Core projects targeting the full .NET Framework.
# Add steps that publish symbols, save build artifacts, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core

pr: none
trigger: none
schedules:
- cron: "0 0 * * *"
displayName: Daily midnight build
branches:
include:
- main

pool:
vmImage: 'windows-latest'

variables:
- name: LGTM.SnapshotIdentifiers
value: Build=Full
- name: LGTM.SnapshotMetadata
value: Owner=MDoc
- name: LGTM.UploadSnapshot
value: true
- name: Semmle.SkipAnalysis
value: true
- name: buildConfiguration
value: Release

steps:
- task: NuGetToolInstaller@1
displayName: Install NuGet Tool

- task: NuGetCommand@2
inputs:
command: 'restore'
restoreSolution: '**/*.sln'
feedsToUse: 'config'

- task: Semmle@0
displayName: Security - LGTM
env:
SYSTEM_ACCESSTOKEN: $(System.AccessToken)
inputs:
toolVersion: 'LatestPreRelease'
sourceCodeDirectory: '$(Build.SourcesDirectory)'
language: 'csharp'
cleanupBuildCommands: |
dotnet clean mdoc/mdoc.csproj --configuration $(buildConfiguration)
dotnet clean monodoc/monodoc.csproj --configuration $(buildConfiguration)
buildCommands: |
dotnet build mdoc/mdoc.csproj --configuration $(buildConfiguration)
dotnet build monodoc/monodoc.csproj --configuration $(buildConfiguration)
querySuite: 'Required'
timeout: '7200'
ram: '16384'
addProjectDirToScanningExclusionList: true
Loading