Пример #1
0
        ProjectFile CreateFileProjectItem(string path)
        {
            //TODO custom tool?
            string fullPath    = GetFullPath(path);
            string buildAction = project.GetDefaultBuildAction(fullPath);

            return(new ProjectFile(fullPath)
            {
                BuildAction = buildAction
            });
        }