Build error when signing with snk key

前端 未结 6 1627
时光说笑
时光说笑 2021-01-12 06:30

Build error is occurring since using Visual Studio 2015. When building in Visual Studio 2015 this is occurring rarely. When building in TeamCity this occurs very often.

6条回答
  •  情深已故
    2021-01-12 06:58

    Try to clean up the temp folder that is used by the build. I have seen different types of problems when the temp folder has lots of files.

    Some of the tools are using GetTempFileName and they will get errors when temp has a lots of files

    The GetTempFileName method will raise an IOException if it is used to create more than 65535 files without deleting previous temporary files.

提交回复
热议问题