You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
1.8 KiB
82 lines
1.8 KiB
/* |
|
* 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<IParsedFile> Files { |
|
get { |
|
throw new NotImplementedException(); |
|
} |
|
} |
|
|
|
public IEnumerable<IAssemblyReference> AssemblyReferences { |
|
get { |
|
throw new NotImplementedException(); |
|
} |
|
} |
|
|
|
public string AssemblyName { |
|
get { |
|
throw new NotImplementedException(); |
|
} |
|
} |
|
|
|
public IList<IUnresolvedAttribute> AssemblyAttributes { |
|
get { |
|
throw new NotImplementedException(); |
|
} |
|
} |
|
|
|
public IList<IUnresolvedAttribute> ModuleAttributes { |
|
get { |
|
throw new NotImplementedException(); |
|
} |
|
} |
|
|
|
public IParsedFile GetFile(string fileName) |
|
{ |
|
throw new NotImplementedException(); |
|
} |
|
|
|
public ICompilation CreateCompilation() |
|
{ |
|
throw new NotImplementedException(); |
|
} |
|
|
|
public IProjectContent AddAssemblyReferences(IEnumerable<IAssemblyReference> references) |
|
{ |
|
throw new NotImplementedException(); |
|
} |
|
|
|
public IProjectContent RemoveAssemblyReferences(IEnumerable<IAssemblyReference> references) |
|
{ |
|
throw new NotImplementedException(); |
|
} |
|
|
|
public IProjectContent UpdateProjectContent(IParsedFile oldFile, IParsedFile newFile) |
|
{ |
|
throw new NotImplementedException(); |
|
} |
|
|
|
public IProjectContent UpdateProjectContent(IEnumerable<IParsedFile> oldFiles, IEnumerable<IParsedFile> newFiles) |
|
{ |
|
throw new NotImplementedException(); |
|
} |
|
|
|
public IAssembly Resolve(ICompilation compilation) |
|
{ |
|
throw new NotImplementedException(); |
|
} |
|
} |
|
}
|
|
|