Browse Source

Fixed SD2-1029: Clean build after deleting GlobalAssemblyInfo.cs fails

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@1723 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Daniel Grunwald 19 years ago
parent
commit
ce71a3c7dd
  1. 5
      src/AddIns/DisplayBindings/IconEditor/IconEditor/IconEditor.csproj
  2. 4
      src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/BuildEvents.cs

5
src/AddIns/DisplayBindings/IconEditor/IconEditor/IconEditor.csproj

@ -15,11 +15,13 @@ @@ -15,11 +15,13 @@
<FileAlignment>4096</FileAlignment>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<PreBuildEvent>..\..\..\..\src\Tools\UpdateAssemblyInfo\bin\Debug\UpdateAssemblyInfo.exe</PreBuildEvent>
<RunPostBuildEvent>Always</RunPostBuildEvent>
<OutputPath>..\..\..\..\..\AddIns\AddIns\DisplayBindings\IconEditor\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<BaseIntermediateOutputPath>obj\</BaseIntermediateOutputPath>
<IntermediateOutputPath>obj\Debug\</IntermediateOutputPath>
<OutputPath>bin\Debug\</OutputPath>
<Optimize>False</Optimize>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugSymbols>true</DebugSymbols>
@ -29,7 +31,6 @@ @@ -29,7 +31,6 @@
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<BaseIntermediateOutputPath>obj\</BaseIntermediateOutputPath>
<IntermediateOutputPath>obj\Release\</IntermediateOutputPath>
<OutputPath>bin\Release\</OutputPath>
<Optimize>True</Optimize>
<DefineConstants>TRACE</DefineConstants>
<DebugSymbols>False</DebugSymbols>

4
src/Main/Base/Project/Src/Gui/Dialogs/OptionPanels/ProjectOptions/BuildEvents.cs

@ -1,11 +1,12 @@ @@ -1,11 +1,12 @@
// <file>
// <copyright see="prj:///doc/copyright.txt"/>
// <license see="prj:///doc/license.txt"/>
// <owner name="none" email=""/>
// <owner name="Daniel Grunwald" email="daniel@danielgrunwald.de"/>
// <version>$Revision$</version>
// </file>
using System;
using System.IO;
using System.Windows.Forms;
using ICSharpCode.SharpDevelop.Internal.ExternalTool;
@ -22,6 +23,7 @@ namespace ICSharpCode.SharpDevelop.Gui.OptionPanels @@ -22,6 +23,7 @@ namespace ICSharpCode.SharpDevelop.Gui.OptionPanels
SetupFromXmlResource("ProjectOptions.BuildEvents.xfrm");
InitializeHelper();
baseDirectory = Path.GetDirectoryName(project.OutputAssemblyFullPath);
ConnectBrowseButton("preBuildEventBrowseButton",
"preBuildEventTextBox",

Loading…
Cancel
Save