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
path: root/main
diff options
context:
space:
mode:
authorMike Krüger <mkrueger@xamarin.com>2011-08-23 13:50:21 +0400
committerMike Krüger <mkrueger@xamarin.com>2011-08-23 13:50:21 +0400
commit86850640668260887af0c51ecc77696efa57e5c7 (patch)
treee6e2546486cb73c73a1b860a3b030c63cc1e9d6d /main
parent21bfd84dcb24cce96bb03a7b22760167b49f9f6f (diff)
Added bundle resource build action.
Diffstat (limited to 'main')
-rw-r--r--main/src/core/MonoDevelop.Core/MonoDevelop.Projects/BuildAction.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/main/src/core/MonoDevelop.Core/MonoDevelop.Projects/BuildAction.cs b/main/src/core/MonoDevelop.Core/MonoDevelop.Projects/BuildAction.cs
index af5438cb48..af76856266 100644
--- a/main/src/core/MonoDevelop.Core/MonoDevelop.Projects/BuildAction.cs
+++ b/main/src/core/MonoDevelop.Core/MonoDevelop.Projects/BuildAction.cs
@@ -46,6 +46,11 @@ 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[] {
@@ -75,6 +80,7 @@ namespace MonoDevelop.Projects
ApplicationDefinition,
InterfaceDefinition,
Resource,
+ BundleResource
// SplashScreen,
// EntityDeploy
};
@@ -91,6 +97,7 @@ 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");
}