Skip to content

Commit 429745d

Browse files
authored
Update .NET 11 to preview 4 (#84)
1 parent bc77f35 commit 429745d

7 files changed

Lines changed: 3997 additions & 3691 deletions

File tree

Src/Basic.Reference.Assemblies.AspNet110/Basic.Reference.Assemblies.AspNet110.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.AspNetCore.App.Ref" Version="11.0.0-preview.3.26207.106" IncludeAssets="none" PrivateAssets="all" GeneratePathProperty="true" />
10+
<PackageReference Include="Microsoft.AspNetCore.App.Ref" Version="11.0.0-preview.4.26230.115" IncludeAssets="none" PrivateAssets="all" GeneratePathProperty="true" />
1111
</ItemGroup>
1212

1313
<Import Project="Generated.targets" />

Src/Basic.Reference.Assemblies.AspNet110/Generated.cs

Lines changed: 1821 additions & 1821 deletions
Large diffs are not rendered by default.

Src/Basic.Reference.Assemblies.AspNet110/Generated.targets

Lines changed: 636 additions & 636 deletions
Large diffs are not rendered by default.

Src/Basic.Reference.Assemblies.Net110/Basic.Reference.Assemblies.Net110.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Microsoft.NETCore.App.Ref" Version="11.0.0-preview.3.26207.106" IncludeAssets="none" PrivateAssets="all" GeneratePathProperty="true" />
9+
<PackageReference Include="Microsoft.NETCore.App.Ref" Version="11.0.0-preview.4.26230.115" IncludeAssets="none" PrivateAssets="all" GeneratePathProperty="true" />
1010
</ItemGroup>
1111

1212
<Import Project="Generated.targets" />

Src/Basic.Reference.Assemblies.Net110/Generated.cs

Lines changed: 1161 additions & 891 deletions
Large diffs are not rendered by default.

Src/Basic.Reference.Assemblies.Net110/Generated.targets

Lines changed: 372 additions & 336 deletions
Large diffs are not rendered by default.

Src/Generate/Program.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ void Net100Wasm()
120120

121121
void 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

154154
void 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

Comments
 (0)