Skip to content

Commit bc58307

Browse files
authored
Learn site rebranding update URL (#701)
2 parents 0f8b1c3 + c8195e5 commit bc58307

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

Mdoc-ReleaseCheckCI.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ pr:
99

1010
# Variable 'needRunReleaseMdoc' was defined in the Variables tab
1111
# Variable 'params' was defined in the Variables tab
12-
# Agent Queue 'Azure Pipelines' was used with unrecognized Agent Specification, vmImage property must be specified to determine image - https://docs.microsoft.com/en-us/azure/devops/pipelines/agents/hosted?view=azure-devops&tabs=yaml#software
12+
# Agent Queue 'Azure Pipelines' was used with unrecognized Agent Specification, vmImage property must be specified to determine image - https://learn.microsoft.com/en-us/azure/devops/pipelines/agents/hosted?view=azure-devops&tabs=yaml#software
1313
variables:
1414
solution: 'apidoctools.sln'
1515
buildConfiguration: 'Release'

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# `mdoc`
22

33
This repository contains the source for the .NET API Reference toolchain ([used
4-
by docs.microsoft.com](https://docs.microsoft.com/en-us/teamblog/announcing-unified-dotnet-experience-on-docs#built-with-open-source-in-mind))
4+
by learn.microsoft.com](https://learn.microsoft.com/en-us/teamblog/announcing-unified-dotnet-experience-on-docs#built-with-open-source-in-mind))
55

66
## Contribution Guide
77

azure-pipelines.lgtm.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ASP.NET Core (.NET Framework)
22
# Build and test ASP.NET Core projects targeting the full .NET Framework.
33
# Add steps that publish symbols, save build artifacts, and more:
4-
# https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core
4+
# https://learn.microsoft.com/azure/devops/pipelines/languages/dotnet-core
55

66
pr: none
77
trigger: none

azure-pipelines.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ASP.NET Core (.NET Framework)
22
# Build and test ASP.NET Core projects targeting the full .NET Framework.
33
# Add steps that publish symbols, save build artifacts, and more:
4-
# https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core
4+
# https://learn.microsoft.com/azure/devops/pipelines/languages/dotnet-core
55

66
trigger:
77
- '*'

mdoc/Mono.Documentation/Util/AttachedEntitiesHelper.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ private static IEnumerable<AttachedEventReference> GetAttachedEvents(TypeDefinit
5555

5656
private static bool IsAttachedEvent(FieldDefinition field, Dictionary<string, IEnumerable<MethodDefinition>> methods)
5757
{
58-
// https://docs.microsoft.com/en-us/dotnet/framework/wpf/advanced/attached-events-overview
58+
// https://learn.microsoft.com/en-us/dotnet/framework/wpf/advanced/attached-events-overview
5959
if (!field.Name.EndsWith(EventConst))
6060
return false;
6161
var addMethodName = $"Add{GetEventName(field.Name)}Handler";
@@ -130,7 +130,7 @@ private static IEnumerable<AttachedPropertyReference> GetAttachedProperties(Type
130130

131131
private static bool IsAttachedProperty(FieldDefinition field, Dictionary<string, IEnumerable<MethodDefinition>> methods)
132132
{
133-
// https://docs.microsoft.com/en-us/dotnet/framework/wpf/advanced/attached-properties-overview
133+
// https://learn.microsoft.com/en-us/dotnet/framework/wpf/advanced/attached-properties-overview
134134
// https://github.com/mono/api-doc-tools/issues/63#issuecomment-328995418
135135
if (!field.Name.EndsWith(PropertyConst, StringComparison.Ordinal))
136136
return false;

mdoc/Test/AttachedEventsAndProperties/AttachedEventExample.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public static void RemoveDragOverHandler(DependencyObject element, DragEventHand
1717
}
1818
#endregion
1919

20-
#region docs.microsoft.com example
20+
#region learn.microsoft.com example
2121
public static readonly RoutedEvent NeedsCleaningEvent;
2222
public static void AddNeedsCleaningHandler(DependencyObject d, RoutedEventHandler handler)
2323
{

mdoc/Test/AttachedEventsAndProperties/AttachedPropertyExample.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace AttachedEventsAndProperties
55
{
66
public static class AttachedPropertyExample
77
{
8-
#region modified docs.microsoft.com example
8+
#region modified learn.microsoft.com example
99

1010
public static readonly DependencyProperty IsBubbleSourceProperty = DependencyProperty.RegisterAttached(
1111
"IsBubbleSource",

0 commit comments

Comments
 (0)