mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-16 21:00:14 +00:00
### Description <!-- Describe your changes. --> Comment out ORT-Nightly feed in NuGet.config to see if that makes the Secure Supply Chain Analysis CI step happy. Add info to readme on manually adding feed and using it. ### Motivation and Context <!-- - Why is this change required? What problem does it solve? - If it fixes an open issue, please link to the issue here. -->
16 lines
586 B
XML
16 lines
586 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<configuration>
|
|
<solution>
|
|
<add key="disableSourceControlIntegration" value="true" />
|
|
</solution>
|
|
<packageSources>
|
|
<clear />
|
|
<add key="NuGet Official" value="https://api.nuget.org/v3/index.json" />
|
|
<!-- Uncomment the following line to use packages from the ORT nightly feed
|
|
<add key="ORT-Nightly" value="https://aiinfra.pkgs.visualstudio.com/PublicPackages/_packaging/ORT-Nightly/nuget/v3/index.json" />
|
|
-->
|
|
</packageSources>
|
|
<disabledPackageSources>
|
|
<clear />
|
|
</disabledPackageSources>
|
|
</configuration>
|