* Removed SecondGlance since it never went anywhere and is now superseded by WinGridProxy

* Modified Prebuild to add better support for WinForms projects

git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@2905 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
John Hurliman
2009-06-22 23:35:58 +00:00
parent 6fd835add6
commit 85a7e8e287
13 changed files with 34 additions and 807 deletions

View File

@@ -105,6 +105,11 @@ namespace Prebuild.Core.Nodes
/// <returns></returns>
public BuildAction GetBuildAction(string file)
{
if (file.EndsWith(".settings"))
return BuildAction.None;
else if (file.EndsWith(".ico"))
return BuildAction.Content;
if(!m_BuildActions.ContainsKey(file))
{
return BuildAction.Compile;