Skip to content

Commit 4075e94

Browse files
mdd-update-nuget-url-protocol (#1407)
* mdd-update-nuget-url-protocol mdd-update-nuget-url-protocol * Update general-nuget-feed.md --------- Co-authored-by: Borislav Traykov <[email protected]>
1 parent 4281549 commit 4075e94

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

doc/en/components/general-nuget-feed.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@ This topic contains the following sections:
2222

2323
2 - In the **Package Sources** section, add a new package source by clicking the **plus icon** in the top right corner of the dialog.
2424
- Set the Name to **Infragistics**
25-
- Set the Source to **https://packages.infragistics.com/nuget/licensed**
25+
- Set the Source to **https://packages.infragistics.com/nuget/licensed/v3/index.json** if you prefer using the NuGet protocol version 3. Otherwise this must be set to **https://packages.infragistics.com/nuget/licensed/**
26+
27+
> [!Note]
28+
> For more details on whether to use v3 or older please visit: **https://devblogs.microsoft.com/nuget/nuget-3-what-and-why/**. Protocol v3 is applicable only when using newer versions of NuGet clients (after 2015). Older NuGet clients may or may not be compatible with v3.
2629
2730
Click the **Update** button, and then click **OK** to close the dialog.
2831

@@ -38,6 +41,10 @@ This topic contains the following sections:
3841
3 - Execute the following command
3942

4043
```cmd
44+
//nuget protocol v3
45+
nuget sources add -name "Infragistics" -source "https://packages.infragistics.com/nuget/licensed/v3/index.json" -username "your login email" -password "your password"
46+
47+
//nuget protocol v2
4148
nuget sources add -name "Infragistics" -source "https://packages.infragistics.com/nuget/licensed" -username "your login email" -password "your password"
4249
```
4350

0 commit comments

Comments
 (0)