File tree Expand file tree Collapse file tree 3 files changed +15
-15
lines changed
test/Microsoft.TemplateEngine.Edge.UnitTests Expand file tree Collapse file tree 3 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 19
19
</Dependency >
20
20
</ProductDependencies >
21
21
<ToolsetDependencies >
22
- <Dependency Name =" Microsoft.DotNet.Arcade.Sdk" Version =" 9.0.0-beta.25255 .5" >
22
+ <Dependency Name =" Microsoft.DotNet.Arcade.Sdk" Version =" 9.0.0-beta.25263 .5" >
23
23
<Uri >https://github.com/dotnet/arcade</Uri >
24
- <Sha >1cfa39f82d00b3659a3d367bc344241946e10681 </Sha >
24
+ <Sha >93823d49ca01742464ad1c0b49ea940e693b1be3 </Sha >
25
25
</Dependency >
26
26
<!-- Intermediate is necessary for source build. -->
27
- <Dependency Name =" Microsoft.SourceBuild.Intermediate.arcade" Version =" 9.0.0-beta.25255 .5" >
27
+ <Dependency Name =" Microsoft.SourceBuild.Intermediate.arcade" Version =" 9.0.0-beta.25263 .5" >
28
28
<Uri >https://github.com/dotnet/arcade</Uri >
29
- <Sha >1cfa39f82d00b3659a3d367bc344241946e10681 </Sha >
29
+ <Sha >93823d49ca01742464ad1c0b49ea940e693b1be3 </Sha >
30
30
<SourceBuild RepoName =" arcade" ManagedOnly =" true" />
31
31
</Dependency >
32
32
<!-- Dependencies required for source build. We'll still update manually -->
Original file line number Diff line number Diff line change 1
1
{
2
2
"tools" : {
3
- "dotnet" : " 9.0.105 "
3
+ "dotnet" : " 9.0.106 "
4
4
},
5
5
"msbuild-sdks" : {
6
- "Microsoft.DotNet.Arcade.Sdk" : " 9.0.0-beta.25255 .5"
6
+ "Microsoft.DotNet.Arcade.Sdk" : " 9.0.0-beta.25263 .5"
7
7
}
8
8
}
Original file line number Diff line number Diff line change @@ -146,13 +146,13 @@ internal async Task DownloadPackage_HasVulnerabilities()
146
146
147
147
var exception = await Assert . ThrowsAsync < VulnerablePackageException > ( ( ) => packageManager . DownloadPackageAsync (
148
148
installPath ,
149
- "log4net " ,
150
- "2 .0.3 " ,
149
+ "System.Text.Json " ,
150
+ "8 .0.4 " ,
151
151
// add the source for getting vulnerability info
152
152
additionalSources : _additionalSources ) ) ;
153
153
154
- exception . PackageIdentifier . Should ( ) . Be ( "log4net " ) ;
155
- exception . PackageVersion . Should ( ) . Be ( "2 .0.3 " ) ;
154
+ exception . PackageIdentifier . Should ( ) . Be ( "System.Text.Json " ) ;
155
+ exception . PackageVersion . Should ( ) . Be ( "8 .0.4 " ) ;
156
156
exception . Vulnerabilities . Should ( ) . NotBeNullOrEmpty ( ) ;
157
157
}
158
158
@@ -167,15 +167,15 @@ internal async Task DownloadPackage_HasVulnerabilitiesForce()
167
167
168
168
var result = await packageManager . DownloadPackageAsync (
169
169
installPath ,
170
- "log4net " ,
171
- "2 .0.3 " ,
170
+ "System.Text.Json " ,
171
+ "8 .0.4 " ,
172
172
// add the source for getting vulnerability info
173
173
additionalSources : _additionalSources ,
174
174
force : true ) ;
175
175
176
- result . PackageIdentifier . Should ( ) . Be ( "log4net " ) ;
177
- result . Author . Should ( ) . Be ( "Apache Software Foundation " ) ;
178
- result . PackageVersion . Should ( ) . Be ( "2 .0.3 " ) ;
176
+ result . PackageIdentifier . Should ( ) . Be ( "System.Text.Json " ) ;
177
+ result . Author . Should ( ) . Be ( "Microsoft " ) ;
178
+ result . PackageVersion . Should ( ) . Be ( "8 .0.4 " ) ;
179
179
Assert . True ( File . Exists ( result . FullPath ) ) ;
180
180
result . PackageVulnerabilities . Should ( ) . NotBeNullOrEmpty ( ) ;
181
181
result . NuGetSource . Should ( ) . Be ( _additionalSources [ 0 ] ) ;
You can’t perform that action at this time.
0 commit comments