d365fo-mcp 1.5.0 → 1.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!--
|
|
3
|
+
D365FO dev VMs frequently ship a machine-wide NuGet.config that only lists
|
|
4
|
+
offline/VS package sources (e.g. "C:\Program Files\dotnet\library-packs" and
|
|
5
|
+
"Microsoft Visual Studio Offline Packages") — nuget.org isn't in it, so
|
|
6
|
+
restoring System.Text.Json / Microsoft.NETFramework.ReferenceAssemblies.net48
|
|
7
|
+
fails with NU1101 even though the machine has internet access.
|
|
8
|
+
|
|
9
|
+
This file has no <clear/>, so NuGet MERGES it with whatever the machine/user
|
|
10
|
+
config already defines — it only adds nuget.org, it never removes the
|
|
11
|
+
offline sources the D365FO tooling relies on. See docs/SETUP.md
|
|
12
|
+
"Restrictive NuGet feed".
|
|
13
|
+
-->
|
|
14
|
+
<configuration>
|
|
15
|
+
<packageSources>
|
|
16
|
+
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
|
|
17
|
+
</packageSources>
|
|
18
|
+
</configuration>
|