Skip to content

Commit

Permalink
Update 2_plugin_start.md (#29)
Browse files Browse the repository at this point in the history
Changed .net standard version from 2.0 to 2.1 for games using unity 2021.2 or newer
  • Loading branch information
DerEffi authored Oct 6, 2024
1 parent bbab5e9 commit 35504d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion articles/dev_guide/plugin_tutorial/2_plugin_start.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ To create a project in the folder, do the following depending on the game type y

You can follow this general-purpose choice process:

* If the game has `netstandard.dll` in `<Game Name>_Data/Managed` folder, your TFM is `netstandard2.0`. If you run into reference errors, target `net472`.
* If the game has `netstandard.dll` in `<Game Name>_Data/Managed` folder, your TFM is `netstandard2.0` (for Unity 2021.1.x or older) or `netstandard2.1` (for Unity 2021.2 or newer). If you run into reference errors, target `net472`.
**OR**
* If the game's `mscorlib.dll` file version (right click the file -> `Properties` -> `Details`, `exiftool mscorlib.dll | grep "File Version"` on Linux) is at least `4.0.0.0` or newer, your TFM is `net46`
**OR**
Expand Down

0 comments on commit 35504d8

Please sign in to comment.