Skip to content

Commit

Permalink
Upgrade project to .NET 9.0 and update related configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasduft committed Dec 18, 2024
1 parent cba74fe commit 1be0ddd
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{
"name": "C# (.NET)",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/dotnet:1-8.0-bookworm"
"image": "mcr.microsoft.com/devcontainers/dotnet:1-9.0-bookworm"

// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
Expand Down
8 changes: 4 additions & 4 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-releasy",
"program": "${workspaceFolder}/src/releasy/bin/Debug/net8.0/tomware.Releasy.dll",
"program": "${workspaceFolder}/src/releasy/bin/Debug/net9.0/tomware.Releasy.dll",
"args": [
"add-changelog",
"-i",
Expand All @@ -26,7 +26,7 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-releasy",
"program": "${workspaceFolder}/src/releasy/bin/Debug/net8.0/tomware.Releasy.dll",
"program": "${workspaceFolder}/src/releasy/bin/Debug/net9.0/tomware.Releasy.dll",
"args": [
"add-changelog",
"-i",
Expand All @@ -46,7 +46,7 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-releasy",
"program": "${workspaceFolder}/src/releasy/bin/Debug/net8.0/tomware.Releasy.dll",
"program": "${workspaceFolder}/src/releasy/bin/Debug/net9.0/tomware.Releasy.dll",
"args": [
"update-changelog",
"-v",
Expand All @@ -66,7 +66,7 @@
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-releasy",
"program": "${workspaceFolder}/src/releasy/bin/Debug/net8.0/tomware.Releasy.dll",
"program": "${workspaceFolder}/src/releasy/bin/Debug/net9.0/tomware.Releasy.dll",
"args": [
"create-releasenotes",
"-v",
Expand Down
2 changes: 1 addition & 1 deletion build/targets.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<OutputType>Exe</OutputType>

<ImplicitUsings>enable</ImplicitUsings>
Expand Down
9 changes: 9 additions & 0 deletions changelogs/2bb8c982ce7949f58fb684b94668f47f.cle
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"Id": "2bb8c982-ce79-49f5-8fb6-84b94668f47f",
"IssueId": "",
"Prefix": "Added",
"Tag": "",
"Message": "Added support for .NET 9.0",
"CreatedAt": "2024-12-18T14:04:35.8476256+00:00",
"CreatedBy": "thomasduft"
}
2 changes: 1 addition & 1 deletion src/releasy/releasy.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<AssemblyName>tomware.Releasy</AssemblyName>
<RootNamespace>tomware.Releasy</RootNamespace>

Expand Down

0 comments on commit 1be0ddd

Please sign in to comment.