Skip to content

Commit

Permalink
Move to net9.0 RTM (#66)
Browse files Browse the repository at this point in the history
* Move to net9.0 RTM

Now that `net9.0` is released, update the references

closes #65
  • Loading branch information
jaredpar authored Jan 6, 2025
1 parent 66263ca commit 02afc33
Show file tree
Hide file tree
Showing 8 changed files with 942 additions and 944 deletions.
14 changes: 6 additions & 8 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,18 @@
},
},
{
"label": "build generate",
"label": "run generate",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/Src/Generate/Generate.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary",
"/tl:off"
"run",
"--project",
"${workspaceFolder}/Src/Generate/Generate.csproj"
],
"problemMatcher": "$msCompile",
"group": {
"kind": "build",
"isDefault": true
"kind": "none",
"isDefault": false
},
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.App.Ref" Version="9.0.0-preview.6.24328.4" IncludeAssets="none" PrivateAssets="all" GeneratePathProperty="true" />
<PackageReference Include="Microsoft.AspNetCore.App.Ref" Version="9.0.0" IncludeAssets="none" PrivateAssets="all" GeneratePathProperty="true" />
</ItemGroup>

<Import Project="Generated.targets" />
Expand Down
604 changes: 302 additions & 302 deletions Src/Basic.Reference.Assemblies.AspNet90/Generated.cs

Large diffs are not rendered by default.

604 changes: 302 additions & 302 deletions Src/Basic.Reference.Assemblies.AspNet90/Generated.targets

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NETCore.App.Ref" Version="9.0.0-preview.6.24327.7" IncludeAssets="none" PrivateAssets="all" GeneratePathProperty="true" ExcludeAssets="analyzers" />
<PackageReference Include="Microsoft.NETCore.App.Ref" Version="9.0.0" IncludeAssets="none" PrivateAssets="all" GeneratePathProperty="true" ExcludeAssets="analyzers" />
</ItemGroup>

<Import Project="Generated.targets" />
Expand Down
328 changes: 164 additions & 164 deletions Src/Basic.Reference.Assemblies.Net90/Generated.cs

Large diffs are not rendered by default.

328 changes: 164 additions & 164 deletions Src/Basic.Reference.Assemblies.Net90/Generated.targets

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Src/Generate/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ void Net80Windows()

void Net90()
{
var content = GetGeneratedContent("Net90", [@"microsoft.netcore.app.ref\9.0.0-preview.6.24327.7\ref\net9.0"]);
var content = GetGeneratedContent("Net90", [@"microsoft.netcore.app.ref\9.0.0\ref\net9.0"]);
var targetDir = Path.Combine(srcPath, "Basic.Reference.Assemblies.Net90");
File.WriteAllText(Path.Combine(targetDir, "Generated.cs"), content.CodeContent, encoding);
File.WriteAllText(Path.Combine(targetDir, "Generated.targets"), content.TargetsContent, encoding);
Expand All @@ -104,7 +104,7 @@ void AspNet80()

void AspNet90()
{
var content = GetGeneratedContent("AspNet90", [@"microsoft.netcore.app.ref\9.0.0-preview.6.24327.7\ref\net9.0", @"microsoft.aspnetcore.app.ref\9.0.0-preview.6.24328.4\ref\net9.0"]);
var content = GetGeneratedContent("AspNet90", [@"microsoft.netcore.app.ref\9.0.0\ref\net9.0", @"microsoft.aspnetcore.app.ref\9.0.0\ref\net9.0"]);
var targetDir = Path.Combine(srcPath, "Basic.Reference.Assemblies.AspNet90");
File.WriteAllText(Path.Combine(targetDir, "Generated.cs"), content.CodeContent, encoding);
File.WriteAllText(Path.Combine(targetDir, "Generated.targets"), content.TargetsContent, encoding);
Expand Down

0 comments on commit 02afc33

Please sign in to comment.