コード例 #1
0
ファイル: Project.cs プロジェクト: sandeep-datta/monodevelop
 protected Project()
 {
     FileService.FileChanged += OnFileChanged;
     files = new ProjectFileCollection();
     Items.Bind(files);
     DependencyResolutionEnabled = true;
 }
コード例 #2
0
 public Project()
 {
     FileService.FileChanged += OnFileChanged;
     files = new ProjectFileCollection();
     Items.Bind(files);
     Filters = new ProjectItemCollection <ProjectFilterItem>();
     DependencyResolutionEnabled = true;
 }