Move the extension pack to .NET 8

Also bump the version of the extension and update the changelog
This commit is contained in:
Manish Vasani 2023-11-22 13:27:24 +05:30
Родитель 9b171f9c54
Коммит 622e4e35ca
4 изменённых файлов: 7 добавлений и 4 удалений

Просмотреть файл

@ -1,5 +1,8 @@
# Changelog
## 1.0.13
- [Upgrade extension pack to depend on .NET 8](https://github.com/dotnet/vscode-dotnet-pack/pull/406)
## 1.0.12
- [Update readme and tags](https://github.com/dotnet/vscode-dotnet-pack/pull/404)

4
package-lock.json сгенерированный
Просмотреть файл

@ -1,12 +1,12 @@
{
"name": "vscode-dotnet-pack",
"version": "1.0.12",
"version": "1.0.13",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "vscode-dotnet-pack",
"version": "1.0.12",
"version": "1.0.13",
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"vscode-extension-telemetry-wrapper": "0.12.0"

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "vscode-dotnet-pack",
"version": "1.0.12",
"version": "1.0.13",
"preview": true,
"publisher": "ms-dotnettools",
"author": "Microsoft Corporation",

Просмотреть файл

@ -12,7 +12,7 @@ import { initialize as initExp } from "./exp";
import { scheduleAction } from "./utils/scheduler";
const isDotnetGettingStartedPresented = 'isDotnetGettingStartedPresented';
const dotnetSdkVersion = '7.0';
const dotnetSdkVersion = '8.0';
let gettingStartedShownByActivation = false;
interface DotnetPackExtensionExports {