Seems like VSTU blocks the project settings window in visual studio community 2015. It took me a good while to figure this out since it gives me no message that the window was blocked - it just refuses to open (not very user friendly).
So my problem is that I want to generate XML docs for my project and since the project property window is blocked from opening there is no way for me to do this.
How do I work around this?
1 Like
I found a workaround by manually editing the .csproj file and adding the following:
Wait, which .csproj
And how do you build it after adding in that line?
My project has many csproj files, 1 per .asmdef in my Unity project,
So you can add this to any or all of your csproj files!
I found out that Unity’s csproj files DON’T seem to support true, but DO support the solution presented above!
I just put it in the first PropertyGroup like this near the top of the file:
(You only need to add something like Line 6 from my screenshot – and feel free to put any file path you’d like there, relative to your Unity project folder)
1 Like