Some time ago, because a project on VSS was intended for development and use by two companies, the requirements of the two companies were different.
Copy the project to another directory on VSS, and an error is returned when the project is compiled on another computer:
The access to the path to which the command line is written to file pai.csproj.filelistabsolute.txt is denied...
The file .csproj.filelistabsolute.txt is read-only.
Then compare the two projects on VSS, and find that the following projects have two more directories on VSS:
BIN and OBJ
Understand the cause. during replication, the two generated directories are also checked in to VSS, causing others to retrieve the two directories when taking out the project, all are set to read-only by default.
Find the cause and solve the problem. On VSS, delete the bin and OBJ directories of the project, and then retrieve the project again. The compilation is successful.