diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json new file mode 100644 index 0000000..1f4d87e --- /dev/null +++ b/.config/dotnet-tools.json @@ -0,0 +1,13 @@ +{ + "version": 1, + "isRoot": true, + "tools": { + "docfx": { + "version": "2.78.2", + "commands": [ + "docfx" + ], + "rollForward": false + } + } +} \ No newline at end of file diff --git a/.github/workflows/docfx.yml b/.github/workflows/docfx.yml index b245885..43a3456 100644 --- a/.github/workflows/docfx.yml +++ b/.github/workflows/docfx.yml @@ -32,9 +32,9 @@ jobs: - name: Generate docs run: | - dotnet tool update -g docfx + dotnet tool restore dotnet restore - docfx + dotnet docfx env: DOCFX_SOURCE_BRANCH_NAME: ${{ github.ref_name }} diff --git a/lib/Npp.DotNet.Plugin.csproj b/lib/Npp.DotNet.Plugin.csproj index b924fed..a552bfa 100644 --- a/lib/Npp.DotNet.Plugin.csproj +++ b/lib/Npp.DotNet.Plugin.csproj @@ -2,7 +2,7 @@ 0.1.0.0 - alpha.1 + alpha.2 Kasper B. Graversen, Mark Johnston Olson, Robert Di Pardo (c) 2016-2024 Kasper B. Graversen and Contributors AOT-ready port of the .NET Framework plugin template for Notepad++ diff --git a/scripts/pack.ps1 b/scripts/pack.ps1 index 95216fe..aa1d999 100644 --- a/scripts/pack.ps1 +++ b/scripts/pack.ps1 @@ -13,7 +13,7 @@ try { { & dotnet build -c Release -f $tfm } - & dotnet pack --no-build + & dotnet pack --no-build -o .\bin\Release } catch { $_.InvocationInfo.PositionMessage; $_.Exception.Message } finally {