61 Commits

Author SHA1 Message Date
Rich Lander
73d25355b9 Add verify-releases and update-release-graph skills (#10332)
* Add update-release-graph skill

Documents the workflow for regenerating the HAL+JSON release
information graph using the VersionIndex, ShipIndex, and LlmsIndex
generators from distroessed. Covers source data conventions,
graph topology, and validation steps.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Add verify-releases skill for release link validation

New Copilot skill that validates .NET release data using dotnet-release
v0.5.0+ verify releases command. Checks URL liveness, SHA512 file hashes,
CDN latest.version files, and aka.ms redirect targets.

Includes:
- SKILL.md with full process documentation, commands, timing expectations,
  troubleshooting, and report template
- Reference example with actual verification output from all supported
  versions (8.0, 9.0, 10.0, 11.0)

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Add cve-enricher skill for CVE generation and enrichment

Describes how to use the dotnet-cve-enricher tool to synthesize, validate,
and enrich cve.json files in the release-notes timeline directory.

Covers:
- Synthesizing CVE records from releases.json + MSRC data
- Validating existing cve.json for data integrity
- Updating lookup dictionaries and CVSS/CNA data
- Agent usage with --json output mode

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Update skill install instructions for dotnet-release 1.1.0

Remove --version "0.*" workaround from all skill prerequisites now
that 1.1.0 is the latest version on the GitHub Packages feed.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Remove cve-enricher skill

The cve-enricher tool isn't ready yet. Remove the skill to keep
the PR focused on verify-releases and update-release-graph.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

---------

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-03-31 18:13:02 -07:00
Rich Lander
9c40cd953f Restore Windows Server 2012 to supported OS matrix (#10331)
* Restore Windows Server 2012 to supported OS matrix

PR #10313 accidentally moved Windows Server 2012 to unsupported
for .NET 8.0, 9.0, and 10.0. Windows Server 2012 (and 2012 R2) are
still supported via Extended Security Updates (ESU).

This restores 2012 to supported-versions and removes the
unsupported-versions entries for both Windows Server and
Windows Server Core across all active .NET versions.

Fixes #10330

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Clarify last-updated is required for every JSON change

Update the update-supported-os skill to emphasize that the
last-updated field must be updated in every modified JSON file,
no matter how small the change.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Regenerate supported-os.md with correct support phase

Use updated dotnet-release tool that reads releases-index.json
to populate support phase (Active/Preview) and release type
(LTS/STS) instead of showing 'Unknown'.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Regenerate supported-os.md with release status from releases.json

Support phase and release type are now sourced from releases.json
instead of defaulting to Unknown.

* Fix support phase casing in generated markdown

Regenerated with updated dotnet-release tool (0.7.0) that uses
ToDisplayName() for proper casing (Active, LTS, STS vs lowercase).

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

---------

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-03-30 22:17:09 -07:00
Rich Lander
d531952061 Use full display names instead of acronyms in distro JSON files (#10324)
Replace RHEL with Red Hat Enterprise Linux and SLES with SUSE Linux
Enterprise Server in all distro JSON files (10.0 and 11.0) including
index.json entries and per-release names.

Update the update-distro-packages skill with display name rules to
prevent acronyms from being used in the future.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-03-25 09:22:19 -07:00
Rich Lander
3d1f57d5c4 Add per-distro package files and update-distro-packages skill for 11.0 (#10322)
* Remove 11.0 os-packages files (replaced by distros/ directory)

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Add 11.0 distros/ directory with per-distro package files

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Add update-distro-packages skill

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Add dotnet-dependencies.md generation step to skill

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Add dotnet-dependencies.md and update index.json to dictionary format

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Add install/update instructions for dotnet-release tool in skill

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Add dotnet packages population flow to skill

Adds instructions for querying pkgs.org and mapping results into
dotnet_packages/dotnet_packages_other fields in per-distro files.
Skill now asks user for PKGS_ORG_TOKEN when package updates are needed.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Include preview distro versions and rolling channels in skill

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Add known alternative feed registration commands to skill

Document exact install_command values for Ubuntu backports PPA and
Microsoft PMC. Clarify that install_command is required for every
dotnet_packages_other entry — it tells users how to register the
feed before installing packages.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Add distro package list fallback to skill docs

Document querying distro package lists directly (e.g.
packages.ubuntu.com) as a fallback when pkgs.org doesn't have
data for newly released distro versions.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Add Fedora Bodhi fallback to skill docs

Document querying Fedora's Bodhi update system and source RPM
specs to check package availability for new Fedora releases
when pkgs.org doesn't have data yet.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Add dotnet-packages generate command to skill

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

---------

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-03-25 08:49:12 -07:00
Rich Lander
e426829256 Update .NET 11 supported OS and improve skill preview rules (#10321)
* Add preview release rules to update-supported-os skill

Add two rules for pre-GA .NET releases:
- Rule 1: Remove EOL versions from supported (don't track as unsupported)
- Rule 2: Only add versions supported at GA + 6 months

Also document the .NET GA schedule (always November, even=LTS, odd=STS)
and add 11.0 to the active versions list.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Add Windows ESU rule to supported-os skill and update ESU display text

- Add exception in update-supported-os skill: Windows versions covered by
  Extended Security Updates (ESU) are not removed automatically and are
  updated manually instead.
- Update ESU note text in supported-os.json for 8.0, 9.0, 10.0, and 11.0
  to include the acronym: 'Extended Security Updates (ESU)'.
- Regenerate supported-os.md for all four versions.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Use scare quotes for 'supported' in WARNING items wording

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Account for ESU warnings in validation step

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Update .NET 11 supported OS matrix

- Remove Android 13 (EOL 2026-03-02)
- Remove SLES 15.6 (EOL 2025-12-31)
- Remove Windows 11-23h2-w (EOL 2025-11-11)
- Add Alpine 3.23 (EOL 2027-11-01)
- Add iPadOS 17 (active)
- Add Windows 11-26h1-e (EOL 2029-03-13)
- Add Windows 11-26h1-w (EOL 2028-03-14)
- Skip Windows Server 2012/2012 R2 (ESU-covered)

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Add Rule 3 prereqs image check with jq query examples

- Require published container images at dotnet-buildtools-prereqs-docker
  before adding preview distro versions
- Document image-info JSON, MCR tags list, and gh search code queries
- Update examples with Fedora 44 and Ubuntu 26.04 scenarios

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Update .NET 11 supported OS matrix

- Add Ubuntu 26.04 (LTS, GA ~April 2026, container images available)
- Remove Debian 12 (EOL June 2026), Fedora 42 (EOL May 2026),
  and openSUSE Leap 15.6 (EOL April 2026) — all EOL before GA

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Update supported-os skill: handle CAUTION items for pre-GA releases

Add GA vs pre-GA guidance for CAUTION (approaching EOL) items,
matching the pattern used for WARNING and IMPORTANT items. For
pre-GA releases, versions that will be EOL before GA should be
removed proactively rather than treated as informational.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Restructure supported-os skill for coherent flow

- Simplify callout table to meanings only (no action guidance)
- Split step 2 into clear GA and pre-GA decision paths
- Rule 1: cover both WARNING and CAUTION items, add ESU expiry check
- Rule 2: cover both adding and retaining versions
- Step 3: distinguish GA vs pre-GA EOL handling
- Step 7: list all acceptable remaining verify items
- Add CAUTION examples to preview rules section

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Add markdownlint as a required skill prerequisite

Ensures the agent installs markdownlint-cli before starting,
so step 5 (lint validation) cannot be skipped.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

---------

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-03-23 13:44:54 -07:00
Rich Lander
edc5864ee3 Add update-supported-os and update-os-packages Copilot skills (#10314)
* Add update-supported-os Copilot skill

Adds a skill that guides agents through auditing and updating
supported-os.json/md files using the dotnet-release tool. Includes
verify-output-example.md as a reference for interpreting reports.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Update prerequisites with GitHub Packages install instructions

GitHub Packages requires authentication even for public repos. Added
proper dotnet tool install command with --add-source and authentication
guidance for both GitHub Actions and local use.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Add update-os-packages Copilot skill

Guides agents through auditing and updating os-packages.json/md files
using the dotnet-release tool. Includes verify-output-example.md as a
reference, and documents JSON structure, common edits, and the
relationship with supported-os.json.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Update os-packages skill: broader scope than supported-os

Clarify that os-packages.json includes pre-release versions of supported
distros and permanent unstable channels (Alpine edge, Debian sid). The
package list is informational and does not imply official support.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Add query-distro-packages Copilot skill

Guides agents through querying .NET package availability across Linux
distributions using dotnet-release's pkgs.org integration. Covers 16
distros, multiple feed types, and generates distro-packages.json.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Revert "Add query-distro-packages Copilot skill"

This reverts commit 5540d86142.

---------

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-03-17 13:22:45 -07:00
James Montemagno
e2b5fe4451 .NET 11 Preview 2 release notes (#10266) 2026-03-10 11:40:05 -07:00
Jeff Handley
d83dc0af81 RunApiDiff script and documentation improvements (#10241)
---------

Co-authored-by: Eric StJohn <ericstj@microsoft.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com>
Co-authored-by: jeffhandley <1031940+jeffhandley@users.noreply.github.com>
2026-02-20 22:05:24 -08:00
James Montemagno
2f6d5687ac .NET 11 Preview 1 Release Notes (#10221)
* Add release notes for .NET 11 Preview 1 across various components

* Update sdk.md for Preview 1 (#10230)

* Update sdk.md for Preview 1

* Update release notes for .NET 11 Preview 1 SDK

Expanded release notes for .NET 11 Preview 1 SDK features, including CLI command improvements, new analyzers, and other changes.

* add msubild release notes too

* Update release-notes/11.0/preview/preview1/sdk.md

Co-authored-by: Youssef Victor <youssefvictor00@gmail.com>

* Add `dotnet run` mobile gifs

* coorect a markdown linting error

* Fix image paths in SDK release notes

Update release-notes/11.0/preview/preview1/sdk.md to correct GIF links by removing the redundant 'dotnet-11/' prefix from the Android and iOS media paths, ensuring the images resolve correctly.

---------

Co-authored-by: Chet Husk <baronfel@users.noreply.github.com>
Co-authored-by: Chet Husk <chusk3@gmail.com>
Co-authored-by: Youssef Victor <youssefvictor00@gmail.com>
Co-authored-by: Jonathan Peppers <jonathan.peppers@microsoft.com>

* Update visualbasic.md for Preview 1 (#10231)

* Update visualbasic.md for Preview 1

* No VB changes.

---------

Co-authored-by: Bill Wagner <wiwagn@microsoft.com>

* Update csharp.md for Preview 1 (#10224)

* Update csharp.md for Preview 1

* first draft for C#

* 2nd draft of release notes

---------

Co-authored-by: Bill Wagner <wiwagn@microsoft.com>

* Update efcore.md for Preview 1 (#10226)

* Update efcore.md for Preview 1

* EF Core 11 preview.1 docs

* update urls

---------

Co-authored-by: Shay Rojansky <roji@roji.org>

* Update libraries.md for Preview 1 (#10228)

* Update libraries.md for Preview 1

* Revise release notes for .NET 11 Preview 1 libraries

Updated release notes for .NET 11 Preview 1 libraries, summarizing new features, improvements, and notable changes across various feature areas.

* Revise release notes for .NET 11 Libraries Preview 1

Updated release notes for .NET 11 Libraries Preview 1 to enhance clarity and detail regarding new features, performance improvements, and notable changes.

* Update title for .NET 11 Libraries release notes

* Revise introduction for clarity in libraries.md

* Fix formatting in libraries.md for LoopbackServer

* Revise libraries.md for .NET 11 Preview 1 updates (v2)

Update release notes for .NET 11 Preview 1 with new features, improvements, and notable changes across various libraries.

* Reorganize .NET 11 Preview 1 libraries section

* Update libraries.md

* Add more libraries features based on the .NET 10.0 GA to .NET 11 Preview 1 API Diff

* Add Performance Improvements section to libraries.md

---------

Co-authored-by: Art Leonard <artl93@users.noreply.github.com>
Co-authored-by: Jeff Handley <jeffhandley@users.noreply.github.com>
Co-authored-by: artl <artl@microsoft.com>

* Update aspnetcore.md for .NET 11 Preview 1 (#10222)

* Update fsharp.md for Preview 1 (#10227)

* Update fsharp.md for Preview 1

* Revise F# release notes for .NET 11 Preview 1

Updated F# release notes for .NET 11 Preview 1, including compiler performance improvements, new features, breaking changes, and bug fixes.

* Fix markdown lint errors and broken link in fsharp.md

- Fix MD051: anchor #performance → #compiler-performance
- Fix MD051: anchor fragment missing hyphen in computation-expression-heavy
- Fix MD012: remove trailing double blank line
- Fix dead link: replace 404 fsharp-compiler-docs URL with learn.microsoft.com

* Fix F# release notes link to About.html

---------

Co-authored-by: Tomas Grosup <tomasgrosup@microsoft.com>
Co-authored-by: Tomas Grosup <Tomas.Grosup@gmail.com>

* Add libraries release-notes-generator Copilot skill (#10244)

* WIP - Add release notes generator and related documentation

* Update default output path to release-notes/11.0/preview/preview1/libraries.md

* Rename skill from release-notes-generator to libraries-release-notes

* Add API Diff analysis as Step 1 of the workflow

* Add backing issue research and Copilot comment fetching to the workflow

* Add de-duplication against previous release notes

* Update date range input to use Code Complete date guidance

* Refine discovery and editorial instructions

* Recognize multi-faceted PRs

* Restructure skill into data/verify/author phases with independent steps

* Improve libraries-release-notes skill to reduce approval prompts

- Use SQL tool for intermediate data instead of writing .cache/ files
- Remove disk I/O from gh CLI fallback instructions
- Allow incremental input collection with progress tracking
- Prohibit running linters, formatters, or validators on output

* Use label-scoped searches to avoid large MCP responses

- Add 'Avoid large MCP responses' execution guideline explaining that
  large search payloads get saved to temp files, requiring shell commands
  (and approval prompts) to read back.
- Rewrite PR collection strategy to search per area label with small
  perPage values instead of fetching all merged PRs at once.
- Prescribe view tool as fallback for any temp files instead of
  PowerShell commands.

* Undo .gitignore cache addition for the libraries-release-notes skill

* Refactor SKILL.md: extract inputs to reference file, relocate guidelines, remove workflow.md

---------

Co-authored-by: Jeff Handley <jeffhandley@users.noreply.github.com>

* Update wpf.md for Preview 1 (#10233)

* Update wpf.md for Preview 1

* Added WPF Updates

---------

Co-authored-by: Himanshi Goyal <himgoyal@microsoft.com>

* Update dotnetmaui.md for Preview 1 (#10225)

* Update dotnetmaui.md for Preview 1

* Update .NET MAUI release notes for Preview 1

Expanded release notes for .NET MAUI in Preview 1, detailing new features such as CoreCLR by default, enhancements to 'dotnet run', and XAML source generation.

* Add files via upload

* Revise .NET MAUI Preview 1 release notes

Updated the release notes for .NET MAUI in Preview 1 to include new features and contributor acknowledgments.

---------

Co-authored-by: David Ortinau <david.ortinau@microsoft.com>

* Update runtime.md for Preview 1 (#10229)

* Update runtime.md for Preview 1

* update

* Update release notes for .NET 11 Preview 1, including content adjustments and removal of outdated references

* Fix formatting issues in release notes for .NET 11 Preview 1

* Fix formatting issue in known issues section of release notes for .NET 11 Preview 1

* Add .github directory to markdownlintignore for improved linting control

* Add runtime.md

* Clean up runtime-async

* Include .github/skills in exclude for super-linter

* markdownlint fix

* Fix ASP.NET Core roadmap link for .NET 11

* Update release-notes/11.0/preview/preview1/runtime.md

Co-authored-by: Jan Kotas <jkotas@microsoft.com>

* Fix EF learn links

---------

Co-authored-by: Chet Husk <baronfel@users.noreply.github.com>
Co-authored-by: Chet Husk <chusk3@gmail.com>
Co-authored-by: Youssef Victor <youssefvictor00@gmail.com>
Co-authored-by: Jonathan Peppers <jonathan.peppers@microsoft.com>
Co-authored-by: Bill Wagner <wiwagn@microsoft.com>
Co-authored-by: Shay Rojansky <roji@roji.org>
Co-authored-by: Art Leonard <artl93@users.noreply.github.com>
Co-authored-by: Jeff Handley <jeffhandley@users.noreply.github.com>
Co-authored-by: artl <artl@microsoft.com>
Co-authored-by: Tomas Grosup <tomasgrosup@microsoft.com>
Co-authored-by: Tomas Grosup <Tomas.Grosup@gmail.com>
Co-authored-by: Himanshi Goyal <himgoyal@microsoft.com>
Co-authored-by: David Ortinau <david.ortinau@microsoft.com>
Co-authored-by: Rich Lander <2608468+richlander@users.noreply.github.com>
Co-authored-by: Andy Gocke <andy@commentout.net>
Co-authored-by: Rahul Bhandari <rbhanda@microsoft.com>
Co-authored-by: Jon Galloway <jongalloway@gmail.com>
Co-authored-by: Daniel Roth <daroth@microsoft.com>
Co-authored-by: Jan Kotas <jkotas@microsoft.com>
2026-02-10 14:33:02 -08:00
Copilot
252768fb00 Disable JSON_PRETTIER validation in super-linter (#10186)
* Initial plan

* Disable JSON_PRETTIER validation in super-linter

Users experiencing JSON_PRETTIER errors during CI runs. Similar to how
VALIDATE_MARKDOWN_PRETTIER is already disabled, this disables JSON prettier
formatting checks while keeping JSON syntax validation active.

This allows contributors to focus on documentation content rather than
strict formatting requirements. JSON syntax validation remains active to
catch actual errors.

Fixes issues seen in:
- https://github.com/dotnet/core/actions/runs/20015768377
- https://github.com/dotnet/core/actions/runs/19512527950
- https://github.com/dotnet/core/actions/runs/19270296751

Co-authored-by: jongalloway <68539+jongalloway@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: jongalloway <68539+jongalloway@users.noreply.github.com>
2025-12-07 21:33:41 -08:00
Jon Galloway
6e9706ec0b Add .NET 10.0.0 release notes (#10145)
* Add .NET 10.0.0 release notes and update markdown link-check config

- Add complete release notes for .NET 10.0.0 (release-notes/10.0/10.0.0/):
  README.md, 10.0.0.md and per-area pages (aspnetcore, csharp, dotnetmaui,
  efcoreanddata, fsharp, libraries, runtime, sdk, winforms, wpf)
- Update .github/workflows/markdown-link-check-config.json ignore patterns/formatting

* Delete release-notes/10.0/10.0.0/10.0.0.md

* Add F# 10 documentation link to release notes for .NET 10

* Update README.md for .NET 10 release notes

---------

Co-authored-by: victorisr <victorisr@microsoft.com>
2025-11-11 07:25:29 -08:00
Jon Galloway
32e794cf88 Add release notes for .NET 10 RC 2 across various components (#10112)
* Add release notes for .NET 10 RC 2 across various components

* Clarify scaffold replacement instructions for RC2 PR generation

* chore: clean markdownlint issues in preview/RC automation prompt files

* [RC2] F# release notes (#10095)

* Update fsharp.md for RC 2 scaffold

* Update release-notes/10.0/preview/rc2/fsharp.md

---------

Co-authored-by: Tomas Grosup <tomasgrosup@microsoft.com>

* [RC2] WPF release notes (#10101)

* Add RC2 scaffold to WPF release notes

* Nothing for WPF

* Adjust wording with WinForms and WPF to match

---------

Co-authored-by: Andy (Steve) De George <67293991+adegeo@users.noreply.github.com>

* [RC2] ASP.NET Core release notes (#10089)

* [RC2] EF Core release notes (#10094)

* Update efcore.md for RC 2 scaffold

* EF Core release notes for rc.2

---------

Co-authored-by: Shay Rojansky <roji@roji.org>

* Update libraries.md for RC 2 scaffold (#10096)

* Update runtime.md for RC 2 scaffold (#10097)

* [RC2] SDK release notes (#10098)

* Add RC2 scaffold to SDK release notes and normalize list markers

* Add notes for .NET TaskHost

* Fix linting

---------

Co-authored-by: Chet Husk <chusk3@gmail.com>

* [RC2] .NET MAUI release notes (#10093)

* Update dotnetmaui.md for RC 2 scaffold

* Update .NET MAUI release notes for RC 2

This update includes new features and improvements for .NET MAUI in the .NET 10 RC 2 release, such as microphone permission handling, SafeAreaEdges support, and XAML source generation enhancements.

* Update release-notes/10.0/preview/rc2/dotnetmaui.md

Co-authored-by: Rolf Bjarne Kvinge <rolf@xamarin.com>

* Update dotnetmaui.md with Android API 36.1 details

Added details about Android API 36.1 bindings, usage instructions, and installation steps.

---------

Co-authored-by: David Ortinau <david.ortinau@microsoft.com>
Co-authored-by: Rolf Bjarne Kvinge <rolf@xamarin.com>
Co-authored-by: Jonathan Peppers <jonathan.peppers@microsoft.com>

* Update release-notes/10.0/preview/rc2/README.md

---------

Co-authored-by: Tomas Grosup <tomasgrosup@microsoft.com>
Co-authored-by: Andy (Steve) De George <67293991+adegeo@users.noreply.github.com>
Co-authored-by: Shay Rojansky <roji@roji.org>
Co-authored-by: Chet Husk <chusk3@gmail.com>
Co-authored-by: David Ortinau <david.ortinau@microsoft.com>
Co-authored-by: Rolf Bjarne Kvinge <rolf@xamarin.com>
Co-authored-by: Jonathan Peppers <jonathan.peppers@microsoft.com>
Co-authored-by: James Montemagno <james.montemagno@gmail.com>
2025-10-14 23:25:15 +01:00
Jon Galloway
f827ae7908 Add release notes for .NET 10 RC 1 across various components (#10061)
* Add RC1 release notes template files

* Add missing aspnetcore.md template file

* Update RC1 release notes to proper template format and update prompt file

* Add release notes for .NET 10 RC 1 across various components

* Fix markdownlint issues in createprs-for-preview.prompt.md

* Update createprs-for-preview prompt with detailed instructions for handling "TBD" placeholders and adding a master consolidation PR process

* Servicing Release markdowns and json Updates for 10.0 RC1

* Added ./rc1/README.md

* Fix formatting of version-aspnetcoremodule entries and ensure newline at end of file in release notes JSON files

* Update csharp for RC 1 (#10051)

* Update csharp for RC 1

* Update C# release notes for .NET 10 RC 1 (no notable features)

* Update wpf for RC 1 (#10060)

* Update wpf for RC 1

* Update WPF release notes for .NET 10 RC 1 to clarify absence of new features

* Update containers for RC 1 (#10050)

* Update containers for RC 1

* Clarify that the .NET 10 RC 1 release does not include new Container image features in the release notes.

* Update runtime for RC 1 (#10056)

* Update runtime for RC 1

* Update runtime release notes for .NET 10 RC 1

* Apply suggestions from code review

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Revise SDK release notes for .NET 10 RC 1 to emphasize quality improvements and encourage developer feedback

* Update sdk for RC 1 (#10057)

* Clarify that .NET 10 RC 1 does not introduce new Visual Basic features and direct users to relevant documentation

* Update aspnetcore for RC 1 (#10049)

* Update fsharp for RC 1 (#10054)

* Update fsharp for RC 1

* Fix fsharp: replace TBD with content

* Update F# release notes for .NET 10 RC 1 to clarify absence of new features

---------

Co-authored-by: James Montemagno <james.montemagno@gmail.com>

* Update dotnetmaui for RC 1 (#10052)

* Update dotnetmaui for RC 1

* Fix duplicate content in dotnetmaui

* look! We have release notes

added maui and android. Need yet macios and contributors list.

* Apply suggestions from code review

* Update release-notes/10.0/preview/rc1/dotnetmaui.md

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Update release-notes/10.0/preview/rc1/dotnetmaui.md

Co-authored-by: Jon Galloway <jongalloway@gmail.com>

* Update release-notes/10.0/preview/rc1/dotnetmaui.md

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* add images

* add bullet for experimental

* update lint

---------

Co-authored-by: David Ortinau <david.ortinau@microsoft.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: James Montemagno <james.montemagno@gmail.com>

* Update libraries for RC 1 (#10055)

* Update libraries for RC 1

* Fix libraries: replace TBD with content

* Add PQC notes

* Fix trailing whitespace

* Update release-notes/10.0/preview/rc1/libraries.md

Co-authored-by: Tanner Gooding <tagoo@outlook.com>

* updates

* update link

* updates

---------

Co-authored-by: Jeremy Barton <jbarton@microsoft.com>
Co-authored-by: James Montemagno <james.montemagno@gmail.com>
Co-authored-by: Tanner Gooding <tagoo@outlook.com>

* Update winforms for RC 1 (#10059)

* Update winforms for RC 1

* Update WinForms release notes for .NET 10 RC1

Thanks @KlausLoeffelmann for the content!

---------

Co-authored-by: Merrie McGaw <mmcgaw@microsoft.com>

* Update efcore for RC 1 (#10053)

* Update efcore for RC 1

* Fix efcore: replace TBD with content

* EF Core release notes for rc.1

---------

Co-authored-by: Shay Rojansky <roji@roji.org>

* markdownlint fixes for WinForms RC1 release notes

* Update Language Version in releases.json

* Update release.json for Language version support

* updates

* filled out maui contributor GitHub handles

* Revise Visual Studio compatibility information

---------

Co-authored-by: victorisr <victorisr@microsoft.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: James Montemagno <james.montemagno@gmail.com>
Co-authored-by: David Ortinau <david.ortinau@microsoft.com>
Co-authored-by: Jeremy Barton <jbarton@microsoft.com>
Co-authored-by: Tanner Gooding <tagoo@outlook.com>
Co-authored-by: Merrie McGaw <mmcgaw@microsoft.com>
Co-authored-by: Shay Rojansky <roji@roji.org>
Co-authored-by: Rahul Bhandari <rbhanda@microsoft.com>
2025-09-09 09:39:12 -07:00
Copilot
7e7d39b55e Add comprehensive GitHub Copilot instructions for dotnet/core repository (#10029)
* Initial plan

* Initial exploration and plan for Copilot instructions

Co-authored-by: jongalloway <68539+jongalloway@users.noreply.github.com>

* Create comprehensive GitHub Copilot instructions for dotnet/core repository

Co-authored-by: jongalloway <68539+jongalloway@users.noreply.github.com>

* Fix JSON_PRETTIER formatting error in markdown-link-check-config.json

Co-authored-by: jongalloway <68539+jongalloway@users.noreply.github.com>

---------

Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com>
Co-authored-by: jongalloway <68539+jongalloway@users.noreply.github.com>
Co-authored-by: Jon Galloway <jongalloway@gmail.com>
Co-authored-by: James Montemagno <james.montemagno@gmail.com>
2025-08-19 08:57:36 -07:00
Copilot
cef1a961e3 Fix Super-Linter to run on pull requests to all branches (#10035)
* Initial plan

* Fix super-linter to run on pull requests to all branches

Co-authored-by: jongalloway <68539+jongalloway@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: jongalloway <68539+jongalloway@users.noreply.github.com>
2025-08-13 09:04:45 -07:00
James Montemagno
bf1d666ec1 Add release notes for .NET 10 Preview 7 across various components (#10006)
* Add release notes for .NET 10 Preview 7 across various components

* Remove outdated prompt for creating pull requests for Preview 7

* Add prompt for creating pull requests for .NET 10 Preview 7

* Update wpf for preview 7 (#10005)

* Update wpf for preview 7

* Add details

* Fix version

* Update wpf.md

* Update wpf.md

---------

Co-authored-by: Andy (Steve) De George <67293991+adegeo@users.noreply.github.com>
Co-authored-by: Jon Galloway <jongalloway@gmail.com>

* Update dotnetmaui for preview 7 (#9997)

* Update dotnetmaui for preview 7

* Update dotnetmaui.md for preview 7 with copilot consolidation

* Update release-notes/10.0/preview/preview7/dotnetmaui.md

Co-authored-by: Jonathan Peppers <jonathan.peppers@microsoft.com>

* Update dotnetmaui.md

* Update dotnetmaui.md

---------

Co-authored-by: David Ortinau <david.ortinau@microsoft.com>
Co-authored-by: Jonathan Peppers <jonathan.peppers@microsoft.com>

* Update winforms for preview 7 (#10004)

* Update winforms for preview 7

* Update winforms readme.md

---------

Co-authored-by: Klaus Löffelmann <9663150+KlausLoeffelmann@users.noreply.github.com>

* Update efcore for preview 7 (#9998)

* Update efcore for preview 7

* Fill in EF 10 preview7 release notes

* Update release-notes/10.0/preview/preview7/efcore.md

Co-authored-by: Martin Costello <martin@martincostello.com>

---------

Co-authored-by: Shay Rojansky <roji@roji.org>
Co-authored-by: Martin Costello <martin@martincostello.com>

* Update release-notes/10.0/preview/preview7/README.md

Co-authored-by: Weihan Li <weihanli@outlook.com>

* Add comprehensive ASP.NET Core release notes for .NET 10 Preview 7 (#10023)

* Update fsharp for preview 7 (#9999)

* Update fsharp for preview 7

* Update release-notes/10.0/preview/preview7/fsharp.md

---------

Co-authored-by: Jon Galloway <jongalloway@gmail.com>

* Update sdk for preview 7 (#10002)

* Update sdk for preview 7

* add notes about any RID support in .NET tools

* Update release-notes/10.0/preview/preview7/sdk.md

Co-authored-by: Martin Costello <martin@martincostello.com>

* Update release-notes/10.0/preview/preview7/sdk.md

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: Chet Husk <chusk3@gmail.com>
Co-authored-by: Chet Husk <baronfel@users.noreply.github.com>
Co-authored-by: Martin Costello <martin@martincostello.com>
Co-authored-by: Jon Galloway <jongalloway@gmail.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Update libraries for preview 7 (#10000)

* Update libraries for preview 7

* Add notes for CreateNewProcessGroup

* Update release-notes/10.0/preview/preview7/libraries.md

* Update markdown link

* Add cryptography notes

* Add PipeReader support for JsonSerializer

* change received to sent

* Composite ML-DSA

* clean up pqc bullet

* update PipeReader blurb

* Add WebSocketStream

* Fix WebSocketStream link and add TLS 1.3 support for macOS client

* Update TLS 1.3 notes for macOS Network.framework behavior and edge cases

* Update release-notes/10.0/preview/preview7/libraries.md

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Update release-notes/10.0/preview/preview7/libraries.md

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: David Cantú <dacantu@microsoft.com>
Co-authored-by: Pranav Senthilnathan <pranas@microsoft.com>
Co-authored-by: Jeremy Barton <jbarton@microsoft.com>
Co-authored-by: Natalia Kondratyeva <knatalia@microsoft.com>
Co-authored-by: Ahmet Ibrahim Aksoy <aaksoy@microsoft.com>
Co-authored-by: Jon Galloway <jongalloway@gmail.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Update csharp for preview 7 (#9996)

* Update csharp for preview 7

* Add C# preview 7 features.

Add the remaining C# 14 features delivered in .NET 10 preview 7.

* Update release-notes/10.0/preview/preview7/csharp.md

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Update release-notes/10.0/preview/preview7/csharp.md

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: Bill Wagner <wiwagn@microsoft.com>
Co-authored-by: Jon Galloway <jongalloway@gmail.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Update containers for preview 7 (#9995)

* Update containers for preview 7

* Add dnx feature notes

---------

Co-authored-by: Logan Bussell <loganbussell@microsoft.com>

* Update runtime for preview 7 (#10001)

* Update runtime for preview 7

* Update release-notes/10.0/preview/preview7/runtime.md

---------

Co-authored-by: Jon Galloway <jongalloway@gmail.com>

* Update 10.0.0-preview.7.md

* Update README.md

* Update releases.md

* Update README.md

* Update releases-index.json

* Update README.md

* Update releases.json

* Update install-linux.md

* Update install-macos.md

* Update install-windows.md

* Create release.json

* Update markdown files and release notes for Preview 7

* Update release notes for Preview 7: add missing WPF entry, fix formatting in ASP.NET Core, SDK, and Windows Forms notes

* fix winforms

* Update markdown link check workflow to allow all branches for pull requests and fix JSON formatting in release notes

* Remove feature summaries from F# and Visual Basic release notes for Preview 7

* Update release-notes/10.0/preview/preview7/csharp.md

Co-authored-by: Bill Wagner <wiwagn@microsoft.com>

---------

Co-authored-by: Andy (Steve) De George <67293991+adegeo@users.noreply.github.com>
Co-authored-by: Jon Galloway <jongalloway@gmail.com>
Co-authored-by: David Ortinau <david.ortinau@microsoft.com>
Co-authored-by: Jonathan Peppers <jonathan.peppers@microsoft.com>
Co-authored-by: Klaus Löffelmann <9663150+KlausLoeffelmann@users.noreply.github.com>
Co-authored-by: Shay Rojansky <roji@roji.org>
Co-authored-by: Martin Costello <martin@martincostello.com>
Co-authored-by: Weihan Li <weihanli@outlook.com>
Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com>
Co-authored-by: Chet Husk <chusk3@gmail.com>
Co-authored-by: Chet Husk <baronfel@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: David Cantú <dacantu@microsoft.com>
Co-authored-by: Pranav Senthilnathan <pranas@microsoft.com>
Co-authored-by: Jeremy Barton <jbarton@microsoft.com>
Co-authored-by: Natalia Kondratyeva <knatalia@microsoft.com>
Co-authored-by: Ahmet Ibrahim Aksoy <aaksoy@microsoft.com>
Co-authored-by: Bill Wagner <wiwagn@microsoft.com>
Co-authored-by: Logan Bussell <loganbussell@microsoft.com>
Co-authored-by: victorisr <victorisr@microsoft.com>
2025-08-12 12:09:42 -07:00
James Montemagno
2981881154 .NET 10 Preview 6 (#9830)
* .NET 10 Preview 6

* .NET 10 P6 - FSharp (#9946)

* Update fsharp preview6 release notes with manual changes.

* udpate for release

* .NET 10 P6 - CSharp (#9943)

* Add period to last sentence in csharp preview6 release notes.

* update C#

* .NET 10 P6 - EFCore (#9945)

* Add period to last sentence in efcore preview6 release notes.

* EF 10.0-preview.6 release notes

* Added small improvements

---------

Co-authored-by: Shay Rojansky <roji@roji.org>

* .NET 10 P6 - WPF (#9952)

* Add period to last sentence in aspnetcore preview6 release notes.

* Add period to last sentence in containers preview6 release notes.

* Add period to last sentence in csharp preview6 release notes.

* Add period to last sentence in dotnetmaui preview6 release notes.

* Add period to last sentence in efcore preview6 release notes.

* Add period to last sentence in libraries preview6 release notes.

* Add period to last sentence in runtime preview6 release notes.

* Add period to last sentence in sdk preview6 release notes.

* Add period to last sentence in visualbasic preview6 release notes.

* Add period to last sentence in winforms preview6 release notes.

* Add period to last sentence in wpf preview6 release notes.

* Revert all changes except wpf.md in dotnet10-p6-wpf branch.

* Add WPF info

* update feature list

---------

Co-authored-by: Andy (Steve) De George <67293991+adegeo@users.noreply.github.com>

* .NET 10 P6 - WinForms (#9951)

* Add period to last sentence in winforms preview6 release notes.

* Update WinForms for Preview 6

* Apply suggestions from code review

Co-authored-by: Klaus Löffelmann <9663150+KlausLoeffelmann@users.noreply.github.com>

---------

Co-authored-by: Merrie McGaw <mmcgaw@microsoft.com>
Co-authored-by: Klaus Löffelmann <9663150+KlausLoeffelmann@users.noreply.github.com>

* .NET 10 P6 - SDK (#9949)

* Add period to last sentence in sdk preview6 release notes.

* CLI notes around tools and such

* Add release notes for preview.6 run-file changes

---------

Co-authored-by: Chet Husk <baronfel@users.noreply.github.com>
Co-authored-by: Damian Edwards <damian@damianedwards.com>

* .NET 10 P6 - Containers (#9942)

* Add period to last sentence in containers preview6 release notes.

* update to none udpates.

* .NET 10 P6 - Runtime (#9948)

* Add period to last sentence in runtime preview6 release notes.

* Add JIT notes

---------

Co-authored-by: Aman Khalid (from Dev Box) <amankhalid@microsoft.com>

* .NET 10 P6 - .NET MAUI (#9944)

* Add period to last sentence in dotnetmaui preview6 release notes.

* Update dotnetmaui.md

* adding more details for android

* minor updates to iOS note

* Update release-notes/10.0/preview/preview6/dotnetmaui.md

Co-authored-by: Jonathan Peppers <jonathan.peppers@microsoft.com>

* Update release-notes/10.0/preview/preview6/dotnetmaui.md

Co-authored-by: Jonathan Peppers <jonathan.peppers@microsoft.com>

* Update release-notes/10.0/preview/preview6/dotnetmaui.md

Co-authored-by: Jonathan Peppers <jonathan.peppers@microsoft.com>

* added contributors from android and iOS repos

---------

Co-authored-by: David Ortinau <david.ortinau@microsoft.com>
Co-authored-by: Jonathan Peppers <jonathan.peppers@microsoft.com>

* .NET 10 P6 - Libraries (#9947)

* Add period to last sentence in libraries preview6 release notes.

* Update libraries.md

* Update libraries.md

Co-authored-by: Weihan Li <weihanli@outlook.com>

* Update libraries.md

fix link

---------

Co-authored-by: Pranav Senthilnathan <pranas@microsoft.com>
Co-authored-by: Weihan Li <weihanli@outlook.com>

* Add ASP.NET Core release notes for .NET 10 Preview 6 (#9965)

* update linter

* revert

* Fix link to installers and binaries for .NET 10 Preview 6 in README.md

* update permissions?

* Update release notes for .NET 10 Preview 6: enhance dark mode support in Windows Forms, improve JSON property handling in libraries, and refine CLI tool execution options in SDK.

* Enhance release notes for .NET 10 Preview 6: update dark mode support in Windows Forms, improve formatting in EF Core and SDK documentation, and clean up whitespace in various markdown files.

* cleanup

* add p6

* lint

* try this

* Update releases.md

* Update README.md

* Update release-notes/README.md

* Update releases-index.json

* Update install-linux.md

* Update install-macos.md

* Update install-windows.md

* Update releases.json

* Update 10.0.0-preview.6.md

* Added release.json

* Mix lint errors in release.json for preview 6 release

* Fix jsonlint errors

* Fix jsonlint errors

---------

Co-authored-by: Shay Rojansky <roji@roji.org>
Co-authored-by: Andy (Steve) De George <67293991+adegeo@users.noreply.github.com>
Co-authored-by: Merrie McGaw <mmcgaw@microsoft.com>
Co-authored-by: Klaus Löffelmann <9663150+KlausLoeffelmann@users.noreply.github.com>
Co-authored-by: Chet Husk <baronfel@users.noreply.github.com>
Co-authored-by: Damian Edwards <damian@damianedwards.com>
Co-authored-by: Aman Khalid (from Dev Box) <amankhalid@microsoft.com>
Co-authored-by: David Ortinau <david.ortinau@microsoft.com>
Co-authored-by: Jonathan Peppers <jonathan.peppers@microsoft.com>
Co-authored-by: Pranav Senthilnathan <pranas@microsoft.com>
Co-authored-by: Weihan Li <weihanli@outlook.com>
Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com>
Co-authored-by: victorisr <victorisr@microsoft.com>
Co-authored-by: Jon Galloway <jongalloway@gmail.com>
2025-07-15 10:08:38 -07:00
Jeff Handley
5d3e41fafb Onboard the dotnet/issue-labeler for 'area-' label prediction on issues (#9889)
* [Issue-Labeler] Configure labeler-train.yml

Configure the issue-labeler training workflow.
- Imported the workflow template
- Removed inputs, jobs, and conditions related to pull requests, as we will only use the labeler for issues in this repository

* [Issue-Labeler] Configure labeler-promote.yml

Configure the issue-labeler promotion workflow.
- Imported the workflow template
- Removed input and job for pull requests, as we will only use the labeler for issues in this repository

* [Issue-Labeler] Configure labeler-predict-issues.yml

Configure the issue-labeler issue prediction workflow.
- Imported the workflow template
- Removed the excluded_authors input

* [Issue-Labeler] Configure labeler-cache-retention.yml

Configure the issue-labeler cache retention workflow.
- Imported the workflow template
- Removed config related to pull requests, as we will only use the labeler for issues in this repository

* [Issue-Labeler] Add labeler onboarding/configuration doc

* Bump superlinter to v7 (via SHA) to get type:number support in GitHub workflows

* Address CHECKOV lint errors in GitHub workflows

* Ignore GitHub workflow files from prettier

* Explicitly set workflow permissions

* Comment that UTC is used for cron schedule
2025-06-23 15:00:12 -07:00
Rich Lander
581fce9c95 Update support files (#9757)
* Update support files

* Update nano server

* Update templates

* Update link format

* Update link format

* Update link format

* Attempt to skip link checking
2025-02-25 11:04:41 -08:00
Maira Wenzel
c5a98a5528 Update CODEOWNERS (#9747) 2025-02-14 16:40:02 -08:00
Rich Lander
700ee08b79 Fix linter errors (#9723)
* Fix linter errors

* Add additional markdownlint rules

* Update linter rules

* Update .gitignore

* Add settings.json
2025-02-06 07:57:26 -08:00
Jon Galloway
b795ed2cd4 [WIP] Enable markdown linting (#9444)
* [WIP] Enable markdown linting

* Remove markdown line since default is true when any lang is set to false
2024-08-16 10:26:04 -07:00
Maira Wenzel
58c9f8e455 Update action version (#9209) 2024-03-12 11:20:20 -07:00
James Montemagno
f83b75d8fa Update 01-issue-release-notes.yml (#9159) 2024-02-12 17:46:42 -08:00
James Montemagno
5cd2bf9718 Update config.yml (#9157) 2024-02-12 17:01:45 -08:00
James Montemagno
f42db5d4a8 Update config.yml (#9141) 2024-02-12 16:54:01 -08:00
James Montemagno
7e86734e86 Create 01-issue-release-notes.yml (#9156)
* Create 01-issue-release-notes.yml

* remove unneeded files
2024-02-12 16:52:48 -08:00
Maira Wenzel
934caf83b6 Delete .github/ISSUE_TEMPLATE/02_tutorial_report.yml (#9155) 2024-02-12 16:47:19 -08:00
Maira Wenzel
729a176bc1 Update issues list and URLs (#9055)
* Update issues list and URLs

* Update config.yml

* Update config.yml

---------

Co-authored-by: Dan Moseley <danmose@microsoft.com>
2024-01-10 10:53:36 -08:00
Maira Wenzel
817fc635cd Update actions to latest release (#8471)
* Update actions to latest release

* Update no-response.yml
2023-06-01 14:16:16 -07:00
Maira Wenzel
3485e292c6 Update markdown-link-check.yml 2023-04-06 14:31:26 -07:00
Maira Wenzel
cfd96a2c92 Add path to GH action (#8356) 2023-04-05 10:51:05 -07:00
Maira Wenzel
6031ab8c53 Update markdown-link-check.yml (#8354) 2023-04-05 10:26:07 -07:00
Maira Wenzel
829788eec3 Add GH action to check links in md files (#8346)
* Add GH action to check links in md files

* remove empty line

* test

* Only check modified files

* add config file

* upate checkout version

* add base branch

* add ignore pattern

* Update markdown-link-check.yml

---------

Co-authored-by: Rich Lander <rlander@microsoft.com>
2023-04-04 10:11:41 -07:00
Maira Wenzel
f4e23d6a80 Update CODEOWNERS 2023-02-13 16:35:22 -08:00
Rahul Bhandari
dfc22f5a3b Merge pull request #7468 from dotnet/mairaw-patch-1
Add .NET MAUI to new issues list
2022-08-12 11:15:21 -07:00
Artak
257436b396 Create issue template for Package Deprecation feedback 2022-06-20 12:53:32 -07:00
Maira Wenzel
3991337570 Add .NET MAUI to new issues list 2022-05-19 12:47:43 -07:00
Maira Wenzel
d1fe260a5c Fix stale message (#7430) 2022-05-05 16:28:14 -07:00
Jon Galloway
c8f2e54679 Update no-response.yml (#7424) 2022-05-05 11:08:40 -07:00
Maira Wenzel
cf839b3f52 Update no-response.yml 2022-04-27 12:51:14 -07:00
Maira Wenzel
c49ad3696e Update no-response.yml 2022-04-26 09:38:34 -07:00
Maira Wenzel
362090e97a Replace old no-response bot with a GitHub action (#7391) 2022-04-20 16:40:59 -07:00
Maira Wenzel
ed47fb5345 Update CODEOWNERS (#7385) 2022-04-18 13:13:29 -07:00
Dan Zhu
4665fc75f5 Disable linters that create false positives (#7344) 2022-04-04 15:42:57 -07:00
Maira Wenzel
f741424c1a Update super-linter.yml (#7279) 2022-03-14 15:47:55 -07:00
Dan Zhu
5963f947f8 Add linter (#7251) 2022-03-07 09:56:48 -08:00
Maira Wenzel
fa4740f81e Update 02_tutorial_report.yml 2022-01-11 17:55:30 -08:00
Maira Wenzel
8d5c6f1e3e Update 02_tutorial_report.yml 2022-01-11 17:54:03 -08:00
Maira Wenzel
a24063f141 Add new template for tutorial bugs (#7110) 2022-01-11 17:44:07 -08:00