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.
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
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