Every time I make a debug or release run of the applications I am working on, Visual Studio generates five files that do not get cleaned up. Assume my application (which uses the x64 platform) is named ABC, these files are located in:
ABC\obj\x64\Debug\net8.0-windows
ABC\obj\x64\Debug\net8.0-windows10.0.26100.0
and
ABC\obj\x64\Release\net8.0-windows
ABC\obj\x64\Release\net8.0-windows10.0.26100.0
Again with my application named ABC and with String8 being an (apparently) random string of eight characters, the files are named:
ABC_String8_wpftmp.AssemblyInfo.vb
ABC_String8_wpftmp.AssemblyInfoInputs.cache
ABC_String8_wpftmp.assets.cache
ABC_String8_wpftmp.GeneratedMSBuildEditorConfig.editorconfig
ABC_String8_wpftmp.vbproj.BuildWithSkipAnalyzers
I just recently discovered this so hundreds and hundreds of these files had accumulated in those directories. Is this normal behavior? Is there a Visual Studio setting that would tell it to delete these files?