-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNuGet.config
More file actions
40 lines (40 loc) · 1.31 KB
/
NuGet.config
File metadata and controls
40 lines (40 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageAudit allowNoResponse="true" />
<packageSources>
<clear />
<add
key="nuget.org"
value="https://api.nuget.org/v3/index.json"
allowInsecureConnections="True"
/>
<add
key="sqlce"
value="https://package.sqlce.cn/v3/index.json"
allowInsecureConnections="True"
/>
</packageSources>
<packageSourceMapping>
<!-- Map internal / custom packages to sqlce; adjust patterns as needed -->
<packageSource key="sqlce">
<package pattern="GofFabric.*" />
<package pattern="PlasticMouldingExpert.*" />
<package pattern="SqlCe.*" />
<package pattern="Qiniu" />
<package pattern="DiffMatchPatchSharp" />
<package pattern="Oskarsson.AspNetCore.JsonPatch" />
</packageSource>
<!-- All remaining packages fall back to nuget.org -->
<packageSource key="nuget.org">
<package pattern="*" />
<package pattern="Microsoft.AspNetCore.Identity.EntityFrameworkCore" />
</packageSource>
</packageSourceMapping>
<packageSourceCredentials>
<sqlce>
<add key="username" value="jed" />
<add key="cleartextpassword" value="6vi08fp0z5e9" />
<add key="ValidAuthenticationTypes" value="basic" />
</sqlce>
</packageSourceCredentials>
</configuration>