Skip to content

Commit f81460a

Browse files
committed
v0.6.0
1 parent 1d97b0e commit f81460a

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
## [0.6.0](https://github.com/xt0rted/dotnet-run-script/compare/v0.5.0...v0.6.0) - 2024-04-10
6+
57
- Dropped support for .NET Core 3.1
68
- Dropped Support for .NET 6
79
- Added support for .NET 8

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ dotnet new tool-manifest
2121
dotnet tool install run-script
2222
```
2323

24-
> **Warning**
24+
> [!WARNING]
2525
> Installing this tool globally is not recommended.
2626
> PowerShell defines the alias `r` for the `Invoke-History` command which prevents this from being called.
2727
> You'll also run into issues calling this from your scripts since global tools don't use the `dotnet` prefix.
@@ -68,7 +68,7 @@ In your project's `global.json` add a `scripts` object:
6868
```jsonc
6969
{
7070
"sdk": {
71-
"version": "6.0.100",
71+
"version": "8.0.203",
7272
"rollForward": "latestPatch"
7373
},
7474
"scriptShell": "pwsh", // Optional
@@ -80,7 +80,7 @@ In your project's `global.json` add a `scripts` object:
8080
}
8181
```
8282

83-
> **Note**
83+
> [!NOTE]
8484
> The shell used depends on the OS.
8585
> On Windows `CMD` is used, on Linux, macOS, and WSL `sh` is used.
8686
> This can be overridden by setting the `scriptShell` property or by passing the `--script-shell` option with the name of the shell to use.

0 commit comments

Comments
 (0)