@@ -120,7 +120,7 @@ void Net100Wasm()
120120
121121void Net110 ( )
122122{
123- var content = GetGeneratedContent ( "Net110" , [ @"microsoft.netcore.app.ref/11.0.0-preview.3.26207.106 /ref/net11.0" ] ) ;
123+ var content = GetGeneratedContent ( "Net110" , [ @"microsoft.netcore.app.ref/11.0.0-preview.4.26230.115 /ref/net11.0" ] ) ;
124124 var targetDir = Path . Combine ( srcPath , "Basic.Reference.Assemblies.Net110" ) ;
125125 File . WriteAllText ( Path . Combine ( targetDir , "Generated.cs" ) , content . CodeContent , encoding ) ;
126126 File . WriteAllText ( Path . Combine ( targetDir , "Generated.targets" ) , content . TargetsContent , encoding ) ;
@@ -153,7 +153,7 @@ void AspNet100()
153153
154154void AspNet110 ( )
155155{
156- var content = GetGeneratedContent ( "AspNet110" , [ @"microsoft.netcore.app.ref/11.0.0-preview.3.26207.106 /ref/net11.0" , @"microsoft.aspnetcore.app.ref/11.0.0-preview.3.26207.106 /ref/net11.0" ] ) ;
156+ var content = GetGeneratedContent ( "AspNet110" , [ @"microsoft.netcore.app.ref/11.0.0-preview.4.26230.115 /ref/net11.0" , @"microsoft.aspnetcore.app.ref/11.0.0-preview.4.26230.115 /ref/net11.0" ] ) ;
157157 var targetDir = Path . Combine ( srcPath , "Basic.Reference.Assemblies.AspNet110" ) ;
158158 File . WriteAllText ( Path . Combine ( targetDir , "Generated.cs" ) , content . CodeContent , encoding ) ;
159159 File . WriteAllText ( Path . Combine ( targetDir , "Generated.targets" ) , content . TargetsContent , encoding ) ;
@@ -609,13 +609,13 @@ public static ImmutableArray<PortableExecutableReference> All
609609 foreach ( var packagePath in packagePaths )
610610 {
611611 dllPaths . AddRange ( Directory . GetFiles ( packagePath , "*.dll" ) ) ;
612-
612+
613613 var facadesPath = Path . Combine ( packagePath , "Facades" ) ;
614614 if ( Directory . Exists ( facadesPath ) )
615615 {
616616 dllPaths . AddRange ( Directory . GetFiles ( facadesPath , "*.dll" ) ) ;
617617 }
618-
618+
619619 var nativePath = Path . GetFullPath ( Path . Combine ( packagePath , ".." , ".." , "native" ) ) ;
620620 if ( Directory . Exists ( nativePath ) )
621621 {
@@ -634,7 +634,7 @@ public static ImmutableArray<PortableExecutableReference> All
634634 {
635635 continue ;
636636 }
637-
637+
638638 var relativeFilePath = dllPath . Substring ( packagePrefix . Length ) ;
639639 yield return ( dllPath , relativeFilePath , mvid ) ;
640640 }
0 commit comments