Browse Source

Add package sources to the packageSourceMapping tag.

BDisp 10 months ago
parent
commit
f9f3431118
2 changed files with 7 additions and 1 deletions
  1. 1 1
      .github/workflows/dotnet-core.yml
  2. 6 0
      nuget.config

+ 1 - 1
.github/workflows/dotnet-core.yml

@@ -78,7 +78,7 @@ jobs:
   
 
   build_release:
-    # Ensure that RELEASE builds are not broken  
+    # Ensure that RELEASE builds are not broken
     runs-on: ubuntu-latest
     steps:
     - name: Checkout code

+ 6 - 0
nuget.config

@@ -16,5 +16,11 @@
     <packageSource key="nuget">
       <package pattern="*" />
     </packageSource>
+	<packageSource key="LocalPackages">
+	 <package pattern="*" />
+	</packageSource>
+	<packageSource key="local_packages">
+	 <package pattern="*" />
+	</packageSource>
   </packageSourceMapping>
 </configuration>