Skip to content

Commit

Permalink
Release 0.1.0-alpha.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rdipardo committed Feb 2, 2025
1 parent 0a8ed8d commit 5c94cec
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
13 changes: 13 additions & 0 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"version": 1,
"isRoot": true,
"tools": {
"docfx": {
"version": "2.78.2",
"commands": [
"docfx"
],
"rollForward": false
}
}
}
4 changes: 2 additions & 2 deletions .github/workflows/docfx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand Down
2 changes: 1 addition & 1 deletion lib/Npp.DotNet.Plugin.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<VersionPrefix>0.1.0.0</VersionPrefix>
<VersionSuffix>alpha.1</VersionSuffix>
<VersionSuffix>alpha.2</VersionSuffix>
<Authors>Kasper B. Graversen, Mark Johnston Olson, Robert Di Pardo</Authors>
<Copyright>(c) 2016-2024 Kasper B. Graversen and Contributors</Copyright>
<Description>AOT-ready port of the .NET Framework plugin template for Notepad++</Description>
Expand Down
2 changes: 1 addition & 1 deletion scripts/pack.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 5c94cec

Please sign in to comment.