Skip to content

Commit 99e6751

Browse files
removed locale information from URLs
1 parent 8691d0e commit 99e6751

File tree

13 files changed

+15
-15
lines changed

13 files changed

+15
-15
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ What would not make the bar:
5252

5353
:warning: This repository contains only implementations for Windows Forms for [.NET platform](https://github.com/dotnet/core).<br />
5454
It does not contain either:
55-
* The .NET Framework variant of Windows Forms. Issues with .NET Framework, including Windows Forms, should be filed on the [Developer Community](https://developercommunity.visualstudio.com/spaces/61/index.html) or [Product Support](https://support.microsoft.com/en-us/contactus?ws=support) websites. They should not be filed on this repository.
55+
* The .NET Framework variant of Windows Forms. Issues with .NET Framework, including Windows Forms, should be filed on the [Developer Community](https://developercommunity.visualstudio.com/spaces/61/index.html) or [Product Support](https://support.microsoft.com/contactus?ws=support) websites. They should not be filed on this repository.
5656
* The Windows Forms Designer implementations. Issues with the Designer can be filed via VS Feedback tool (top right-hand side icon in Visual Studio) or be filed in this repo using the Windows Forms out-of-process designer issue template.
5757

5858
# How can I contribute?

docs/coding-style.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ There are a few key things we strive for to attain our clarity goals:
1515
- Minimal code visibility (via access modifiers, type nesting, and local functions).
1616
- All context captured in source (via code or comments).
1717

18-
Windows Forms dates back to the mid 1990s (originally [Windows Foundation Classes](https://web.archive.org/web/20050915003238/http://msdn.microsoft.com/library/en-us/vjcore98/html/vjconintroductiontowfcprogramming.asp)). It has seen over 25 years of language and coding evolution. We believe that updating the code to modern style makes the code easier to maintain and update in the longer term. While we do not update everything as the style guidelines evolve, we do make continual investments in cleaning the codebase as an engineering best practice.
18+
Windows Forms dates back to the mid 1990s (originally [Windows Foundation Classes](https://web.archive.org/web/20050915003238/http://msdn.microsoft.com/library/vjcore98/html/vjconintroductiontowfcprogramming.asp)). It has seen over 25 years of language and coding evolution. We believe that updating the code to modern style makes the code easier to maintain and update in the longer term. While we do not update everything as the style guidelines evolve, we do make continual investments in cleaning the codebase as an engineering best practice.
1919

2020
A number of the following detailed guidelines are captured in our `.editorconfig` and as such you'll get the appropriate feedback in Visual Studio. We're iterating to enable more automated analyzers in the future.
2121

docs/porting-guidelines.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,11 +139,11 @@ You can search for additional types which you may need in porting your apps to .
139139
[dotnet-blog-port-guide]: https://devblogs.microsoft.com/dotnet/how-to-port-desktop-applications-to-net-core-3-0/
140140
[dotnet-blog-port-video]: https://www.youtube.com/watch?v=upVQEUc_KwU
141141
[api-port]: https://blogs.msdn.microsoft.com/dotnet/2018/08/08/are-your-windows-forms-and-wpf-applications-ready-for-net-core-3-0/
142-
[pkg-config]: https://docs.microsoft.com/en-us/nuget/reference/migrate-packages-config-to-package-reference
142+
[pkg-config]: https://docs.microsoft.com/nuget/reference/migrate-packages-config-to-package-reference
143143
[sdk-tool]:https://github.com/hvanbakel/CsprojToVs2017
144-
[framework-charting]: https://docs.microsoft.com/en-us/dotnet/api/system.windows.forms.datavisualization.charting
144+
[framework-charting]: https://docs.microsoft.com/dotnet/api/system.windows.forms.datavisualization.charting
145145
[nuget-dataviz]: https://www.nuget.org/packages/System.windows.forms.datavisualization
146146
[dataviz]: https://github.com/dotnet/winforms-datavisualization
147-
[compat-pack]: https://docs.microsoft.com/en-us/dotnet/core/porting/windows-compat-pack
147+
[compat-pack]: https://docs.microsoft.com/dotnet/core/porting/windows-compat-pack
148148
[wcf-supported]: https://github.com/dotnet/wcf/blob/master/release-notes/SupportedFeatures-v2.1.0.md
149149
[apisofnet]: https://apisof.net/

src/Accessibility/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This directory contains source files used to build Accessibility.dll, the managed wrapper for COM accessibility interface.
44

5-
See https://docs.microsoft.com/en-us/dotnet/api/accessibility
5+
See https://docs.microsoft.com/dotnet/api/accessibility
66

77
Source in this directory is generated by a tool and **should not be modified directly**.
88

src/System.Drawing.Common/src/System/Drawing/StringFormatFlags.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public enum StringFormatFlags
3131
/// The GDI+ equivalent for this is StringFormatFlags::StringFormatFlagsNoFitBlackBox,
3232
/// which is defined as 0x4. This was a mistake introduced since the first version of
3333
/// the product and fixing it at this point would be a breaking change.
34-
/// <see href="https://docs.microsoft.com/en-us/windows/desktop/api/gdiplusenums/ne-gdiplusenums-stringformatflags"/>
34+
/// <see href="https://docs.microsoft.com/windows/desktop/api/gdiplusenums/ne-gdiplusenums-stringformatflags"/>
3535
/// </summary>
3636
FitBlackBox = 0x00000004,
3737

src/System.Drawing.Common/tests/System/Drawing/Printing/PrinterSettingsTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ public void IsDirectPrintingSupported_ImageNotSupported_ReturnsExpected()
415415
public void SupportsColor_ReturnsExpected()
416416
{
417417
// XPS and PDF printers support color.
418-
// docs.microsoft.com/en-us/windows-hardware/drivers/print/improved-color-printing
418+
// docs.microsoft.com/windows-hardware/drivers/print/improved-color-printing
419419
PrinterSettings printerSettings = new() { PrinterName = GetNameOfTestPrinterSuitableForDevModeTesting() };
420420
Assert.True(printerSettings.SupportsColor);
421421
}

src/System.Private.Windows.Core/src/Windows/Win32/System/Com/SAFEARRAY.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public VARENUM VarType
7171
public T GetValue<T>(Span<int> indices)
7272
{
7373
// SAFEARRAY is laid out in column-major order.
74-
// See https://docs.microsoft.com/en-us/previous-versions/windows/desktop/automat/array-manipulation-functions
74+
// See https://docs.microsoft.com/previous-versions/windows/desktop/automat/array-manipulation-functions
7575
int indicesIndex = 0;
7676
int c1 = indices[indicesIndex++];
7777
uint dimensionSize = 1;

src/System.Private.Windows.Core/src/Windows/Win32/System/Variant/VARIANT.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ private static Type GetRecordElementType(IRecordInfo* record)
417417
// CLR arrays are laid out in row-major order.
418418
// See CLI 8.9.1: https://www.ecma-international.org/publications/files/ECMA-ST/ECMA-335.pdf
419419
// However, SAFEARRAYs are laid out in column-major order.
420-
// See https://docs.microsoft.com/en-us/previous-versions/windows/desktop/automat/array-manipulation-functions
420+
// See https://docs.microsoft.com/previous-versions/windows/desktop/automat/array-manipulation-functions
421421
// Therefore, we need to transpose data.
422422
TransposeArray(psa, array, arrayType);
423423
}

src/System.Windows.Forms.Analyzers.CSharp/src/System/Windows/Forms/CSharp/Generators/ApplicationConfiguration/ApplicationConfigurationGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ private static void Execute(
3737
if (outputKind is not OutputKind.WindowsApplication
3838
// Starting in the 5.0.100 version of the .NET SDK, when OutputType is set to Exe, it is automatically changed to WinExe
3939
// for WPF and Windows Forms apps that target any framework version, including .NET Framework.
40-
// https://docs.microsoft.com/en-us/dotnet/core/compatibility/sdk/5.0/automatically-infer-winexe-output-type
40+
// https://docs.microsoft.com/dotnet/core/compatibility/sdk/5.0/automatically-infer-winexe-output-type
4141
and not OutputKind.ConsoleApplication)
4242
{
4343
context.ReportDiagnostic(Diagnostic.Create(

src/System.Windows.Forms/System/Windows/Forms/Controls/PropertyGrid/PropertyGridInternal/CategoryGridEntry.CategoryGridEntryAccessibleObject.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ internal override int Row
8989
internal override VARIANT GetPropertyValue(UIA_PROPERTY_ID propertyID) => propertyID switch
9090
{
9191
// To announce expanded collapsed state control type should be appropriate:
92-
// https://docs.microsoft.com/en-us/windows/win32/winauto/uiauto-controlpatternmapping
92+
// https://docs.microsoft.com/windows/win32/winauto/uiauto-controlpatternmapping
9393
UIA_PROPERTY_ID.UIA_ControlTypePropertyId => (VARIANT)(int)UIA_CONTROLTYPE_ID.UIA_TreeItemControlTypeId,
9494
UIA_PROPERTY_ID.UIA_LocalizedControlTypePropertyId => (VARIANT)SR.CategoryPropertyGridLocalizedControlType,
9595
_ => base.GetPropertyValue(propertyID),

0 commit comments

Comments
 (0)