Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/debugger-libs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Ward <matt.ward@microsoft.com>2021-01-19 18:04:38 +0300
committerMatt Ward <matt.ward@microsoft.com>2021-01-19 18:04:38 +0300
commit23965e602a254d5e0d5aee2262ea94a4b39bfc5b (patch)
tree0281c7b6db930b53e06f7de18a50da99cb839298
parentf556cfe197c4975647b97d59a134da8665423d15 (diff)
[Tests] Add NuGet.Config file for .NET Core tests
Clear out any other package sources defined on the local machine when restoring the projects for the debugger tests.
-rw-r--r--UnitTests/MonoDevelop.Debugger.Tests.NonUserCodeTestLibCore/NuGet.config6
-rw-r--r--UnitTests/MonoDevelop.Debugger.Tests.TestAppCore/NuGet.config6
2 files changed, 12 insertions, 0 deletions
diff --git a/UnitTests/MonoDevelop.Debugger.Tests.NonUserCodeTestLibCore/NuGet.config b/UnitTests/MonoDevelop.Debugger.Tests.NonUserCodeTestLibCore/NuGet.config
new file mode 100644
index 0000000..167b985
--- /dev/null
+++ b/UnitTests/MonoDevelop.Debugger.Tests.NonUserCodeTestLibCore/NuGet.config
@@ -0,0 +1,6 @@
+<configuration>
+ <packageSources>
+ <clear />
+ <add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
+ </packageSources>
+</configuration> \ No newline at end of file
diff --git a/UnitTests/MonoDevelop.Debugger.Tests.TestAppCore/NuGet.config b/UnitTests/MonoDevelop.Debugger.Tests.TestAppCore/NuGet.config
new file mode 100644
index 0000000..167b985
--- /dev/null
+++ b/UnitTests/MonoDevelop.Debugger.Tests.TestAppCore/NuGet.config
@@ -0,0 +1,6 @@
+<configuration>
+ <packageSources>
+ <clear />
+ <add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
+ </packageSources>
+</configuration> \ No newline at end of file