-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1371 from microsoft/dev/andarno/libtemplateUpdate
Merge latest Library.Template
- Loading branch information
Showing
5 changed files
with
52 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: nuget | ||
directory: / | ||
schedule: | ||
interval: weekly | ||
groups: | ||
nerdbank-gitversioning: | ||
patterns: | ||
- nbgv | ||
- nerdbank.gitversioning | ||
xunit: | ||
patterns: | ||
- 'xunit*' | ||
- package-ecosystem: dotnet-sdk | ||
directory: / | ||
schedule: | ||
interval: monthly | ||
ignore: | ||
- dependency-name: Microsoft.CodeAnalysis* # We intentionally target older VS versions. | ||
- dependency-name: Microsoft.Bcl.AsyncInterfaces # We want to match the minimum target .NET runtime | ||
- dependency-name: System.Collections.Immutable # We want to match the minimum target .NET runtime |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: 📃 Docfx Validate | ||
|
||
on: | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
name: 📚 docfx | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 # avoid shallow clone so nbgv can do its work. | ||
- name: ⚙ Install prerequisites | ||
run: | | ||
./init.ps1 -UpgradePrerequisites | ||
dotnet --info | ||
shell: pwsh | ||
- name: 📚 Verify docfx build | ||
run: dotnet docfx docfx/docfx.json --warningsAsErrors --disableGitFeatures | ||
if: runner.os == 'Linux' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters