Git is breaking compile?

Adding this to my BuildConfiguration.xml disables the “Using ‘git status’ to determine working set for adaptive non-unity build.” process and fixes the problem for me. Found in this post.

<SourceFileWorkingSet> 
         <Provider>None</Provider> 
         <RepositoryPath></RepositoryPath> 
         <GitPath></GitPath> 
     </SourceFileWorkingSet>

I think the adaptive non-unity build may have problems. If there was an error in my code, it would identify an error like “error C2065: ‘BlueprintType’: undeclared identifier”, instead of the actual error. Once I committed the changes and did a full rebuild, however, it would then identify the actual error. In order to get a successful compile, I would have to fix the error, commit the changes, and do a full rebuild.

3 Likes