-
Notifications
You must be signed in to change notification settings - Fork 1
/
NuGet.config
22 lines (22 loc) · 914 Bytes
/
NuGet.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="timewarp-source-generators" value="./source/TimeWarp.SourceGenerators/bin/Packages" />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
<add key="globalPackagesFolder" value="./source/TimeWarp.SourceGenerators/bin/Packages" />
</packageSources>
<!-- Define mappings by adding package patterns beneath the target source. -->
<packageSourceMapping>
<!-- key value for <packageSource> should match key values from <packageSources> element -->
<packageSource key="timewarp-source-generators">
<package pattern="TimeWarp.SourceGenerators*" />
</packageSource>
<packageSource key="nuget.org">
<package pattern="*" />
</packageSource>
</packageSourceMapping>
<disabledPackageSources>
<clear />
</disabledPackageSources>
</configuration>