Visual Studio 2012 project is always out of date (.cs changed)

We have one project that is used in almost all other projects of our solution, and for some time the whole solution is always restored, because the source file in this project seems to be changing.

1> Utilities project is not updated. The input file '[...] \ utilities \ logging \ result.cs' changes after the output file '[...] bin \ Debug \ Utilities.pdb'.

But the file does not change at all in any other file in this project.

Can someone tell me where the problem might be? Thanks in advance!

+4
source share
3 answers

, . JavaScript.js, . PDB, , , .

.

+2

I was getting a similar error related to dll and pdb file. It turned out that between the projects (i.e. in the links to the projects) there is a circular dependency that causes the dll to be called after it is compiled. Removing unnecessary links is fixed.

+1
source

Source: https://habr.com/ru/post/1524037/


All Articles