mail-archives/monodevelop-patches-list/2004-May/001249.html

106 строки
4.8 KiB
HTML
Исходник Обычный вид История

2019-06-06 22:06:15 +03:00
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<TITLE> [Monodevelop-patches-list] r1642 - in trunk/MonoDevelop/src/Main/Base: . Services/Project
</TITLE>
<LINK REL="Index" HREF="index.html" >
<LINK REL="made" HREF="mailto:monodevelop-patches-list%40lists.ximian.com?Subject=%5BMonodevelop-patches-list%5D%20r1642%20-%20in%20trunk/MonoDevelop/src/Main/Base%3A%20.%20Services/Project&In-Reply-To=">
<META NAME="robots" CONTENT="index,nofollow">
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
<LINK REL="Previous" HREF="001248.html">
<LINK REL="Next" HREF="001250.html">
</HEAD>
<BODY BGCOLOR="#ffffff">
<H1>[Monodevelop-patches-list] r1642 - in trunk/MonoDevelop/src/Main/Base: . Services/Project</H1>
<B>commit-watcher at mono-cvs.ximian.com</B>
<A HREF="mailto:monodevelop-patches-list%40lists.ximian.com?Subject=%5BMonodevelop-patches-list%5D%20r1642%20-%20in%20trunk/MonoDevelop/src/Main/Base%3A%20.%20Services/Project&In-Reply-To="
TITLE="[Monodevelop-patches-list] r1642 - in trunk/MonoDevelop/src/Main/Base: . Services/Project">commit-watcher at mono-cvs.ximian.com
</A><BR>
<I>Wed May 26 06:15:15 EDT 2004</I>
<P><UL>
<LI>Previous message: <A HREF="001248.html">[Monodevelop-patches-list] r1641 - in trunk/MonoDevelop/src: AddIns/BackendBindings/CSharpBinding Main/Base Main/Base/Internal/Project/Combine Main/Base/Internal/Templates/ProjectTemplates
</A></li>
<LI>Next message: <A HREF="001250.html">[Monodevelop-patches-list] r1643 - in trunk/MonoDevelop: . po
</A></li>
<LI> <B>Messages sorted by:</B>
<a href="date.html#1249">[ date ]</a>
<a href="thread.html#1249">[ thread ]</a>
<a href="subject.html#1249">[ subject ]</a>
<a href="author.html#1249">[ author ]</a>
</LI>
</UL>
<HR>
<!--beginarticle-->
<PRE>Author: tberman
Date: 2004-05-26 06:15:14 -0400 (Wed, 26 May 2004)
New Revision: 1642
Modified:
trunk/MonoDevelop/src/Main/Base/ChangeLog
trunk/MonoDevelop/src/Main/Base/Services/Project/DefaultProjectService.cs
Log:
fix small buglet in auto-generation of makefiles
Modified: trunk/MonoDevelop/src/Main/Base/ChangeLog
===================================================================
--- trunk/MonoDevelop/src/Main/Base/ChangeLog 2004-05-26 09:59:26 UTC (rev 1641)
+++ trunk/MonoDevelop/src/Main/Base/ChangeLog 2004-05-26 10:15:14 UTC (rev 1642)
@@ -1,5 +1,11 @@
2004-05-26 Todd Berman &lt;<A HREF="http://lists.ximian.com/mailman/listinfo/monodevelop-patches-list">tberman at sevenl.net</A>&gt;
+ * Services/ProjectService/DefaultProjectService.cs: move the call to
+ GenerateMakefiles when the solution is closed to somewhere that
+ actually generates a makefile.
+
+2004-05-26 Todd Berman &lt;<A HREF="http://lists.ximian.com/mailman/listinfo/monodevelop-patches-list">tberman at sevenl.net</A>&gt;
+
* Internal/Project/Combine/Combine.cs: actually tested with a solution
with 2 projects in it, one that references the other. It works now,
building, cleaning, running, etc.
Modified: trunk/MonoDevelop/src/Main/Base/Services/Project/DefaultProjectService.cs
===================================================================
--- trunk/MonoDevelop/src/Main/Base/Services/Project/DefaultProjectService.cs 2004-05-26 09:59:26 UTC (rev 1641)
+++ trunk/MonoDevelop/src/Main/Base/Services/Project/DefaultProjectService.cs 2004-05-26 10:15:14 UTC (rev 1642)
@@ -109,6 +109,7 @@
if (CurrentOpenCombine != null) {
if (saveCombinePreferencies)
SaveCombinePreferences(CurrentOpenCombine, openCombineFileName);
+ GenerateMakefiles ();
Combine closedCombine = CurrentOpenCombine;
CurrentSelectedProject = null;
CurrentOpenCombine = CurrentSelectedCombine = null;
@@ -597,7 +598,6 @@
protected virtual void OnCombineClosed(CombineEventArgs e)
{
- GenerateMakefiles ();
if (CombineClosed != null) {
CombineClosed(this, e);
}
</PRE>
<!--endarticle-->
<HR>
<P><UL>
<!--threads-->
<LI>Previous message: <A HREF="001248.html">[Monodevelop-patches-list] r1641 - in trunk/MonoDevelop/src: AddIns/BackendBindings/CSharpBinding Main/Base Main/Base/Internal/Project/Combine Main/Base/Internal/Templates/ProjectTemplates
</A></li>
<LI>Next message: <A HREF="001250.html">[Monodevelop-patches-list] r1643 - in trunk/MonoDevelop: . po
</A></li>
<LI> <B>Messages sorted by:</B>
<a href="date.html#1249">[ date ]</a>
<a href="thread.html#1249">[ thread ]</a>
<a href="subject.html#1249">[ subject ]</a>
<a href="author.html#1249">[ author ]</a>
</LI>
</UL>
<hr>
<a href="http://lists.ximian.com/mailman/listinfo/monodevelop-patches-list">More information about the Monodevelop-patches-list
mailing list</a><br>
</body></html>