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:
authorLevi Bard <levibard@mono-cvs.ximian.com>2010-07-14 14:03:46 +0400
committerLevi Bard <levibard@mono-cvs.ximian.com>2010-07-14 14:03:46 +0400
commit1e60d9e2754ce83ad1c51241b85e0dff7301a14f (patch)
tree9d729bc343efe93330dff4d6e8232bb977fd8a33 /main/src/core/MonoDevelop.Startup
parent5ade0d1cea26559fa7621e790fc5020ad0eb9dbe (diff)
Add windows application icon.
svn path=/trunk/monodevelop/; revision=160343
Diffstat (limited to 'main/src/core/MonoDevelop.Startup')
-rw-r--r--main/src/core/MonoDevelop.Startup/Makefile.am4
-rw-r--r--main/src/core/MonoDevelop.Startup/MonoDevelop.Startup.csproj3
2 files changed, 5 insertions, 2 deletions
diff --git a/main/src/core/MonoDevelop.Startup/Makefile.am b/main/src/core/MonoDevelop.Startup/Makefile.am
index e628a90a7e..d6f9d78acc 100644
--- a/main/src/core/MonoDevelop.Startup/Makefile.am
+++ b/main/src/core/MonoDevelop.Startup/Makefile.am
@@ -15,8 +15,10 @@ DEPS = \
REFS = $(MONO_ADDINS_LIBS)
+ICON = $(top_builddir)/theme-icons/Windows/monodevelop.ico
+
$(ASSEMBLY): $(build_sources) $(build_resources) $(DEPS)
- $(CSC) $(CSC_FLAGS) -out:$@ $(REFS) $(build_deps) $(build_resources:%=/resource:%) $(build_sources)
+ $(CSC) $(CSC_FLAGS) -win32icon:$(ICON) -out:$@ $(REFS) $(build_deps) $(build_resources:%=/resource:%) $(build_sources)
$(ASSEMBLY).config: $(ASSEMBLY) $(srcdir)/app.config
cp $(srcdir)/app.config $(ASSEMBLY).config
diff --git a/main/src/core/MonoDevelop.Startup/MonoDevelop.Startup.csproj b/main/src/core/MonoDevelop.Startup/MonoDevelop.Startup.csproj
index 9c57b6b24c..62b1348cb9 100644
--- a/main/src/core/MonoDevelop.Startup/MonoDevelop.Startup.csproj
+++ b/main/src/core/MonoDevelop.Startup/MonoDevelop.Startup.csproj
@@ -10,6 +10,7 @@
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<AssemblyName>MonoDevelop</AssemblyName>
<RootNamespace>MonoDevelop.Startup</RootNamespace>
+ <ApplicationIcon>..\..\..\theme-icons\Windows\monodevelop.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
@@ -105,4 +106,4 @@
</Properties>
</MonoDevelop>
</ProjectExtensions>
-</Project> \ No newline at end of file
+</Project>