Skip to content

Commit cc88cef

Browse files
authored
Move to Central Feed Service (CFS) (#9146)
1 parent cc57955 commit cc88cef

File tree

4 files changed

+1
-51
lines changed

4 files changed

+1
-51
lines changed

.sscignore

-1
This file was deleted.

eng/pipelines/official.yml

-7
Original file line numberDiff line numberDiff line change
@@ -89,13 +89,6 @@ variables:
8989
# Opt out of automatically injecting Codesign Validation into the pipeline. We run Codesign Validation as part of the Compliance pipeline.
9090
# See: https://aka.ms/gdn-injection
9191
runCodesignValidationInjection: false
92-
# Suspend enforcement of NuGet Single Feed Policy. See:
93-
# - https://aka.ms/nugetmultifeed
94-
# - https://docs.opensource.microsoft.com/tools/nuget_security_analysis/nuget_security_analysis/
95-
# - https://docs.opensource.microsoft.com/tools/cg/how-to/nuget-multifeed-configuration/
96-
# - https://onebranch.visualstudio.com/OneBranch/_wiki/wikis/OneBranch.wiki/5205/TSG-Build-Broken-Due-to-Using-Multiple-Feeds?anchor=setting-nugetsecurityanalysiswarninglevel-in-cdp
97-
NugetSecurityAnalysisWarningLevel: none
98-
NugetMultiFeedWarnLevel: none
9992
# Allows CodeQL to run on our Build job.
10093
# https://eng.ms/docs/cloud-ai-platform/devdiv/one-engineering-system-1es/1es-docs/codeql/configuring-codeql3000-ado-pipelines
10194
Codeql.Enabled: true

eng/pipelines/pull-request.yml

-6
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,6 @@ variables:
4343
# Opt out of automatically injecting Codesign Validation into the pipeline.
4444
# See: https://aka.ms/gdn-injection
4545
runCodesignValidationInjection: false
46-
# Suspend enforcement of NuGet Single Feed Policy. See:
47-
# - https://aka.ms/nugetmultifeed
48-
# - https://docs.opensource.microsoft.com/tools/nuget_security_analysis/nuget_security_analysis/
49-
# - https://docs.opensource.microsoft.com/tools/cg/how-to/nuget-multifeed-configuration/
50-
# - https://onebranch.visualstudio.com/OneBranch/_wiki/wikis/OneBranch.wiki/5205/TSG-Build-Broken-Due-to-Using-Multiple-Feeds?anchor=setting-nugetsecurityanalysiswarninglevel-in-cdp
51-
NugetSecurityAnalysisWarningLevel: none
5246

5347
###################################################################################################################################################################
5448
# STAGES

nuget.config

+1-37
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,8 @@
11
<!-- Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the LICENSE file in the project root for more information. -->
22

3-
<!-- Reference documentation: https://docs.microsoft.com/en-us/nuget/reference/nuget-config-file -->
4-
<!-- TODO: Migrate to Central Feed Services (CFS) when public feeds with upstream sources are available. -->
5-
<!-- For details: https://eng.ms/docs/cloud-ai-platform/developer-services/one-engineering-system-1es/1es-docs/secure-supply-chain/project-artemis/central-feed-services-cfs -->
63
<configuration>
74
<packageSources>
85
<clear />
9-
<!-- CPS components including: Microsoft.VisualStudio.ProjectSystem -->
10-
<add key="vs-impl" value="https://pkgs.dev.azure.com/azure-public/vside/_packaging/vs-impl/nuget/v3/index.json" />
11-
<add key="vs-impl-archived" value="https://pkgs.dev.azure.com/azure-public/vside/_packaging/vs-impl-archived/nuget/v3/index.json" />
12-
<!-- Microsoft.VisualStudio components -->
13-
<add key="vssdk" value="https://pkgs.dev.azure.com/azure-public/vside/_packaging/vssdk/nuget/v3/index.json" />
14-
<add key="vssdk-archived" value="https://pkgs.dev.azure.com/azure-public/vside/_packaging/vssdk-archived/nuget/v3/index.json" />
15-
<!--
16-
Various packages including:
17-
Microsoft.DiaSymReader.Pdb2Pdb
18-
Microsoft.CodeAnalysis
19-
Microsoft.CodeAnalysis.Features
20-
NuGet.VisualStudio
21-
-->
22-
<add key="dotnet-tools" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json" />
23-
<!--
24-
Various packages including:
25-
xunit
26-
xunit.assert
27-
xunit.extensibility.core
28-
xunit.extensibility.execution
29-
XliffTasks
30-
Microsoft.VisualStudioEng.MicroBuild.Plugins.SwixBuild
31-
-->
32-
<add key="dotnet-eng" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json" />
33-
<!--
34-
Public components including:
35-
Nerdbank.GitVersioning
36-
Codecov
37-
-->
38-
<add key="nuget" value="https://api.nuget.org/v3/index.json" />
6+
<add key="dotnet-project-system-public-packages" value="https://pkgs.dev.azure.com/azure-public/vside/_packaging/dotnet-project-system-public-packages/nuget/v3/index.json" />
397
</packageSources>
40-
<!-- Clear the machine-defined disabled package sources, which may include one of our package sources defined above. -->
41-
<disabledPackageSources>
42-
<clear />
43-
</disabledPackageSources>
448
</configuration>

0 commit comments

Comments
 (0)