예제 #1
0
 public ProjectFile(string fileName, ResourceType resourceType, ProjectFileBase project)
 {
     FileName = fileName;
     Path     = project.GetFullPath(FileName);
     //Path = System.IO.Path.GetFullPath(System.IO.Path.Combine(projectPath, FileName));
     ResourceType = resourceType;
 }
예제 #2
0
 public NestedProject(ProjectFileBase project, ProjectItemGroupProjectReference reference)
 {
     Name    = reference.Name;
     Include = reference.Include;
     Project = reference.Project;
     Path    = project.GetFullPath(Include);
     //Path = System.IO.Path.GetFullPath(System.IO.Path.Combine(projectPath, Include));
 }
예제 #3
0
 public NestedProject(ProjectFileBase project, string item)
 {
     Name = item;
     Path = project.GetFullPath(item);
     //Path = System.IO.Path.GetFullPath(System.IO.Path.Combine(projectPath,item));
 }