加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
NuGet.Config 1.58 KB
一键复制 编辑 原始数据 按行查看 历史
ArcherTrister 提交于 2024-09-25 15:05 . Update version to 8.3.0-beta
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<!-- Define the package sources, nuget.org and contoso.com. -->
<!-- `clear` ensures no additional sources are inherited from another config file. -->
<packageSources>
<clear />
<!-- `key` can be any identifier for your source. -->
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
<!--<add key="nexus" value="http://127.0.0.1:8081/repository/nuget-group/index.json" />-->
<add key="Github" value="https://api.nuget.pkg.github.com/ArcherTrister" />
</packageSources>
<!-- Define mappings by adding package patterns beneath the target source. -->
<!-- Contoso.* packages and NuGet.Common will be restored from contoso.com,
everything else from nuget.org. -->
<packageSourceMapping>
<!--<packageSource key="nexus">
<package pattern="X.Abp.*" />
</packageSource>-->
<packageSource key="Github">
<package pattern="IdentityServer4" />
<package pattern="IdentityServer4.*" />
</packageSource>
<!-- key value for <packageSource> should match key values from <packageSources> element -->
<packageSource key="NuGet">
<package pattern="*" />
</packageSource>
</packageSourceMapping>
<packageSourceCredentials>
<!--<nexus>
<add key="Username" value="admin" />
<add key="ClearTextPassword" value="123456" />
<add key="ValidAuthenticationTypes" value="basic" />
</nexus>-->
</packageSourceCredentials>
</configuration>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化