/* * Created by SharpDevelop. * User: Daniel * Date: 10/30/2011 * Time: 01:02 * * To change this template use Tools | Options | Coding | Edit Standard Headers. */ using System; using System.Collections.Generic; using ICSharpCode.NRefactory.TypeSystem; namespace ICSharpCode.NRefactory.CSharp { public class CSharpProjectContent : IProjectContent { public IEnumerable Files { get { throw new NotImplementedException(); } } public IEnumerable AssemblyReferences { get { throw new NotImplementedException(); } } public string AssemblyName { get { throw new NotImplementedException(); } } public IList AssemblyAttributes { get { throw new NotImplementedException(); } } public IList ModuleAttributes { get { throw new NotImplementedException(); } } public IParsedFile GetFile(string fileName) { throw new NotImplementedException(); } public ICompilation CreateCompilation() { throw new NotImplementedException(); } public IProjectContent AddAssemblyReferences(IEnumerable references) { throw new NotImplementedException(); } public IProjectContent RemoveAssemblyReferences(IEnumerable references) { throw new NotImplementedException(); } public IProjectContent UpdateProjectContent(IParsedFile oldFile, IParsedFile newFile) { throw new NotImplementedException(); } public IProjectContent UpdateProjectContent(IEnumerable oldFiles, IEnumerable newFiles) { throw new NotImplementedException(); } public IAssembly Resolve(ICompilation compilation) { throw new NotImplementedException(); } } }