Code Inspection Failure
I have created a Visual Studio Build Configuration in TeamCity and created a build step that does Resharper inspection.
Unfortunately the step generates a lot of errors of the type:
5: Cannot resolve symbol 'Data'
6: Cannot resolve symbol 'Data'
11: Cannot resolve symbol 'Linq'
12: Cannot resolve symbol 'Data'
13: Cannot resolve symbol 'Data'
6: Cannot resolve symbol 'Data'
11: Cannot resolve symbol 'Linq'
12: Cannot resolve symbol 'Data'
13: Cannot resolve symbol 'Data'
Code file first 13 lines:
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Data;
using System.Data.SqlClient;
using System.Configuration;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Data.Linq;
using System.Data.Linq.Mapping;
Which basically points to that resharper is unable to find the basic system references like System.Linq or System.Data
I have other build configurations that does inspection without this problem.
Please sign in to leave a comment.