File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 15
15
<SharedFxName >Microsoft.AspNetCore.App</SharedFxName >
16
16
<PackageId >$(MSBuildProjectName).$(RuntimeIdentifier)</PackageId >
17
17
<IsShippingPackage >true</IsShippingPackage >
18
- <!-- Undo for Preview4. Preview 3 is shipping using the runtime.$(rid) packages instead. -->
19
- <IsPackable Condition =" '$(PreReleaseLabel)'=='preview3'" >false</IsPackable >
20
18
21
19
<PackageDescription >Provides a default set of APIs for building an ASP.NET Core application. Contains assets used for self-contained deployments.
22
20
Original file line number Diff line number Diff line change @@ -35,9 +35,9 @@ public void SharedFrameworkContainsExpectedFiles()
35
35
. ToHashSet ( ) ;
36
36
37
37
_output . WriteLine ( "==== actual assemblies ====" ) ;
38
- _output . WriteLine ( string . Join ( '\n ' , actualAssemblies ) ) ;
38
+ _output . WriteLine ( string . Join ( '\n ' , actualAssemblies . OrderBy ( i => i ) ) ) ;
39
39
_output . WriteLine ( "==== expected assemblies ====" ) ;
40
- _output . WriteLine ( string . Join ( '\n ' , expectedAssemblies ) ) ;
40
+ _output . WriteLine ( string . Join ( '\n ' , expectedAssemblies . OrderBy ( i => i ) ) ) ;
41
41
42
42
var missing = expectedAssemblies . Except ( actualAssemblies ) ;
43
43
var unexpected = actualAssemblies . Except ( expectedAssemblies ) ;
@@ -62,7 +62,7 @@ public void PlatformManifestListsAllFiles()
62
62
_output . WriteLine ( "==== file contents ====" ) ;
63
63
_output . WriteLine ( File . ReadAllText ( platformManifestPath ) ) ;
64
64
_output . WriteLine ( "==== expected assemblies ====" ) ;
65
- _output . WriteLine ( string . Join ( '\n ' , expectedAssemblies ) ) ;
65
+ _output . WriteLine ( string . Join ( '\n ' , expectedAssemblies . OrderBy ( i => i ) ) ) ;
66
66
67
67
AssertEx . FileExists ( platformManifestPath ) ;
68
68
You can’t perform that action at this time.
0 commit comments