Skip to content

Instantly share code, notes, and snippets.

@troydai
Last active October 29, 2015 22:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save troydai/cd8f2eb8f9208a536a74 to your computer and use it in GitHub Desktop.
Save troydai/cd8f2eb8f9208a536a74 to your computer and use it in GitHub Desktop.
DTH Prototype
namespace Prototype
{
public interface IDthWorkspace
{
int InitializeProject(string projectPath, string configuration);
void ChangeConfiguration(string configuration);
IDictionary<string, int> GetProjectContexts();
Task<ProjectInformation> GetProjectInformationAsync(int projectHandle);
Task<CompilationOptions> GetCompilationOptions(int projectHandle);
Task<IEnumerable<string>> GetSourcesAsync(int projectHandle);
Task<IEnumerable<Dependency>> GetDependenciesAsync(int projectHandle);
Task<IEnumerable<DependencyDiagnostic>> GetDependencyDiagnosticsAsync(int projectHandle);
Task<IEnumerable<Reference>> GetReferencesAsync(int projectHandle);
}
public class Dependency
{
}
public class DependencyDiagnostic
{
}
public class ProjectInformation
{
}
public class Reference
{
}
public class CompilationOptions
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment