Skip to content

Commit

Permalink
Correcting installer and documentation with new dotnet version
Browse files Browse the repository at this point in the history
  • Loading branch information
XanatosX committed Sep 19, 2024
1 parent f95fe9c commit 3b08785
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/developer/my-first-plugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dotnet restore
dotnet build
```

>:warning: Make sure that your plugin does target `.net7.0`
>:warning: Make sure that your plugin does target `.net8.0`
Open the plugin with a code editor like [vscode][vscode].

Expand Down Expand Up @@ -172,7 +172,7 @@ First of all make sure the path does exist, and the ending is indeed supported.

To see the complete code of the tutorial class take a look at my [this gist][complete-class].

Build your plugin for testing purpose via `dotnet build`. Go into the `bin/Debug/net7.0` directory and search for the `MyFirstPlugin.dll`. Copy the file and to the directory described in the next part.
Build your plugin for testing purpose via `dotnet build`. Go into the `bin/Debug/net8.0` directory and search for the `MyFirstPlugin.dll`. Copy the file and to the directory described in the next part.

## Add the plugin to the manager

Expand Down
2 changes: 1 addition & 1 deletion setup/windows/ModularToolManagersSetup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#define InstalltionDocumentFolder ".\documents"
#define ApplicationMainFolder "..\.."
#ifndef BuildFolder
#define BuildFolder ApplicationMainFolder + "\src\ModularToolManager\bin\Release\net7.0\win-x64\publish"
#define BuildFolder ApplicationMainFolder + "\src\ModularToolManager\bin\Release\net8.0\win-x64\publish"
#endif

[Setup]
Expand Down

0 comments on commit 3b08785

Please sign in to comment.