Skip to content

Commit 500f5ce

Browse files
authored
Remove most Xamarin references (#3402)
1 parent 635ad11 commit 500f5ce

10 files changed

+19
-294
lines changed

.openpublishing.redirection.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
"source_path": "docs/Quickstart/Create-and-publish-a-package.md",
100100
"redirect_url": "/nuget/quickstart/create-and-publish-a-package-using-visual-studio",
101101
"redirect_document_id": false
102-
},
102+
},
103103
{
104104
"source_path": "docs/Quickstart/Use-a-Package.md",
105105
"redirect_url": "/nuget/quickstart/install-and-use-a-package-in-visual-studio",
@@ -384,6 +384,11 @@
384384
"source_path": "docs/reference/errors-and-warnings/NU1904.md",
385385
"redirect_url": "/nuget/reference/errors-and-warnings/NU1901-NU1904",
386386
"redirect_document_id": false
387+
},
388+
{
389+
"source_path": "docs/guides/create-packages-for-xamarin.md",
390+
"redirect_url": "/nuget",
391+
"redirect_document_id": false
387392
}
388393
]
389394
}

docs/TOC.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@
5555
### [Create a native package](guides/native-packages.md)
5656
### [Create UI controls as a NuGet package](guides/create-UI-controls.md)
5757
### [Create an analyzer as a NuGet package](guides/analyzers-conventions.md)
58-
### [Create a package for Xamarin with Visual Studio 2017 or 2019](guides/create-packages-for-xamarin.md)
5958
### [Create a package with COM interop assemblies](create-packages/author-packages-with-COM-interop-assemblies.md)
6059
## Sign packages
6160
### [Sign a package](create-packages/sign-a-package.md)

docs/guides/create-packages-for-xamarin.md

Lines changed: 0 additions & 279 deletions
This file was deleted.
-20.9 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.

docs/quickstart/create-and-publish-a-package-using-visual-studio-net-framework.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ To create a class library project, follow these steps:
5454
}
5555
```
5656

57-
Within a real-world NuGet package, you'd likely implement many useful features with which others can build applications. You can also set the target frameworks. For examples, see [UWP](../guides/create-uwp-packages.md) and [Xamarin](../guides/create-packages-for-xamarin.md).
57+
Within a real-world NuGet package, you'd likely implement many useful features with which others can build applications. You can also set the target frameworks. For an example, see [UWP](../guides/create-uwp-packages.md).
5858

5959
## Configure project properties for the package
6060

docs/quickstart/create-and-publish-a-package-using-visual-studio.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.topic: quickstart
1111

1212
With Microsoft Visual Studio, you can create a NuGet package from a .NET class library, and then publish it to nuget.org using a CLI tool.
1313

14-
The quickstart is for Windows users only. If you're using Visual Studio for Mac, see [Create a NuGet package from existing library projects](/xamarin/cross-platform/app-fundamentals/nuget-multiplatform-libraries/existing-library) or use the [.NET CLI](create-and-publish-a-package-using-the-dotnet-cli.md).
14+
The quickstart is for Windows users only. If you're using a Mac, use the [.NET CLI](create-and-publish-a-package-using-the-dotnet-cli.md).
1515

1616
## Prerequisites
1717

@@ -214,17 +214,17 @@ In this example, the property specifies a file named *readme.txt* in the project
214214
3 ----------------------------------------------------
215215
4
216216
5 ----Silverlight 4 and Windows Phone 7.1+ projects-----
217-
6 To use XPATH features: System.Xml.Xpath.dll from the 3 Silverlight 4 SDK must be referenced.
218-
7 This is normally found at
219-
8 %ProgramFiles(x86)%\Microsoft SDKs\Microsoft SDKs\Silverlight\v4.0\Libraries\Client
220-
9 or
217+
6 To use XPATH features: System.Xml.Xpath.dll from the 3 Silverlight 4 SDK must be referenced.
218+
7 This is normally found at
219+
8 %ProgramFiles(x86)%\Microsoft SDKs\Microsoft SDKs\Silverlight\v4.0\Libraries\Client
220+
9 or
221221
10 %ProgramFiles%\Microsoft SDKs\Microsoft SDKs\Silverlight\v4.0\Libraries\Client
222222
11
223223
12 ----Silverlight 5 projects-----
224-
13 To use XPATH features: System.Xml.Xpath.dll from the Silverlight 5 SDK must be referenced.
225-
14 This is normally found at
226-
15 %ProgramFiles(x86)%\Microsoft SDKs\Microsoft SDKs\Silverlight\v5.0\Libraries\Client
227-
16 or
224+
13 To use XPATH features: System.Xml.Xpath.dll from the Silverlight 5 SDK must be referenced.
225+
14 This is normally found at
226+
15 %ProgramFiles(x86)%\Microsoft SDKs\Microsoft SDKs\Silverlight\v5.0\Libraries\Client
227+
16 or
228228
17 %ProgramFiles%\Microsoft SDKs\Microsoft SDKs\Silverlight\v5.0\Libraries\Client
229229
```
230230

0 commit comments

Comments
 (0)