Add nuget config and add local-packages directory to it

This commit is contained in:
2026-06-08 13:07:56 +02:00
parent 64b2121fa1
commit 14c70888e4
3 changed files with 13 additions and 1 deletions
+1 -1
View File
@@ -207,7 +207,7 @@ PublishScripts/
*.nuget.targets
# Nuget personal access tokens and Credentials
nuget.config
# nuget.config
# Microsoft Azure Build Output
csx/
+6
View File
@@ -24,6 +24,12 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Rsdo.Concordancer.Data", "c
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Rsdo.Concordancer.SystemManager", "apps\Rsdo.Concordancer.SystemManager\Rsdo.Concordancer.SystemManager.csproj", "{41B26AD1-C0A5-4796-95D0-CB84FB574A83}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{0BC9D8CB-3F46-40F4-B769-E2605F03E0F6}"
ProjectSection(SolutionItems) = preProject
nuget.config = nuget.config
.gitignore = .gitignore
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
+6
View File
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="local-packages" value="./../local-packages" />
</packageSources>
</configuration>