Browse Source

use AfterResolveReferences instead of PreBuildEvent for X64Converter

addin-manager-package-subdirectories
Siegfried Pammer 12 years ago
parent
commit
6595adb585
  1. 8
      src/AddIns/Analysis/Profiler/Controller/Profiler.Controller.csproj
  2. 5
      src/AddIns/Analysis/Profiler/Frontend/AddIn/Profiler.AddIn.csproj
  3. 14
      src/AddIns/Analysis/Profiler/X64Converter/Profiler.X64Converter.csproj
  4. 4
      src/Tools/Tools.build

8
src/AddIns/Analysis/Profiler/Controller/Profiler.Controller.csproj

@ -26,7 +26,6 @@ @@ -26,7 +26,6 @@
<DocumentationFile>..\bin\ICSharpCode.Profiler.Controller.xml</DocumentationFile>
<SourceAnalysisOverrideSettingsFile>C:\Dokumente und Einstellungen\HP\Anwendungsdaten\ICSharpCode/SharpDevelop3.0\Settings.SourceAnalysis</SourceAnalysisOverrideSettingsFile>
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
<PreBuildEvent>..\X64Converter\bin\Profiler.X64Converter.exe</PreBuildEvent>
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>3.5</OldToolsVersion>
@ -62,7 +61,7 @@ @@ -62,7 +61,7 @@
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>PdbOnly</DebugType>
<Optimize>true</Optimize>
<Optimize>True</Optimize>
<DefineConstants>TRACE;PUBLIC_EXTENDEDREGISTRY</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
@ -71,6 +70,8 @@ @@ -71,6 +70,8 @@
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
<BaseIntermediateOutputPath>obj\</BaseIntermediateOutputPath>
<StartAction>Project</StartAction>
</PropertyGroup>
<PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
<RegisterForComInterop>False</RegisterForComInterop>
@ -185,4 +186,7 @@ @@ -185,4 +186,7 @@
<Target Name="AfterBuild">
</Target>
-->
<Target Name="AfterResolveReferences">
<Exec Command="$(OutDir)Profiler.X64Converter.exe" />
</Target>
</Project>

5
src/AddIns/Analysis/Profiler/Frontend/AddIn/Profiler.AddIn.csproj

@ -163,11 +163,6 @@ @@ -163,11 +163,6 @@
<Name>ICSharpCode.Core.Presentation</Name>
<Private>False</Private>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\Main\ICSharpCode.SharpDevelop.Dom\Project\ICSharpCode.SharpDevelop.Dom.csproj">
<Project>{924EE450-603D-49C1-A8E5-4AFAA31CE6F3}</Project>
<Name>ICSharpCode.SharpDevelop.Dom</Name>
<Private>False</Private>
</ProjectReference>
<ProjectReference Include="..\..\..\..\..\Main\ICSharpCode.SharpDevelop.Widgets\Project\ICSharpCode.SharpDevelop.Widgets.csproj">
<Project>{8035765F-D51F-4A0C-A746-2FD100E19419}</Project>
<Name>ICSharpCode.SharpDevelop.Widgets</Name>

14
src/AddIns/Analysis/Profiler/X64Converter/Profiler.X64Converter.csproj

@ -15,8 +15,8 @@ @@ -15,8 +15,8 @@
<SourceAnalysisOverrideSettingsFile>C:\Users\Siegfried\AppData\Roaming\ICSharpCode/SharpDevelop3.0\Settings.SourceAnalysis</SourceAnalysisOverrideSettingsFile>
<AllowUnsafeBlocks>False</AllowUnsafeBlocks>
<NoStdLib>False</NoStdLib>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<OutputPath>bin\</OutputPath>
<TreatWarningsAsErrors>False</TreatWarningsAsErrors>
<OutputPath>..\bin\</OutputPath>
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
<PublishUrl>publish\</PublishUrl>
<Install>true</Install>
@ -35,6 +35,8 @@ @@ -35,6 +35,8 @@
<BootstrapperEnabled>true</BootstrapperEnabled>
<TargetFrameworkProfile>
</TargetFrameworkProfile>
<NoWin32Manifest>False</NoWin32Manifest>
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
@ -46,8 +48,8 @@ @@ -46,8 +48,8 @@
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<DebugType>PdbOnly</DebugType>
<Optimize>True</Optimize>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
@ -63,6 +65,10 @@ @@ -63,6 +65,10 @@
<BaseAddress>4194304</BaseAddress>
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
<BaseIntermediateOutputPath>obj\</BaseIntermediateOutputPath>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core">

4
src/Tools/Tools.build

@ -71,8 +71,8 @@ @@ -71,8 +71,8 @@
<CleanupDirectories Include="..\..\bin\setup\help"/>
<CleanupDirectories Include="..\..\AddIns"/>
<CleanupDirectories Include="..\setup\bin"/>
<CleanupDirectories Include="..\AddIns\Misc\Profiler\bin"/>
<CleanupDirectories Include="..\AddIns\Misc\Profiler\Hook\obj"/>
<CleanupDirectories Include="..\AddIns\Analysis\Profiler\bin"/>
<CleanupDirectories Include="..\AddIns\Analysis\Profiler\Hook\obj"/>
</ItemGroup>
<Target Name="Clean">

Loading…
Cancel
Save