File tree 14 files changed +17
-23
lines changed
14 files changed +17
-23
lines changed Original file line number Diff line number Diff line change 5
5
<add key =" dotnet-public" value =" https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-public/nuget/v3/index.json" />
6
6
<add key =" dotnet-eng" value =" https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json" />
7
7
<add key =" dotnet-tools" value =" https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json" />
8
+ <!-- Feeds for packages built in the VMR (newly Arcade and other) -->
9
+ <add key =" dotnet10-transport" value =" https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet10-transport/nuget/v3/index.json" />
10
+ <add key =" dotnet10" value =" https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet10/nuget/v3/index.json" />
8
11
<!-- Feeds for command-line-api -->
9
12
<add key =" dotnet-libraries" value =" https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-libraries/nuget/v3/index.json" />
10
13
<!-- Feeds for source-build command-line-api intermediate -->
Original file line number Diff line number Diff line change 3
3
4
4
<UsageData >
5
5
<IgnorePatterns >
6
+ <!-- temporary until repo-level source-build is removed -->
7
+ <UsagePattern IdentityGlob =" Microsoft.DotNet.Arcade.Sdk/10.0.*" />
8
+ <UsagePattern IdentityGlob =" Microsoft.DotNet.Build.Tasks.Feed/10.0.*" />
9
+ <UsagePattern IdentityGlob =" Microsoft.DotNet.SourceBuild.Tasks/10.0.*" />
10
+ <UsagePattern IdentityGlob =" Microsoft.DotNet.XliffTasks/10.0.*" />
6
11
</IgnorePatterns >
7
12
</UsageData >
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<Dependencies >
3
+ <Source Uri =" https://github.com/dotnet/dotnet" Mapping =" sourcelink" Sha =" 49f46ce3082f22cd016b9fffdae880a09b04afcd" BarId =" 262746" />
3
4
<ProductDependencies >
4
5
<Dependency Name =" System.CommandLine" Version =" 2.0.0-beta4.23307.1" >
5
6
<Uri >https://github.com/dotnet/command-line-api</Uri >
19
20
</Dependency >
20
21
</ProductDependencies >
21
22
<ToolsetDependencies >
22
- <Dependency Name =" Microsoft.DotNet.Arcade.Sdk" Version =" 10.0.0-beta.25171.1" >
23
- <Uri >https://github.com/dotnet/arcade</Uri >
24
- <Sha >235443a5c1136571cacdfd40576f263f26bf5b9b</Sha >
25
- </Dependency >
26
- <Dependency Name =" Microsoft.DotNet.XliffTasks" Version =" 10.0.0-beta.25171.1" >
27
- <Uri >https://github.com/dotnet/arcade</Uri >
28
- <Sha >235443a5c1136571cacdfd40576f263f26bf5b9b</Sha >
23
+ <Dependency Name =" Microsoft.DotNet.Arcade.Sdk" Version =" 10.0.0-beta.25202.102" >
24
+ <Uri >https://github.com/dotnet/dotnet</Uri >
25
+ <Sha >49f46ce3082f22cd016b9fffdae880a09b04afcd</Sha >
29
26
</Dependency >
30
27
<!-- Intermediate is necessary for source build. -->
31
28
<Dependency Name =" Microsoft.SourceBuild.Intermediate.arcade" Version =" 10.0.0-beta.25171.1" >
Original file line number Diff line number Diff line change @@ -132,6 +132,7 @@ function Build {
132
132
/ p:PerformanceTest= $performanceTest `
133
133
/ p:Sign= $sign `
134
134
/ p:Publish= $publish `
135
+ / p:RestoreStaticGraphEnableBinaryLogger= $binaryLog `
135
136
@properties
136
137
}
137
138
@@ -171,4 +172,4 @@ catch {
171
172
ExitWithExitCode 1
172
173
}
173
174
174
- ExitWithExitCode 0
175
+ ExitWithExitCode 0
Original file line number Diff line number Diff line change @@ -250,6 +250,7 @@ function Build {
250
250
/p:PerformanceTest=$performance_test \
251
251
/p:Sign=$sign \
252
252
/p:Publish=$publish \
253
+ /p:RestoreStaticGraphEnableBinaryLogger=$binary_log \
253
254
$properties
254
255
255
256
ExitWithExitCode 0
@@ -267,4 +268,4 @@ if [[ "$restore" == true ]]; then
267
268
InitializeNativeTools
268
269
fi
269
270
270
- Build
271
+ Build
Original file line number Diff line number Diff line change 73
73
- ${{ if ne(parameters.enableTelemetry, 'false') }} :
74
74
- name : DOTNET_CLI_TELEMETRY_PROFILE
75
75
value : ' $(Build.Repository.Uri)'
76
- - ${{ if eq(parameters.enableRichCodeNavigation, 'true') }} :
77
- - name : EnableRichCodeNavigation
78
- value : ' true'
79
76
# Retry signature validation up to three times, waiting 2 seconds between attempts.
80
77
# See https://learn.microsoft.com/en-us/nuget/reference/errors-and-warnings/nu3028#retry-untrusted-root-failures
81
78
- name : NUGET_EXPERIMENTAL_CHAIN_BUILD_RETRY_POLICY
@@ -147,16 +144,6 @@ jobs:
147
144
- ${{ each step in parameters.steps }} :
148
145
- ${{ step }}
149
146
150
- - ${{ if eq(parameters.enableRichCodeNavigation, true) }} :
151
- - task : RichCodeNavIndexer@0
152
- displayName : RichCodeNav Upload
153
- inputs :
154
- languages : ${{ coalesce(parameters.richCodeNavigationLanguage, 'csharp') }}
155
- environment : ${{ coalesce(parameters.richCodeNavigationEnvironment, 'internal') }}
156
- richNavLogOutputDirectory : $(Build.SourcesDirectory)/artifacts/bin
157
- uploadRichNavArtifacts : ${{ coalesce(parameters.richCodeNavigationUploadArtifacts, false) }}
158
- continueOnError : true
159
-
160
147
- ${{ each step in parameters.componentGovernanceSteps }} :
161
148
- ${{ step }}
162
149
Original file line number Diff line number Diff line change 3
3
"dotnet" : " 10.0.100-preview.3.25167.3"
4
4
},
5
5
"msbuild-sdks" : {
6
- "Microsoft.DotNet.Arcade.Sdk" : " 10.0.0-beta.25171.1 " ,
6
+ "Microsoft.DotNet.Arcade.Sdk" : " 10.0.0-beta.25202.102 " ,
7
7
"Microsoft.Build.NoTargets" : " 3.7.0"
8
8
}
9
9
}
You can’t perform that action at this time.
0 commit comments