When I wanted multiple projects in a solution to share the same assembly informations (mainly AssemblyVersion), I used to use the tecnique explained here: https://blogs.msdn.microsoft.com/jjameson/2009/04/03/shared-assembly-info-in-visual-studio-projects/
Now we're working on a solution of .net core and asp.net core projects and we want all projects to share the same AssemblyVersion, but now each project's version is stored inside it's .csproj file (we're using vs2017)
I tried with generating info with <GenerateAssemblyProductAttribute>true</GenerateAssemblyProductAttribute>
but the new file is created at build-time
Is there a way to centralize this information like in the "old" SharedAssemblyInfo.cs way?