I'm developing several games at once, and they all use the same helper C# class which I have named "Helpers.cs".
This script contains common helper functions.
I'm still making changes to this Helper.cs files quite often, and I have to take care to update this file for all of my projects: If I work at 3 projects as once, I have to make sure I didn't forget to update
Project 1\Assets\Scripts\Helpers.cs
Project 2\Assets\Scripts\Helpers.cs
Project 3\Assets\Scripts\Helpers.cs
This is error prone.
I would like to know if there is a way to have only 1 "Helper.cs", for example in
d:\dev\games\common\Helpers.cs
... and all projects would use this. Then I would only have to update the file once if edit it.
I'm using Windows.
Is this possible?