File tree Expand file tree Collapse file tree 3 files changed +4
-7
lines changed
src/installer/tests/Microsoft.DotNet.CoreSetup.Packaging.Tests Expand file tree Collapse file tree 3 files changed +4
-7
lines changed Original file line number Diff line number Diff line change 11<Project >
22 <PropertyGroup >
33 <!-- The .NET product branding version -->
4- <ProductVersion >6.0.1 </ProductVersion >
4+ <ProductVersion >6.0.2 </ProductVersion >
55 <!-- File version numbers -->
66 <MajorVersion >6</MajorVersion >
77 <MinorVersion >0</MinorVersion >
8- <PatchVersion >1 </PatchVersion >
8+ <PatchVersion >2 </PatchVersion >
99 <SdkBandVersion >6.0.100</SdkBandVersion >
1010 <PreReleaseVersionLabel >servicing</PreReleaseVersionLabel >
1111 <PreReleaseVersionIteration ></PreReleaseVersionIteration >
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ public void NETCoreTargetingPackIsValid()
1818 "Microsoft.NETCore.App.Ref" ) )
1919 {
2020 // Allow no targeting pack in case this is a servicing build.
21- // This condition should be tightened: https://github.com/dotnet/core-setup /issues/8830
21+ // This condition should be tightened: https://github.com/dotnet/runtime /issues/3836
2222 if ( tester == null )
2323 {
2424 return ;
Original file line number Diff line number Diff line change @@ -41,10 +41,7 @@ public static NuGetArtifactTester OpenOrNull(
4141 "Shipping" ,
4242 $ "{ id } .{ dirs . MicrosoftNETCoreAppVersion } .nupkg") ;
4343
44- // If the nuspec exists, the nupkg should exist.
45- Assert . True ( File . Exists ( nupkgPath ) ) ;
46-
47- return new NuGetArtifactTester ( nupkgPath ) ;
44+ return File . Exists ( nupkgPath ) ? new NuGetArtifactTester ( nupkgPath ) : null ;
4845 }
4946
5047 public PackageIdentity Identity { get ; }
You can’t perform that action at this time.
0 commit comments