C# 클래스 RunTimeCompiler.BasicProject

This class should contain all the information (extracted from a project file) needed for UI or compilation. The current structure of this class is based on the structure of a c# project file, but it may be enhanced if the necessity arise during the development of other project-readers.
파일 보기 프로젝트 열기: Virtual-Universe/Virtual-Universe 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
BuildOutput string
ConfigFiles List
ContentFiles List
ProjectFile string
ProjectFolder string
References List
ResourceFiles List
Settings ProjectSettings
SourceFiles List

프로퍼티 상세

BuildOutput 공개적으로 프로퍼티

public string BuildOutput
리턴 string

ConfigFiles 공개적으로 프로퍼티

The list of the configuration files that are part of the project.
public List ConfigFiles
리턴 List

ContentFiles 공개적으로 프로퍼티

The list of content files included. Content files are files (usually documents) that are included in the project, and usually copied to the output folder after build. Common file types are .txt, .pdf, .html, but there is no restriction; these can even be some source code files.
public List ContentFiles
리턴 List

ProjectFile 공개적으로 프로퍼티

public string ProjectFile
리턴 string

ProjectFolder 공개적으로 프로퍼티

public string ProjectFolder
리턴 string

References 공개적으로 프로퍼티

The list of the referenced assemblies.
public List References
리턴 List

ResourceFiles 공개적으로 프로퍼티

The list of the resource files that are part of the project.
public List ResourceFiles
리턴 List

Settings 공개적으로 프로퍼티

All project settings including general settings (framework version, project type winexe/dll/console...,assembly name etc) and the settings for the active configuration (debug/release...) (output folder, warning level etc).
public ProjectSettings,RunTimeCompiler Settings
리턴 ProjectSettings

SourceFiles 공개적으로 프로퍼티

The list of the source code files that are part of the project.
public List SourceFiles
리턴 List