Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Krüger <mkrueger@xamarin.com>2011-08-24 13:17:54 +0400
committerMike Krüger <mkrueger@xamarin.com>2011-08-24 13:18:11 +0400
commit50f973f52d2863013133e837a268135def3c4794 (patch)
tree29e1d9b73fff782e0f4d95efe3d9c1047b80d5b2 /main/src/core
parenta1be8d33315a46f4002d2ae219aa0ee348cd5ec7 (diff)
Take back the bundle resource action.
Diffstat (limited to 'main/src/core')
-rw-r--r--main/src/core/MonoDevelop.Core/MonoDevelop.Projects/BuildAction.cs7
1 files changed, 0 insertions, 7 deletions
diff --git a/main/src/core/MonoDevelop.Core/MonoDevelop.Projects/BuildAction.cs b/main/src/core/MonoDevelop.Core/MonoDevelop.Projects/BuildAction.cs
index af76856266..af5438cb48 100644
--- a/main/src/core/MonoDevelop.Core/MonoDevelop.Projects/BuildAction.cs
+++ b/main/src/core/MonoDevelop.Core/MonoDevelop.Projects/BuildAction.cs
@@ -46,11 +46,6 @@ namespace MonoDevelop.Projects
public const string SplashScreen = "SplashScreen";
public const string EntityDeploy = "EntityDeploy";
- /// <summary>
- /// Copies to the root of the bundle or lproj.
- /// </summary>
- public const string BundleResource = "BundleResource";
-
public static string[] StandardActions {
get {
return new string[] {
@@ -80,7 +75,6 @@ namespace MonoDevelop.Projects
ApplicationDefinition,
InterfaceDefinition,
Resource,
- BundleResource
// SplashScreen,
// EntityDeploy
};
@@ -97,7 +91,6 @@ namespace MonoDevelop.Projects
translations[Page] = GettextCatalog.GetString ("Page");
translations[InterfaceDefinition] = GettextCatalog.GetString ("Interface definition");
translations[Resource] = GettextCatalog.GetString ("Resource");
- translations[BundleResource] = GettextCatalog.GetString ("Bundle resource");
translations[SplashScreen] = GettextCatalog.GetString ("Splash screen");
translations[EntityDeploy] = GettextCatalog.GetString ("Entity deploy");
}