Browse Source
- fixed bug in Xaml binding - fixed bug in CodeEditor git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@4917 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61shortcuts
17 changed files with 696 additions and 388 deletions
@ -1,4 +1,4 @@ |
|||||||
%windir%\microsoft.net\framework\v4.0.20506\msbuild /m /t:clean SharpDevelop.sln "/p:FSharpBuildTasksPath=%CD%\src\AddIns\BackendBindings\FSharp\RequiredLibraries" "/p:Platform=Any CPU" |
%windir%\microsoft.net\framework\v4.0.20506\msbuild /m /t:clean SharpDevelop.sln "/p:FSharpBuildTasksPath=%CD%\src\AddIns\BackendBindings\FSharp\RequiredLibraries" "/p:Platform=Any CPU" |
||||||
@IF %ERRORLEVEL% NEQ 0 PAUSE |
@IF %ERRORLEVEL% NEQ 0 PAUSE |
||||||
%windir%\microsoft.net\framework\v4.0.20506\msbuild /m /t:clean src\AddIns\Misc\Profiler\AutomatedBuild.proj |
REM %windir%\microsoft.net\framework\v4.0.20506\msbuild /m /t:clean src\AddIns\Misc\Profiler\AutomatedBuild.proj |
||||||
@IF %ERRORLEVEL% NEQ 0 PAUSE |
@IF %ERRORLEVEL% NEQ 0 PAUSE |
@ -0,0 +1,18 @@ |
|||||||
|
<UserControl |
||||||
|
x:Class="ICSharpCode.Profiler.Controls.CompareView" |
||||||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> |
||||||
|
<Grid> |
||||||
|
<Grid.ColumnDefinitions> |
||||||
|
<ColumnDefinition Width="*" /> |
||||||
|
<ColumnDefinition Width="*" /> |
||||||
|
</Grid.ColumnDefinitions> |
||||||
|
<GridSplitter Grid.Column="1" HorizontalAlignment="Left" Width="5" /> |
||||||
|
<StackPanel Grid.Column="1" Orientation="Vertical"> |
||||||
|
<Button Content="Part2" Margin="3" /> |
||||||
|
</StackPanel> |
||||||
|
<StackPanel Orientation="Vertical"> |
||||||
|
<Button Content="Part1" Margin="3" /> |
||||||
|
</StackPanel> |
||||||
|
</Grid> |
||||||
|
</UserControl> |
@ -0,0 +1,31 @@ |
|||||||
|
/* |
||||||
|
* Created by SharpDevelop. |
||||||
|
* User: Siegfried |
||||||
|
* Date: 11.09.2009 |
||||||
|
* Time: 09:31 |
||||||
|
* |
||||||
|
* To change this template use Tools | Options | Coding | Edit Standard Headers. |
||||||
|
*/ |
||||||
|
using System; |
||||||
|
using System.Collections.Generic; |
||||||
|
using System.Text; |
||||||
|
using System.Windows; |
||||||
|
using System.Windows.Controls; |
||||||
|
using System.Windows.Data; |
||||||
|
using System.Windows.Documents; |
||||||
|
using System.Windows.Input; |
||||||
|
using System.Windows.Media; |
||||||
|
|
||||||
|
namespace ICSharpCode.Profiler.Controls |
||||||
|
{ |
||||||
|
/// <summary>
|
||||||
|
/// Interaction logic for CompareView.xaml
|
||||||
|
/// </summary>
|
||||||
|
public partial class CompareView : UserControl |
||||||
|
{ |
||||||
|
public CompareView() |
||||||
|
{ |
||||||
|
InitializeComponent(); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -1,334 +0,0 @@ |
|||||||
<?xml version="1.0" encoding="Windows-1252"?> |
|
||||||
<VisualStudioProject |
|
||||||
ProjectType="Visual C++" |
|
||||||
Version="9,00" |
|
||||||
Name="Hook" |
|
||||||
ProjectGUID="{68D5EE3B-0C35-4DF1-BD29-6606851A02C1}" |
|
||||||
RootNamespace="ProfilerCore" |
|
||||||
TargetFrameworkVersion="0"> |
|
||||||
<Platforms> |
|
||||||
<Platform |
|
||||||
Name="Win32" /> |
|
||||||
<Platform |
|
||||||
Name="x64" /> |
|
||||||
</Platforms> |
|
||||||
<ToolFiles></ToolFiles> |
|
||||||
<Configurations> |
|
||||||
<Configuration |
|
||||||
Name="Debug|Win32" |
|
||||||
OutputDirectory="$(PlatformName)\$(ConfigurationName)" |
|
||||||
IntermediateDirectory="$(PlatformName)\$(ConfigurationName)" |
|
||||||
ConfigurationType="2" |
|
||||||
CharacterSet="2"> |
|
||||||
<Tool |
|
||||||
Name="VCPreBuildEventTool" |
|
||||||
Description="" |
|
||||||
CommandLine="" /> |
|
||||||
<Tool |
|
||||||
Name="VCCustomBuildTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCXMLDataGeneratorTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCWebServiceProxyGeneratorTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCMIDLTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCCLCompilerTool" |
|
||||||
Optimization="0" |
|
||||||
PreprocessorDefinitions="DEBUG" |
|
||||||
MinimalRebuild="true" |
|
||||||
BasicRuntimeChecks="0" |
|
||||||
RuntimeLibrary="3" |
|
||||||
RuntimeTypeInfo="false" |
|
||||||
AssemblerOutput="0" |
|
||||||
WarningLevel="4" |
|
||||||
DebugInformationFormat="4" /> |
|
||||||
<Tool |
|
||||||
Name="VCManagedResourceCompilerTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCResourceCompilerTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCPreLinkEventTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCLinkerTool" |
|
||||||
AdditionalDependencies="corguids.lib" |
|
||||||
ShowProgress="0" |
|
||||||
OutputFile="$(OutDir)\$(ProjectName).dll" |
|
||||||
LinkIncremental="2" |
|
||||||
ModuleDefinitionFile=".\Hook.def" |
|
||||||
GenerateDebugInformation="true" |
|
||||||
TargetMachine="1" /> |
|
||||||
<Tool |
|
||||||
Name="VCALinkTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCManifestTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCXDCMakeTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCBscMakeTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCFxCopTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCAppVerifierTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCPostBuildEventTool" |
|
||||||
CommandLine="" /> |
|
||||||
</Configuration> |
|
||||||
<Configuration |
|
||||||
Name="Debug|x64" |
|
||||||
OutputDirectory="$(PlatformName)\$(ConfigurationName)" |
|
||||||
IntermediateDirectory="$(PlatformName)\$(ConfigurationName)" |
|
||||||
ConfigurationType="2" |
|
||||||
CharacterSet="2"> |
|
||||||
<Tool |
|
||||||
Name="VCPreBuildEventTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCCustomBuildTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCXMLDataGeneratorTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCWebServiceProxyGeneratorTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCMIDLTool" |
|
||||||
TargetEnvironment="3" /> |
|
||||||
<Tool |
|
||||||
Name="VCCLCompilerTool" |
|
||||||
Optimization="0" |
|
||||||
PreprocessorDefinitions="DEBUG" |
|
||||||
MinimalRebuild="true" |
|
||||||
BasicRuntimeChecks="0" |
|
||||||
RuntimeLibrary="3" |
|
||||||
RuntimeTypeInfo="false" |
|
||||||
AssemblerOutput="0" |
|
||||||
WarningLevel="4" |
|
||||||
DebugInformationFormat="3" /> |
|
||||||
<Tool |
|
||||||
Name="VCManagedResourceCompilerTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCResourceCompilerTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCPreLinkEventTool" |
|
||||||
CommandLine="ml64 Callback.x64.asm /c" /> |
|
||||||
<Tool |
|
||||||
Name="VCLinkerTool" |
|
||||||
AdditionalDependencies="corguids.lib Callback.x64.obj" |
|
||||||
ShowProgress="0" |
|
||||||
OutputFile="$(OutDir)\$(ProjectName).dll" |
|
||||||
LinkIncremental="2" |
|
||||||
ModuleDefinitionFile=".\Hook.def" |
|
||||||
GenerateDebugInformation="true" |
|
||||||
TargetMachine="17" /> |
|
||||||
<Tool |
|
||||||
Name="VCALinkTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCManifestTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCXDCMakeTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCBscMakeTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCFxCopTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCAppVerifierTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCPostBuildEventTool" |
|
||||||
CommandLine="" /> |
|
||||||
</Configuration> |
|
||||||
<Configuration |
|
||||||
Name="Release|Win32" |
|
||||||
OutputDirectory="$(PlatformName)\$(ConfigurationName)" |
|
||||||
IntermediateDirectory="$(PlatformName)\$(ConfigurationName)" |
|
||||||
ConfigurationType="2" |
|
||||||
CharacterSet="2" |
|
||||||
WholeProgramOptimization="1"> |
|
||||||
<Tool |
|
||||||
Name="VCPreBuildEventTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCCustomBuildTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCXMLDataGeneratorTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCWebServiceProxyGeneratorTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCMIDLTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCCLCompilerTool" |
|
||||||
Optimization="2" |
|
||||||
EnableIntrinsicFunctions="true" |
|
||||||
PreprocessorDefinitions="NDEBUG" |
|
||||||
StringPooling="true" |
|
||||||
BasicRuntimeChecks="0" |
|
||||||
RuntimeLibrary="2" |
|
||||||
BufferSecurityCheck="false" |
|
||||||
EnableFunctionLevelLinking="false" |
|
||||||
RuntimeTypeInfo="false" |
|
||||||
AssemblerOutput="4" |
|
||||||
WarningLevel="4" |
|
||||||
DebugInformationFormat="3" /> |
|
||||||
<Tool |
|
||||||
Name="VCManagedResourceCompilerTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCResourceCompilerTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCPreLinkEventTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCLinkerTool" |
|
||||||
AdditionalDependencies="corguids.lib" |
|
||||||
ModuleDefinitionFile=".\Hook.def" |
|
||||||
GenerateDebugInformation="false" |
|
||||||
OptimizeReferences="2" |
|
||||||
EnableCOMDATFolding="2" |
|
||||||
TargetMachine="1" /> |
|
||||||
<Tool |
|
||||||
Name="VCALinkTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCManifestTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCXDCMakeTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCBscMakeTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCFxCopTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCAppVerifierTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCPostBuildEventTool" |
|
||||||
CommandLine="" /> |
|
||||||
</Configuration> |
|
||||||
<Configuration |
|
||||||
Name="Release|x64" |
|
||||||
OutputDirectory="$(PlatformName)\$(ConfigurationName)" |
|
||||||
IntermediateDirectory="$(PlatformName)\$(ConfigurationName)" |
|
||||||
ConfigurationType="2" |
|
||||||
CharacterSet="2" |
|
||||||
WholeProgramOptimization="1"> |
|
||||||
<Tool |
|
||||||
Name="VCPreBuildEventTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCCustomBuildTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCXMLDataGeneratorTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCWebServiceProxyGeneratorTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCMIDLTool" |
|
||||||
TargetEnvironment="3" /> |
|
||||||
<Tool |
|
||||||
Name="VCCLCompilerTool" |
|
||||||
Optimization="2" |
|
||||||
EnableIntrinsicFunctions="true" |
|
||||||
PreprocessorDefinitions="NDEBUG" |
|
||||||
StringPooling="true" |
|
||||||
BasicRuntimeChecks="0" |
|
||||||
RuntimeLibrary="2" |
|
||||||
BufferSecurityCheck="false" |
|
||||||
EnableFunctionLevelLinking="false" |
|
||||||
RuntimeTypeInfo="false" |
|
||||||
AssemblerOutput="4" |
|
||||||
WarningLevel="4" |
|
||||||
DebugInformationFormat="3" /> |
|
||||||
<Tool |
|
||||||
Name="VCManagedResourceCompilerTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCResourceCompilerTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCPreLinkEventTool" |
|
||||||
CommandLine="ml64 Callback.x64.asm /c" /> |
|
||||||
<Tool |
|
||||||
Name="VCLinkerTool" |
|
||||||
AdditionalDependencies="corguids.lib Callback.x64.obj" |
|
||||||
ModuleDefinitionFile=".\Hook.def" |
|
||||||
GenerateDebugInformation="false" |
|
||||||
OptimizeReferences="2" |
|
||||||
EnableCOMDATFolding="2" |
|
||||||
TargetMachine="17" /> |
|
||||||
<Tool |
|
||||||
Name="VCALinkTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCManifestTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCXDCMakeTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCBscMakeTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCFxCopTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCAppVerifierTool" /> |
|
||||||
<Tool |
|
||||||
Name="VCPostBuildEventTool" |
|
||||||
CommandLine="" /> |
|
||||||
</Configuration> |
|
||||||
</Configurations> |
|
||||||
<References></References> |
|
||||||
<Files> |
|
||||||
<Filter |
|
||||||
Name="Source Files" |
|
||||||
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx" |
|
||||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"> |
|
||||||
<File |
|
||||||
RelativePath="allocator.cpp"></File> |
|
||||||
<File |
|
||||||
RelativePath="Callback.cpp"></File> |
|
||||||
<File |
|
||||||
RelativePath="Callback.x64.asm"></File> |
|
||||||
<File |
|
||||||
RelativePath="CircularBuffer.cpp"></File> |
|
||||||
<File |
|
||||||
RelativePath="CorProfilerCallbackImpl.cpp"></File> |
|
||||||
<File |
|
||||||
RelativePath="EventWaitHandle.cpp"></File> |
|
||||||
<File |
|
||||||
RelativePath="FunctionInfo.cpp"></File> |
|
||||||
<File |
|
||||||
RelativePath="Hook.cpp"></File> |
|
||||||
<File |
|
||||||
RelativePath="Hook.def"></File> |
|
||||||
<File |
|
||||||
RelativePath="LightweightList.cpp"></File> |
|
||||||
<File |
|
||||||
RelativePath="main.cpp"></File> |
|
||||||
<File |
|
||||||
RelativePath="Profiler.cpp"></File> |
|
||||||
<File |
|
||||||
RelativePath="ProfilerMetaData.cpp"></File> |
|
||||||
<File |
|
||||||
RelativePath="SharedMemory.cpp"></File> |
|
||||||
</Filter> |
|
||||||
<Filter |
|
||||||
Name="Header Files" |
|
||||||
Filter="h;hpp;hxx;hm;inl;inc;xsd" |
|
||||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"> |
|
||||||
<File |
|
||||||
RelativePath="allocator.h"></File> |
|
||||||
<File |
|
||||||
RelativePath="Callback.h"></File> |
|
||||||
<File |
|
||||||
RelativePath="CircularBuffer.h"></File> |
|
||||||
<File |
|
||||||
RelativePath="CorProfilerCallbackImpl.h"></File> |
|
||||||
<File |
|
||||||
RelativePath="CriticalSection.h"></File> |
|
||||||
<File |
|
||||||
RelativePath="EventWaitHandle.h"></File> |
|
||||||
<File |
|
||||||
RelativePath="FunctionInfo.h"></File> |
|
||||||
<File |
|
||||||
RelativePath="global.h"></File> |
|
||||||
<File |
|
||||||
RelativePath="LightweightList.h"></File> |
|
||||||
<File |
|
||||||
RelativePath="LightweightStack.h"></File> |
|
||||||
<File |
|
||||||
RelativePath="main.h"></File> |
|
||||||
<File |
|
||||||
RelativePath="Profiler.h"></File> |
|
||||||
<File |
|
||||||
RelativePath="ProfilerFactory.h"></File> |
|
||||||
<File |
|
||||||
RelativePath="ProfilerMetaData.h"></File> |
|
||||||
<File |
|
||||||
RelativePath="SharedMemory.h"></File> |
|
||||||
</Filter> |
|
||||||
</Files> |
|
||||||
<Globals></Globals> |
|
||||||
</VisualStudioProject> |
|
@ -0,0 +1,300 @@ |
|||||||
|
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
||||||
|
<ItemGroup Label="ProjectConfigurations"> |
||||||
|
<ProjectConfiguration Include="Debug|Win32"> |
||||||
|
<Configuration>Debug</Configuration> |
||||||
|
<Platform>Win32</Platform> |
||||||
|
</ProjectConfiguration> |
||||||
|
<ProjectConfiguration Include="Debug|Win32"> |
||||||
|
<Configuration>Debug</Configuration> |
||||||
|
<Platform>Win32</Platform> |
||||||
|
</ProjectConfiguration> |
||||||
|
<ProjectConfiguration Include="Debug|x64"> |
||||||
|
<Configuration>Debug</Configuration> |
||||||
|
<Platform>x64</Platform> |
||||||
|
</ProjectConfiguration> |
||||||
|
<ProjectConfiguration Include="Debug|x64"> |
||||||
|
<Configuration>Debug</Configuration> |
||||||
|
<Platform>x64</Platform> |
||||||
|
</ProjectConfiguration> |
||||||
|
<ProjectConfiguration Include="Release|Win32"> |
||||||
|
<Configuration>Release</Configuration> |
||||||
|
<Platform>Win32</Platform> |
||||||
|
</ProjectConfiguration> |
||||||
|
<ProjectConfiguration Include="Release|Win32"> |
||||||
|
<Configuration>Release</Configuration> |
||||||
|
<Platform>Win32</Platform> |
||||||
|
</ProjectConfiguration> |
||||||
|
<ProjectConfiguration Include="Release|x64"> |
||||||
|
<Configuration>Release</Configuration> |
||||||
|
<Platform>x64</Platform> |
||||||
|
</ProjectConfiguration> |
||||||
|
<ProjectConfiguration Include="Release|x64"> |
||||||
|
<Configuration>Release</Configuration> |
||||||
|
<Platform>x64</Platform> |
||||||
|
</ProjectConfiguration> |
||||||
|
</ItemGroup> |
||||||
|
<PropertyGroup Label="Globals"> |
||||||
|
<ProjectGUID>{68D5EE3B-0C35-4DF1-BD29-6606851A02C1}</ProjectGUID> |
||||||
|
<RootNamespace>ProfilerCore</RootNamespace> |
||||||
|
<SourceAnalysisOverrideSettingsFile>C:\Users\Siegfried\AppData\Roaming\ICSharpCode/SharpDevelop4.0\Settings.SourceAnalysis</SourceAnalysisOverrideSettingsFile> |
||||||
|
<OutputType>Library</OutputType> |
||||||
|
<ConfigurationType>DynamicLibrary</ConfigurationType> |
||||||
|
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent> |
||||||
|
<RunCodeAnalysis>False</RunCodeAnalysis> |
||||||
|
<RunSourceAnalysis>False</RunSourceAnalysis> |
||||||
|
</PropertyGroup> |
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> |
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> |
||||||
|
<CharacterSet>MultiByte</CharacterSet> |
||||||
|
</PropertyGroup> |
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> |
||||||
|
<CharacterSet>MultiByte</CharacterSet> |
||||||
|
<WholeProgramOptimization>true</WholeProgramOptimization> |
||||||
|
</PropertyGroup> |
||||||
|
<PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Debug|X64'"> |
||||||
|
<CharacterSet>MultiByte</CharacterSet> |
||||||
|
</PropertyGroup> |
||||||
|
<PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Release|X64'"> |
||||||
|
<CharacterSet>MultiByte</CharacterSet> |
||||||
|
<WholeProgramOptimization>true</WholeProgramOptimization> |
||||||
|
</PropertyGroup> |
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> |
||||||
|
<ImportGroup Label="ExtensionSettings"> |
||||||
|
</ImportGroup> |
||||||
|
<ImportGroup Label="PropertySheets"> |
||||||
|
<Import Project="$(LocalAppData)\Microsoft\VisualStudio\10.0\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(LocalAppData)\Microsoft\VisualStudio\10.0\Microsoft.Cpp.$(Platform).user.props')" /> |
||||||
|
</ImportGroup> |
||||||
|
<PropertyGroup Label="UserMacros" /> |
||||||
|
<PropertyGroup> |
||||||
|
<_ProjectFileVersion>10.0.20506.1</_ProjectFileVersion> |
||||||
|
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(Platform)\$(Configuration)\</OutDir> |
||||||
|
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(Platform)\$(Configuration)\</IntDir> |
||||||
|
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">$(ProjectName)</TargetName> |
||||||
|
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">.dll</TargetExt> |
||||||
|
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</LinkIncremental> |
||||||
|
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|X64'">$(Platform)\$(Configuration)\</OutDir> |
||||||
|
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|X64'">$(Platform)\$(Configuration)\</IntDir> |
||||||
|
<TargetName Condition="'$(Configuration)|$(Platform)'=='Debug|X64'">$(ProjectName)</TargetName> |
||||||
|
<TargetExt Condition="'$(Configuration)|$(Platform)'=='Debug|X64'">.dll</TargetExt> |
||||||
|
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|X64'">true</LinkIncremental> |
||||||
|
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(Platform)\$(Configuration)\</OutDir> |
||||||
|
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">$(Platform)\$(Configuration)\</IntDir> |
||||||
|
<OutDir Condition="'$(Configuration)|$(Platform)'=='Release|X64'">$(Platform)\$(Configuration)\</OutDir> |
||||||
|
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|X64'">$(Platform)\$(Configuration)\</IntDir> |
||||||
|
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">AllRules.ruleset</CodeAnalysisRuleSet> |
||||||
|
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Debug|X64'">AllRules.ruleset</CodeAnalysisRuleSet> |
||||||
|
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">AllRules.ruleset</CodeAnalysisRuleSet> |
||||||
|
<CodeAnalysisRuleSet Condition="'$(Configuration)|$(Platform)'=='Release|X64'">AllRules.ruleset</CodeAnalysisRuleSet> |
||||||
|
</PropertyGroup> |
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|X64' "> |
||||||
|
<CodeAnalysisRules /> |
||||||
|
<CodeAnalysisRuleAssemblies /> |
||||||
|
</PropertyGroup> |
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|Win32' "> |
||||||
|
<CodeAnalysisRules /> |
||||||
|
<CodeAnalysisRuleAssemblies /> |
||||||
|
</PropertyGroup> |
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|X64' "> |
||||||
|
<CodeAnalysisRules /> |
||||||
|
<CodeAnalysisRuleAssemblies /> |
||||||
|
</PropertyGroup> |
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
||||||
|
<PreBuildEvent> |
||||||
|
<Message> |
||||||
|
</Message> |
||||||
|
<Command> |
||||||
|
</Command> |
||||||
|
</PreBuildEvent> |
||||||
|
<ClCompile> |
||||||
|
<Optimization>Disabled</Optimization> |
||||||
|
<PreprocessorDefinitions>DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
||||||
|
<MinimalRebuild>true</MinimalRebuild> |
||||||
|
<BasicRuntimeChecks> |
||||||
|
</BasicRuntimeChecks> |
||||||
|
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> |
||||||
|
<RuntimeTypeInfo>false</RuntimeTypeInfo> |
||||||
|
<AssemblerOutput> |
||||||
|
</AssemblerOutput> |
||||||
|
<WarningLevel>Level4</WarningLevel> |
||||||
|
<DebugInformationFormat>EditAndContinue</DebugInformationFormat> |
||||||
|
</ClCompile> |
||||||
|
<Link> |
||||||
|
<AdditionalDependencies>corguids.lib;%(AdditionalDependencies)</AdditionalDependencies> |
||||||
|
<ShowProgress>NotSet</ShowProgress> |
||||||
|
<ModuleDefinitionFile>.\Hook.def</ModuleDefinitionFile> |
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation> |
||||||
|
<TargetMachine>MachineX86</TargetMachine> |
||||||
|
</Link> |
||||||
|
<PostBuildEvent> |
||||||
|
<Command> |
||||||
|
</Command> |
||||||
|
</PostBuildEvent> |
||||||
|
</ItemDefinitionGroup> |
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|X64'"> |
||||||
|
<Midl> |
||||||
|
<TargetEnvironment>X64</TargetEnvironment> |
||||||
|
</Midl> |
||||||
|
<ClCompile> |
||||||
|
<Optimization>Disabled</Optimization> |
||||||
|
<PreprocessorDefinitions>DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
||||||
|
<MinimalRebuild>true</MinimalRebuild> |
||||||
|
<BasicRuntimeChecks> |
||||||
|
</BasicRuntimeChecks> |
||||||
|
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> |
||||||
|
<RuntimeTypeInfo>false</RuntimeTypeInfo> |
||||||
|
<AssemblerOutput> |
||||||
|
</AssemblerOutput> |
||||||
|
<WarningLevel>Level4</WarningLevel> |
||||||
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat> |
||||||
|
</ClCompile> |
||||||
|
<PreLinkEvent> |
||||||
|
<Command>ml64 Callback.x64.asm /c</Command> |
||||||
|
</PreLinkEvent> |
||||||
|
<Link> |
||||||
|
<AdditionalDependencies>corguids.lib;Callback.x64.obj;%(AdditionalDependencies)</AdditionalDependencies> |
||||||
|
<ShowProgress>NotSet</ShowProgress> |
||||||
|
<ModuleDefinitionFile>.\Hook.def</ModuleDefinitionFile> |
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation> |
||||||
|
<TargetMachine>MachineX64</TargetMachine> |
||||||
|
</Link> |
||||||
|
<PostBuildEvent> |
||||||
|
<Command> |
||||||
|
</Command> |
||||||
|
</PostBuildEvent> |
||||||
|
</ItemDefinitionGroup> |
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |
||||||
|
<ClCompile> |
||||||
|
<Optimization>MaxSpeed</Optimization> |
||||||
|
<IntrinsicFunctions>true</IntrinsicFunctions> |
||||||
|
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
||||||
|
<StringPooling>true</StringPooling> |
||||||
|
<BasicRuntimeChecks> |
||||||
|
</BasicRuntimeChecks> |
||||||
|
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> |
||||||
|
<BufferSecurityCheck>false</BufferSecurityCheck> |
||||||
|
<FunctionLevelLinking>false</FunctionLevelLinking> |
||||||
|
<RuntimeTypeInfo>false</RuntimeTypeInfo> |
||||||
|
<AssemblerOutput>AssemblyAndSourceCode</AssemblerOutput> |
||||||
|
<WarningLevel>Level4</WarningLevel> |
||||||
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat> |
||||||
|
</ClCompile> |
||||||
|
<Link> |
||||||
|
<AdditionalDependencies>corguids.lib;%(AdditionalDependencies)</AdditionalDependencies> |
||||||
|
<ModuleDefinitionFile>.\Hook.def</ModuleDefinitionFile> |
||||||
|
<GenerateDebugInformation>false</GenerateDebugInformation> |
||||||
|
<OptimizeReferences>true</OptimizeReferences> |
||||||
|
<EnableCOMDATFolding>true</EnableCOMDATFolding> |
||||||
|
<TargetMachine>MachineX86</TargetMachine> |
||||||
|
</Link> |
||||||
|
<PostBuildEvent> |
||||||
|
<Command> |
||||||
|
</Command> |
||||||
|
</PostBuildEvent> |
||||||
|
</ItemDefinitionGroup> |
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|X64'"> |
||||||
|
<Midl> |
||||||
|
<TargetEnvironment>X64</TargetEnvironment> |
||||||
|
</Midl> |
||||||
|
<ClCompile> |
||||||
|
<Optimization>MaxSpeed</Optimization> |
||||||
|
<IntrinsicFunctions>true</IntrinsicFunctions> |
||||||
|
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
||||||
|
<StringPooling>true</StringPooling> |
||||||
|
<BasicRuntimeChecks> |
||||||
|
</BasicRuntimeChecks> |
||||||
|
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> |
||||||
|
<BufferSecurityCheck>false</BufferSecurityCheck> |
||||||
|
<FunctionLevelLinking>false</FunctionLevelLinking> |
||||||
|
<RuntimeTypeInfo>false</RuntimeTypeInfo> |
||||||
|
<AssemblerOutput>AssemblyAndSourceCode</AssemblerOutput> |
||||||
|
<WarningLevel>Level4</WarningLevel> |
||||||
|
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat> |
||||||
|
</ClCompile> |
||||||
|
<PreLinkEvent> |
||||||
|
<Command>ml64 Callback.x64.asm /c</Command> |
||||||
|
</PreLinkEvent> |
||||||
|
<Link> |
||||||
|
<AdditionalDependencies>corguids.lib;Callback.x64.obj;%(AdditionalDependencies)</AdditionalDependencies> |
||||||
|
<ModuleDefinitionFile>.\Hook.def</ModuleDefinitionFile> |
||||||
|
<GenerateDebugInformation>false</GenerateDebugInformation> |
||||||
|
<OptimizeReferences>true</OptimizeReferences> |
||||||
|
<EnableCOMDATFolding>true</EnableCOMDATFolding> |
||||||
|
<TargetMachine>MachineX64</TargetMachine> |
||||||
|
</Link> |
||||||
|
<PostBuildEvent> |
||||||
|
<Command> |
||||||
|
</Command> |
||||||
|
</PostBuildEvent> |
||||||
|
</ItemDefinitionGroup> |
||||||
|
<ItemGroup> |
||||||
|
<ClInclude Include="allocator.h" /> |
||||||
|
<ClInclude Include="Callback.h" /> |
||||||
|
<ClInclude Include="CircularBuffer.h" /> |
||||||
|
<ClInclude Include="CorProfilerCallbackImpl.h" /> |
||||||
|
<ClInclude Include="CriticalSection.h" /> |
||||||
|
<ClInclude Include="EventWaitHandle.h" /> |
||||||
|
<ClInclude Include="FunctionInfo.h" /> |
||||||
|
<ClInclude Include="global.h" /> |
||||||
|
<ClInclude Include="LightweightList.h" /> |
||||||
|
<ClInclude Include="LightweightStack.h" /> |
||||||
|
<ClInclude Include="main.h" /> |
||||||
|
<ClInclude Include="Profiler.h" /> |
||||||
|
<ClInclude Include="ProfilerFactory.h" /> |
||||||
|
<ClInclude Include="ProfilerMetaData.h" /> |
||||||
|
<ClInclude Include="SharedMemory.h" /> |
||||||
|
</ItemGroup> |
||||||
|
<ItemGroup> |
||||||
|
<ClCompile Include="allocator.cpp" /> |
||||||
|
<ClCompile Include="Callback.cpp" /> |
||||||
|
<ClCompile Include="CircularBuffer.cpp" /> |
||||||
|
<ClCompile Include="CorProfilerCallbackImpl.cpp" /> |
||||||
|
<ClCompile Include="EventWaitHandle.cpp" /> |
||||||
|
<ClCompile Include="FunctionInfo.cpp" /> |
||||||
|
<ClCompile Include="Hook.cpp" /> |
||||||
|
<ClCompile Include="LightweightList.cpp" /> |
||||||
|
<ClCompile Include="main.cpp" /> |
||||||
|
<ClCompile Include="Profiler.cpp" /> |
||||||
|
<ClCompile Include="ProfilerMetaData.cpp" /> |
||||||
|
<ClCompile Include="SharedMemory.cpp" /> |
||||||
|
</ItemGroup> |
||||||
|
<ItemGroup> |
||||||
|
<None Include="Callback.x64.asm" /> |
||||||
|
<None Include="Hook.def" /> |
||||||
|
<None Include="MetaData_Syntax_Info.txt" /> |
||||||
|
</ItemGroup> |
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> |
||||||
|
<ImportGroup Label="ExtensionTargets"> |
||||||
|
</ImportGroup> |
||||||
|
<ItemDefinitionGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|Win32' "> |
||||||
|
<Link> |
||||||
|
<SubSystem>Console</SubSystem> |
||||||
|
<AdditionalDependencies>corguids.lib;user32.lib</AdditionalDependencies> |
||||||
|
<AddModuleNamesToAssembly> |
||||||
|
</AddModuleNamesToAssembly> |
||||||
|
<GenerateDebugInformation>false</GenerateDebugInformation> |
||||||
|
<EmbedManagedResourceFile> |
||||||
|
</EmbedManagedResourceFile> |
||||||
|
<AdditionalOptions> |
||||||
|
</AdditionalOptions> |
||||||
|
</Link> |
||||||
|
<ClCompile> |
||||||
|
<PreprocessorDefinitions>DEBUG</PreprocessorDefinitions> |
||||||
|
<UndefinePreprocessorDefinitions> |
||||||
|
</UndefinePreprocessorDefinitions> |
||||||
|
<UndefineAllPreprocessorDefinitions>false</UndefineAllPreprocessorDefinitions> |
||||||
|
</ClCompile> |
||||||
|
<PreBuildEvent> |
||||||
|
<Command> |
||||||
|
</Command> |
||||||
|
</PreBuildEvent> |
||||||
|
<PostBuildEvent> |
||||||
|
<Command> |
||||||
|
</Command> |
||||||
|
</PostBuildEvent> |
||||||
|
</ItemDefinitionGroup> |
||||||
|
<ItemDefinitionGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|Win32' "> |
||||||
|
<Link> |
||||||
|
<SubSystem>Console</SubSystem> |
||||||
|
</Link> |
||||||
|
</ItemDefinitionGroup> |
||||||
|
</Project> |
Loading…
Reference in new issue