mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 04:48:53 +00:00
23 lines
No EOL
750 B
C#
23 lines
No EOL
750 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Microsoft.VisualStudio.Project;
|
|
|
|
namespace Cosmos.VS.Package {
|
|
public class VsConfigProvider : ConfigProvider {
|
|
|
|
public VsConfigProvider(ProjectNode manager) : base(manager) {}
|
|
|
|
protected override ProjectConfig CreateProjectConfiguration(string configName) {
|
|
LogUtility.LogString("Entering Cosmos.VS.Package.VsConfigProvider.CreateProjectConfiguration('{0}')", configName);
|
|
try {
|
|
return new VsProjectConfig(ProjectMgr, configName);
|
|
} finally {
|
|
LogUtility.LogString("Exiting Cosmos.VS.Package.VsConfigProvider.CreateProjectConfiguration(string)");
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
|