You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using this plugin and VSCode as my editor instead of Visual Studio, I noticed OnGeneratedCSProjectFiles was no longer being called.
Traced it to a change in source of unity 2019.3 where it now branches in PostprocessAllAssets of AssetPostprocessor.cs
Incase anyone else needs it, workaround I'm using for now is to have "monodevelop" somewhere in a folder name leading to my vscode install, which makes unity see it as ScriptEditor.MonoDevelop instead of ScriptEditor.Other so it runs the SyncVS version of PostprocessSyncProject and does the callbacks again.
Which in turn lets me change the framework version/CPU type so omnisharp 1.18 actually loads it properly with .net 4.6.1 (as 4.7.1+ won't install on my system)
Also, the asset store version of this plugin is listed as from august 2019, but it's 2.7 which seems to be several years old. Pressing 'Force Update' works, but some people won't try that if they have a version listed as being the current.
Probably minor, but noticed the header of my .sln was tagged as # Visual Studio 2010 not 08 so tweaked the ScrubSolutionContent part to account for that (and added another newline or it'd end up without one).
The text was updated successfully, but these errors were encountered:
When using this plugin and VSCode as my editor instead of Visual Studio, I noticed OnGeneratedCSProjectFiles was no longer being called.
Traced it to a change in source of unity 2019.3 where it now branches in PostprocessAllAssets of AssetPostprocessor.cs
Incase anyone else needs it, workaround I'm using for now is to have "monodevelop" somewhere in a folder name leading to my vscode install, which makes unity see it as ScriptEditor.MonoDevelop instead of ScriptEditor.Other so it runs the SyncVS version of PostprocessSyncProject and does the callbacks again.
Which in turn lets me change the framework version/CPU type so omnisharp 1.18 actually loads it properly with .net 4.6.1 (as 4.7.1+ won't install on my system)
Also, the asset store version of this plugin is listed as from august 2019, but it's 2.7 which seems to be several years old. Pressing 'Force Update' works, but some people won't try that if they have a version listed as being the current.
Probably minor, but noticed the header of my .sln was tagged as # Visual Studio 2010 not 08 so tweaked the ScrubSolutionContent part to account for that (and added another newline or it'd end up without one).
The text was updated successfully, but these errors were encountered: