File tree 2 files changed +37
-0
lines changed
2 files changed +37
-0
lines changed Original file line number Diff line number Diff line change 7
7
<add key =" dotnet6" value =" https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet6/nuget/v3/index.json" />
8
8
<add key =" dotnet6-transport" value =" https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet6-transport/nuget/v3/index.json" />
9
9
<add key =" nuget.org" value =" https://api.nuget.org/v3/index.json" />
10
+ <!-- Used for the Rich Navigation indexing task -->
11
+ <add key =" richnav" value =" https://pkgs.dev.azure.com/azure-public/vside/_packaging/vs-buildservices/nuget/v3/index.json" />
10
12
</packageSources >
11
13
<disabledPackageSources />
12
14
</configuration >
Original file line number Diff line number Diff line change
1
+ trigger :
2
+ branches :
3
+ include :
4
+ - main
5
+
6
+ stages :
7
+ - stage : build
8
+ displayName : Build
9
+ jobs :
10
+ - template : eng/common/templates/jobs/jobs.yml
11
+ parameters :
12
+ enableMicrobuild : true
13
+ enableRichCodeNavigation : true
14
+ richCodeNavigationEnvironment : production
15
+ helixRepo : dotnet/efcore
16
+ jobs :
17
+ - job : Windows
18
+ timeoutInMinutes : 90
19
+ enablePublishTestResults : true
20
+ pool :
21
+ name : NetCorePublic-Pool
22
+ queue : BuildPool.Server.Amd64.VS2017.Open
23
+ steps :
24
+ - task : NuGetCommand@2
25
+ displayName : ' Clear NuGet caches'
26
+ condition : succeeded()
27
+ inputs :
28
+ command : custom
29
+ arguments : ' locals all -clear'
30
+
31
+ - task : PowerShell@2
32
+ inputs :
33
+ filePath : $(Build.SourcesDirectory)\eng\common\build.ps1
34
+ arguments : -restore -build -ci
35
+ displayName : Build
You can’t perform that action at this time.
0 commit comments