Browse Source

- updated all profiler projects to .NET 4 (fixes random build errors)

- correction of Hook.vcxproj build configurations

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@4996 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Siegfried Pammer 16 years ago
parent
commit
94c1f0b93c
  1. 1
      SharpDevelop.Tests.sln
  2. 1
      SharpDevelop.sln
  3. 2
      debugbuild.bat
  4. 3
      src/AddIns/Misc/Profiler/Controller/Profiler.Controller.csproj
  5. 3
      src/AddIns/Misc/Profiler/Frontend/AddIn/BuildEvents.proj
  6. 2
      src/AddIns/Misc/Profiler/Frontend/Controls/Profiler.Controls.csproj
  7. 2
      src/AddIns/Misc/Profiler/Hook/Hook.def
  8. 121
      src/AddIns/Misc/Profiler/Hook/Hook.vcxproj
  9. 224
      src/AddIns/Misc/Profiler/Profiler.sln
  10. 11
      src/Libraries/NRefactory/Test/NRefactoryTests.csproj

1
SharpDevelop.Tests.sln

@ -548,6 +548,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Profiler.AddIn", "src\AddIn @@ -548,6 +548,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Profiler.AddIn", "src\AddIn
ProjectSection(ProjectDependencies) = postProject
{35CEF10F-2D4C-45F2-9DD1-161E0FEC583C} = {35CEF10F-2D4C-45F2-9DD1-161E0FEC583C}
{FE88FE17-D9FB-4FCC-9A35-6BFFB6B26CC6} = {FE88FE17-D9FB-4FCC-9A35-6BFFB6B26CC6}
{68D5EE3B-0C35-4DF1-BD29-6606851A02C1} = {68D5EE3B-0C35-4DF1-BD29-6606851A02C1}
EndProjectSection
EndProject
Project("{00000000-0000-0000-0000-000000000000}") = "Tools", "src\Tools\Tools.build", "{3DF4060F-5EE0-41CF-8096-F27355FD5511}"

1
SharpDevelop.sln

@ -448,6 +448,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Profiler.AddIn", "src\AddIn @@ -448,6 +448,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Profiler.AddIn", "src\AddIn
ProjectSection(ProjectDependencies) = postProject
{35CEF10F-2D4C-45F2-9DD1-161E0FEC583C} = {35CEF10F-2D4C-45F2-9DD1-161E0FEC583C}
{FE88FE17-D9FB-4FCC-9A35-6BFFB6B26CC6} = {FE88FE17-D9FB-4FCC-9A35-6BFFB6B26CC6}
{68D5EE3B-0C35-4DF1-BD29-6606851A02C1} = {68D5EE3B-0C35-4DF1-BD29-6606851A02C1}
EndProjectSection
EndProject
Project("{00000000-0000-0000-0000-000000000000}") = "Tools", "src\Tools\Tools.build", "{3DF4060F-5EE0-41CF-8096-F27355FD5511}"

2
debugbuild.bat

@ -1,7 +1,5 @@ @@ -1,7 +1,5 @@
%windir%\microsoft.net\framework\v4.0.20506\msbuild /m SharpDevelop.sln /p:Configuration=Debug "/p:FSharpBuildTasksPath=%CD%\src\AddIns\BackendBindings\FSharp\RequiredLibraries" "/p:Platform=Any CPU"
@IF %ERRORLEVEL% NEQ 0 GOTO err
rem %windir%\microsoft.net\framework\v4.0.20506\msbuild /m src\AddIns\Misc\Profiler\AutomatedBuild.proj /p:Configuration=Debug
@IF %ERRORLEVEL% NEQ 0 GOTO err
@exit /B 0
:err
@PAUSE

3
src/AddIns/Misc/Profiler/Controller/Profiler.Controller.csproj

@ -10,7 +10,7 @@ @@ -10,7 +10,7 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>ICSharpCode.Profiler.Controller</RootNamespace>
<AssemblyName>ICSharpCode.Profiler.Controller</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<NoStdLib>False</NoStdLib>
@ -135,7 +135,6 @@ @@ -135,7 +135,6 @@
</Compile>
<None Include="BuildEvents.proj" />
<CodeAnalysisDictionary Include="Properties\CodeAnalysisDictionary.xml" />
<None Include="Migrated rules for Profiler.Controller.ruleset" />
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">

3
src/AddIns/Misc/Profiler/Frontend/AddIn/BuildEvents.proj

@ -4,7 +4,8 @@ @@ -4,7 +4,8 @@
<PrepareForRunDependsOn>$(PrepareForRunDependsOn);MyPostBuildTarget</PrepareForRunDependsOn>
</PropertyGroup>
<ItemGroup>
<CopyHook Include="..\..\bin\Hook*" />
<CopyHook Include="..\..\bin\Hook*.dll" />
<CopyHook Include="..\..\bin\Hook*.pdb" />
</ItemGroup>
<Target Name="MyPostBuildTarget">
<Copy SourceFiles="@(CopyHook)" DestinationFolder="$(OutputPath)" />

2
src/AddIns/Misc/Profiler/Frontend/Controls/Profiler.Controls.csproj

@ -6,7 +6,7 @@ @@ -6,7 +6,7 @@
<OutputType>Library</OutputType>
<RootNamespace>ICSharpCode.Profiler.Controls</RootNamespace>
<AssemblyName>ICSharpCode.Profiler.Controls</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<AppDesignerFolder>Properties</AppDesignerFolder>
<SourceAnalysisOverrideSettingsFile>C:\Dokumente und Einstellungen\HP\Anwendungsdaten\ICSharpCode/SharpDevelop3.0\Settings.SourceAnalysis</SourceAnalysisOverrideSettingsFile>
<AllowUnsafeBlocks>False</AllowUnsafeBlocks>

2
src/AddIns/Misc/Profiler/Hook/Hook.def

@ -1,5 +1,3 @@ @@ -1,5 +1,3 @@
LIBRARY "Hook.DLL"
EXPORTS
DllCanUnloadNow PRIVATE
DllGetClassObject PRIVATE

121
src/AddIns/Misc/Profiler/Hook/Hook.vcxproj

@ -17,73 +17,39 @@ @@ -17,73 +17,39 @@
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGUID>{68D5EE3B-0C35-4DF1-BD29-6606851A02C1}</ProjectGUID>
<RootNamespace>ProfilerCore</RootNamespace>
<OutputType>Library</OutputType>
<ConfigurationType>DynamicLibrary</ConfigurationType>
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
<RunCodeAnalysis>False</RunCodeAnalysis>
<RunSourceAnalysis>False</RunSourceAnalysis>
<AssemblyName>Hook</AssemblyName>
<SourceAnalysisOverrideSettingsFile>C:\Users\Siegfried\AppData\Roaming\ICSharpCode/SharpDevelop4.0\Settings.SourceAnalysis</SourceAnalysisOverrideSettingsFile>
</PropertyGroup>
<Target Name="Clean">
<Warning Text="VCTargets not found" />
</Target>
<Target Name="Clean" />
<Target Name="Build">
<Warning Text="VCTargets not found" />
</Target>
<Target Name="Rebuild">
<Warning Text="VCTargets not found" />
</Target>
<Import Condition="Exists('$(VCTargetsPath)\Microsoft.Cpp.targets')" Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<Import Condition="Exists('$(VCTargetsPath)\Microsoft.Cpp.targets')" Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<Import Condition="Exists('$(VCTargetsPath)\Microsoft.Cpp.targets')" Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<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 Label="Globals">
<ProjectGUID>{68D5EE3B-0C35-4DF1-BD29-6606851A02C1}</ProjectGUID>
<RootNamespace>Hook</RootNamespace>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Release|X64'">
<Import Condition="Exists('$(VCTargetsPath)\Microsoft.Cpp.targets')" Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup>
<ConfigurationType>DynamicLibrary</ConfigurationType>
<CharacterSet>MultiByte</CharacterSet>
<WholeProgramOptimization>true</WholeProgramOptimization>
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
<AssemblyName>Hook</AssemblyName>
</PropertyGroup>
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<Import Condition="Exists('$(VCTargetsPath)\Microsoft.Cpp.targets')" Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<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>
<WholeProgramOptimization Condition="'$(Configuration)'=='Release'">true</WholeProgramOptimization>
<OutDir>$(ProjectDir)..\bin\</OutDir>
<IntDir>$(ProjectDir)obj\$(Platform)\$(Configuration)\</IntDir>
<TargetName Condition="'$(Platform)'=='Win32'">$(ProjectName)32</TargetName>
<TargetName Condition="'$(Platform)'=='X64'">$(ProjectName)64</TargetName>
<TargetExt>.dll</TargetExt>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<PreBuildEvent>
<Message>
</Message>
<Command>
</Command>
</PreBuildEvent>
<ClCompile>
<Optimization>Disabled</Optimization>
<PreprocessorDefinitions>DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
@ -98,16 +64,13 @@ @@ -98,16 +64,13 @@
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<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>
@ -136,10 +99,6 @@ @@ -136,10 +99,6 @@
<GenerateDebugInformation>true</GenerateDebugInformation>
<TargetMachine>MachineX64</TargetMachine>
</Link>
<PostBuildEvent>
<Command>
</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
@ -158,6 +117,7 @@ @@ -158,6 +117,7 @@
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<AdditionalDependencies>corguids.lib;%(AdditionalDependencies)</AdditionalDependencies>
<ModuleDefinitionFile>.\Hook.def</ModuleDefinitionFile>
<GenerateDebugInformation>false</GenerateDebugInformation>
@ -165,10 +125,6 @@ @@ -165,10 +125,6 @@
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<TargetMachine>MachineX86</TargetMachine>
</Link>
<PostBuildEvent>
<Command>
</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|X64'">
<Midl>
@ -200,10 +156,6 @@ @@ -200,10 +156,6 @@
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<TargetMachine>MachineX64</TargetMachine>
</Link>
<PostBuildEvent>
<Command>
</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
<ClInclude Include="allocator.h" />
@ -241,38 +193,5 @@ @@ -241,38 +193,5 @@
<None Include="Hook.def" />
<None Include="MetaData_Syntax_Info.txt" />
</ItemGroup>
<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>
<Import Condition="Exists('$(VCTargetsPath)\Microsoft.Cpp.targets')" Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
</Project>

224
src/AddIns/Misc/Profiler/Profiler.sln

@ -1,224 +0,0 @@ @@ -1,224 +0,0 @@

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 10
# SharpDevelop 4.0.0.4966
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{5147BA25-8362-481D-8CF9-450096595B7A}"
ProjectSection(SolutionItems) = preProject
TODO.txt = TODO.txt
AutomatedBuild.proj = AutomatedBuild.proj
Documentation.txt = Documentation.txt
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Frontend", "Frontend", "{E06867E9-6942-4DB6-89F5-DE0BF56C44DE}"
ProjectSection(SolutionItems) = postProject
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Profiler.Controls", "Frontend\Controls\Profiler.Controls.csproj", "{BDA49550-5ED1-4C6B-B648-657B2CACD8E0}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Profiler.AddIn", "Frontend\AddIn\Profiler.AddIn.csproj", "{D294A12D-4B38-4F25-9AA6-3D4A6CE26E7B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BenchmarkRunner", "Frontend\BenchmarkRunner\BenchmarkRunner.csproj", "{DBEF953E-F7BC-4D54-8A27-B758EC875C49}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Profiler.Gui", "Frontend\Gui\Profiler.Gui.csproj", "{FF09FBA1-86DA-4D8D-B549-A4FC70FC5AE9}"
ProjectSection(ProjectDependencies) = postProject
{D294A12D-4B38-4F25-9AA6-3D4A6CE26E7B} = {D294A12D-4B38-4F25-9AA6-3D4A6CE26E7B}
{F09B6132-5DF9-4E63-BA23-EE82D75CD5B9} = {F09B6132-5DF9-4E63-BA23-EE82D75CD5B9}
{68D5EE3B-0C35-4DF1-BD29-6606851A02C1} = {68D5EE3B-0C35-4DF1-BD29-6606851A02C1}
{778BA9AE-EE77-444F-A0C9-D795BB977C1A} = {778BA9AE-EE77-444F-A0C9-D795BB977C1A}
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{791AE00B-AD96-410A-AAA8-957DDD83C57A}"
ProjectSection(SolutionItems) = postProject
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnicodeTest", "Tests\UnicodeTest\UnicodeTest.csproj", "{D336926C-6180-4F62-B88D-E366B240127B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Profiler.Tests", "Tests\Profiler.Tests\Profiler.Tests.csproj", "{068F9531-5D29-49E0-980E-59982A3A0469}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PauseTest", "Tests\PauseTest\PauseTest.csproj", "{650AEAA0-0678-4A75-A1CC-F46DC4E44D2A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HelloWorld", "Tests\HelloWorld\HelloWorld.csproj", "{778BA9AE-EE77-444F-A0C9-D795BB977C1A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Benchmark", "Tests\Benchmark\Benchmark.csproj", "{F09B6132-5DF9-4E63-BA23-EE82D75CD5B9}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Profiler.Controller", "Controller\Profiler.Controller.csproj", "{72FFB35A-C9E2-4A31-B4FA-E3E3E28DED5F}"
ProjectSection(ProjectDependencies) = postProject
{FE88FE17-D9FB-4FCC-9A35-6BFFB6B26CC6} = {FE88FE17-D9FB-4FCC-9A35-6BFFB6B26CC6}
{F09B6132-5DF9-4E63-BA23-EE82D75CD5B9} = {F09B6132-5DF9-4E63-BA23-EE82D75CD5B9}
{68D5EE3B-0C35-4DF1-BD29-6606851A02C1} = {68D5EE3B-0C35-4DF1-BD29-6606851A02C1}
{650AEAA0-0678-4A75-A1CC-F46DC4E44D2A} = {650AEAA0-0678-4A75-A1CC-F46DC4E44D2A}
{778BA9AE-EE77-444F-A0C9-D795BB977C1A} = {778BA9AE-EE77-444F-A0C9-D795BB977C1A}
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PerfectHashFinder", "PerfectHashFinder\PerfectHashFinder.csproj", "{2EACD124-3D84-4F4D-8C82-D3E396A5DA21}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Profiler.X64Converter", "X64Converter\Profiler.X64Converter.csproj", "{FE88FE17-D9FB-4FCC-9A35-6BFFB6B26CC6}"
EndProject
Project("{0E96FCFA-9DAC-4534-AC18-01A90C368873}") = "Hook", "Hook\Hook.vcxproj", "{68D5EE3B-0C35-4DF1-BD29-6606851A02C1}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Win32 = Debug|Win32
Debug|x64 = Debug|x64
Release|Win32 = Release|Win32
Release|x64 = Release|x64
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{FF09FBA1-86DA-4D8D-B549-A4FC70FC5AE9}.Debug|Win32.ActiveCfg = Debug|Any CPU
{FF09FBA1-86DA-4D8D-B549-A4FC70FC5AE9}.Debug|Win32.Build.0 = Debug|Any CPU
{FF09FBA1-86DA-4D8D-B549-A4FC70FC5AE9}.Debug|x64.ActiveCfg = Debug|Any CPU
{FF09FBA1-86DA-4D8D-B549-A4FC70FC5AE9}.Debug|x64.Build.0 = Debug|Any CPU
{FF09FBA1-86DA-4D8D-B549-A4FC70FC5AE9}.Release|Win32.ActiveCfg = Release|Any CPU
{FF09FBA1-86DA-4D8D-B549-A4FC70FC5AE9}.Release|Win32.Build.0 = Release|Any CPU
{FF09FBA1-86DA-4D8D-B549-A4FC70FC5AE9}.Release|x64.ActiveCfg = Release|Any CPU
{FF09FBA1-86DA-4D8D-B549-A4FC70FC5AE9}.Release|x64.Build.0 = Release|Any CPU
{DBEF953E-F7BC-4D54-8A27-B758EC875C49}.Debug|Win32.ActiveCfg = Debug|Any CPU
{DBEF953E-F7BC-4D54-8A27-B758EC875C49}.Debug|Win32.Build.0 = Debug|Any CPU
{DBEF953E-F7BC-4D54-8A27-B758EC875C49}.Debug|x64.ActiveCfg = Debug|Any CPU
{DBEF953E-F7BC-4D54-8A27-B758EC875C49}.Debug|x64.Build.0 = Debug|Any CPU
{DBEF953E-F7BC-4D54-8A27-B758EC875C49}.Release|Win32.ActiveCfg = Release|Any CPU
{DBEF953E-F7BC-4D54-8A27-B758EC875C49}.Release|Win32.Build.0 = Release|Any CPU
{DBEF953E-F7BC-4D54-8A27-B758EC875C49}.Release|x64.ActiveCfg = Release|Any CPU
{DBEF953E-F7BC-4D54-8A27-B758EC875C49}.Release|x64.Build.0 = Release|Any CPU
{F09B6132-5DF9-4E63-BA23-EE82D75CD5B9}.Debug|Win32.ActiveCfg = Debug|Win32
{F09B6132-5DF9-4E63-BA23-EE82D75CD5B9}.Debug|Win32.Build.0 = Debug|Win32
{F09B6132-5DF9-4E63-BA23-EE82D75CD5B9}.Debug|x64.ActiveCfg = Debug|Any CPU
{F09B6132-5DF9-4E63-BA23-EE82D75CD5B9}.Debug|x64.Build.0 = Debug|Any CPU
{F09B6132-5DF9-4E63-BA23-EE82D75CD5B9}.Release|Win32.ActiveCfg = Release|Win32
{F09B6132-5DF9-4E63-BA23-EE82D75CD5B9}.Release|Win32.Build.0 = Release|Win32
{F09B6132-5DF9-4E63-BA23-EE82D75CD5B9}.Release|x64.ActiveCfg = Release|Any CPU
{F09B6132-5DF9-4E63-BA23-EE82D75CD5B9}.Release|x64.Build.0 = Release|Any CPU
{778BA9AE-EE77-444F-A0C9-D795BB977C1A}.Debug|Win32.ActiveCfg = Debug|Win32
{778BA9AE-EE77-444F-A0C9-D795BB977C1A}.Debug|Win32.Build.0 = Debug|Win32
{778BA9AE-EE77-444F-A0C9-D795BB977C1A}.Debug|x64.ActiveCfg = Debug|Any CPU
{778BA9AE-EE77-444F-A0C9-D795BB977C1A}.Debug|x64.Build.0 = Debug|Any CPU
{778BA9AE-EE77-444F-A0C9-D795BB977C1A}.Release|Win32.ActiveCfg = Release|Any CPU
{778BA9AE-EE77-444F-A0C9-D795BB977C1A}.Release|Win32.Build.0 = Release|Any CPU
{778BA9AE-EE77-444F-A0C9-D795BB977C1A}.Release|x64.ActiveCfg = Release|Any CPU
{778BA9AE-EE77-444F-A0C9-D795BB977C1A}.Release|x64.Build.0 = Release|Any CPU
{650AEAA0-0678-4A75-A1CC-F46DC4E44D2A}.Debug|Win32.ActiveCfg = Debug|Any CPU
{650AEAA0-0678-4A75-A1CC-F46DC4E44D2A}.Debug|Win32.Build.0 = Debug|Any CPU
{650AEAA0-0678-4A75-A1CC-F46DC4E44D2A}.Debug|x64.ActiveCfg = Debug|Any CPU
{650AEAA0-0678-4A75-A1CC-F46DC4E44D2A}.Debug|x64.Build.0 = Debug|Any CPU
{650AEAA0-0678-4A75-A1CC-F46DC4E44D2A}.Release|Win32.ActiveCfg = Release|Any CPU
{650AEAA0-0678-4A75-A1CC-F46DC4E44D2A}.Release|Win32.Build.0 = Release|Any CPU
{650AEAA0-0678-4A75-A1CC-F46DC4E44D2A}.Release|x64.ActiveCfg = Release|Any CPU
{650AEAA0-0678-4A75-A1CC-F46DC4E44D2A}.Release|x64.Build.0 = Release|Any CPU
{72FFB35A-C9E2-4A31-B4FA-E3E3E28DED5F}.Debug|Win32.ActiveCfg = Debug|Any CPU
{72FFB35A-C9E2-4A31-B4FA-E3E3E28DED5F}.Debug|Win32.Build.0 = Debug|Any CPU
{72FFB35A-C9E2-4A31-B4FA-E3E3E28DED5F}.Debug|x64.ActiveCfg = Debug|AnyCPU
{72FFB35A-C9E2-4A31-B4FA-E3E3E28DED5F}.Debug|x64.Build.0 = Debug|AnyCPU
{72FFB35A-C9E2-4A31-B4FA-E3E3E28DED5F}.Release|Win32.ActiveCfg = Release|Any CPU
{72FFB35A-C9E2-4A31-B4FA-E3E3E28DED5F}.Release|Win32.Build.0 = Release|Any CPU
{72FFB35A-C9E2-4A31-B4FA-E3E3E28DED5F}.Release|x64.ActiveCfg = Release|AnyCPU
{72FFB35A-C9E2-4A31-B4FA-E3E3E28DED5F}.Release|x64.Build.0 = Release|AnyCPU
{2EACD124-3D84-4F4D-8C82-D3E396A5DA21}.Debug|Win32.ActiveCfg = Debug|Any CPU
{2EACD124-3D84-4F4D-8C82-D3E396A5DA21}.Debug|Win32.Build.0 = Debug|Any CPU
{2EACD124-3D84-4F4D-8C82-D3E396A5DA21}.Debug|x64.ActiveCfg = Debug|x64
{2EACD124-3D84-4F4D-8C82-D3E396A5DA21}.Debug|x64.Build.0 = Debug|x64
{2EACD124-3D84-4F4D-8C82-D3E396A5DA21}.Release|Win32.ActiveCfg = Release|Win32
{2EACD124-3D84-4F4D-8C82-D3E396A5DA21}.Release|Win32.Build.0 = Release|Win32
{2EACD124-3D84-4F4D-8C82-D3E396A5DA21}.Release|x64.ActiveCfg = Release|x64
{2EACD124-3D84-4F4D-8C82-D3E396A5DA21}.Release|x64.Build.0 = Release|x64
{FE88FE17-D9FB-4FCC-9A35-6BFFB6B26CC6}.Debug|Win32.ActiveCfg = Debug|Any CPU
{FE88FE17-D9FB-4FCC-9A35-6BFFB6B26CC6}.Debug|x64.ActiveCfg = Debug|Any CPU
{FE88FE17-D9FB-4FCC-9A35-6BFFB6B26CC6}.Release|Win32.ActiveCfg = Release|Any CPU
{FE88FE17-D9FB-4FCC-9A35-6BFFB6B26CC6}.Release|x64.ActiveCfg = Release|Any CPU
{FE88FE17-D9FB-4FCC-9A35-6BFFB6B26CC6}.Debug|Win32.Build.0 = Debug|Any CPU
{FE88FE17-D9FB-4FCC-9A35-6BFFB6B26CC6}.Debug|x64.Build.0 = Debug|Any CPU
{FE88FE17-D9FB-4FCC-9A35-6BFFB6B26CC6}.Release|Win32.Build.0 = Release|Any CPU
{FE88FE17-D9FB-4FCC-9A35-6BFFB6B26CC6}.Release|x64.Build.0 = Release|Any CPU
{D294A12D-4B38-4F25-9AA6-3D4A6CE26E7B}.Debug|Win32.Build.0 = Debug|AnyCPU
{D294A12D-4B38-4F25-9AA6-3D4A6CE26E7B}.Debug|Win32.ActiveCfg = Debug|AnyCPU
{D294A12D-4B38-4F25-9AA6-3D4A6CE26E7B}.Debug|x64.Build.0 = Debug|x64
{D294A12D-4B38-4F25-9AA6-3D4A6CE26E7B}.Debug|x64.ActiveCfg = Debug|x64
{D294A12D-4B38-4F25-9AA6-3D4A6CE26E7B}.Release|Win32.Build.0 = Release|AnyCPU
{D294A12D-4B38-4F25-9AA6-3D4A6CE26E7B}.Release|Win32.ActiveCfg = Release|AnyCPU
{D294A12D-4B38-4F25-9AA6-3D4A6CE26E7B}.Release|x64.Build.0 = Release|x64
{D294A12D-4B38-4F25-9AA6-3D4A6CE26E7B}.Release|x64.ActiveCfg = Release|x64
{BDA49550-5ED1-4C6B-B648-657B2CACD8E0}.Debug|Win32.Build.0 = Debug|AnyCPU
{BDA49550-5ED1-4C6B-B648-657B2CACD8E0}.Debug|Win32.ActiveCfg = Debug|AnyCPU
{BDA49550-5ED1-4C6B-B648-657B2CACD8E0}.Debug|x64.Build.0 = Debug|x64
{BDA49550-5ED1-4C6B-B648-657B2CACD8E0}.Debug|x64.ActiveCfg = Debug|x64
{BDA49550-5ED1-4C6B-B648-657B2CACD8E0}.Release|Win32.Build.0 = Release|AnyCPU
{BDA49550-5ED1-4C6B-B648-657B2CACD8E0}.Release|Win32.ActiveCfg = Release|AnyCPU
{BDA49550-5ED1-4C6B-B648-657B2CACD8E0}.Release|x64.Build.0 = Release|x64
{BDA49550-5ED1-4C6B-B648-657B2CACD8E0}.Release|x64.ActiveCfg = Release|x64
{068F9531-5D29-49E0-980E-59982A3A0469}.Debug|Win32.Build.0 = Debug|Win32
{068F9531-5D29-49E0-980E-59982A3A0469}.Debug|Win32.ActiveCfg = Debug|Win32
{068F9531-5D29-49E0-980E-59982A3A0469}.Debug|x64.Build.0 = Debug|x64
{068F9531-5D29-49E0-980E-59982A3A0469}.Debug|x64.ActiveCfg = Debug|x64
{068F9531-5D29-49E0-980E-59982A3A0469}.Release|Win32.Build.0 = Release|Win32
{068F9531-5D29-49E0-980E-59982A3A0469}.Release|Win32.ActiveCfg = Release|Win32
{068F9531-5D29-49E0-980E-59982A3A0469}.Release|x64.Build.0 = Release|x64
{068F9531-5D29-49E0-980E-59982A3A0469}.Release|x64.ActiveCfg = Release|x64
{D336926C-6180-4F62-B88D-E366B240127B}.Debug|Win32.Build.0 = Debug|Win32
{D336926C-6180-4F62-B88D-E366B240127B}.Debug|Win32.ActiveCfg = Debug|Win32
{D336926C-6180-4F62-B88D-E366B240127B}.Debug|x64.Build.0 = Debug|x64
{D336926C-6180-4F62-B88D-E366B240127B}.Debug|x64.ActiveCfg = Debug|x64
{D336926C-6180-4F62-B88D-E366B240127B}.Release|Win32.Build.0 = Release|Win32
{D336926C-6180-4F62-B88D-E366B240127B}.Release|Win32.ActiveCfg = Release|Win32
{D336926C-6180-4F62-B88D-E366B240127B}.Release|x64.Build.0 = Release|x64
{D336926C-6180-4F62-B88D-E366B240127B}.Release|x64.ActiveCfg = Release|x64
{FE88FE17-D9FB-4FCC-9A35-6BFFB6B26CC6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FE88FE17-D9FB-4FCC-9A35-6BFFB6B26CC6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FE88FE17-D9FB-4FCC-9A35-6BFFB6B26CC6}.Release|Any CPU.Build.0 = Release|Any CPU
{FE88FE17-D9FB-4FCC-9A35-6BFFB6B26CC6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2EACD124-3D84-4F4D-8C82-D3E396A5DA21}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2EACD124-3D84-4F4D-8C82-D3E396A5DA21}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2EACD124-3D84-4F4D-8C82-D3E396A5DA21}.Release|Any CPU.Build.0 = Release|Any CPU
{2EACD124-3D84-4F4D-8C82-D3E396A5DA21}.Release|Any CPU.ActiveCfg = Release|Any CPU
{72FFB35A-C9E2-4A31-B4FA-E3E3E28DED5F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{72FFB35A-C9E2-4A31-B4FA-E3E3E28DED5F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{72FFB35A-C9E2-4A31-B4FA-E3E3E28DED5F}.Release|Any CPU.Build.0 = Release|Any CPU
{72FFB35A-C9E2-4A31-B4FA-E3E3E28DED5F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{650AEAA0-0678-4A75-A1CC-F46DC4E44D2A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{650AEAA0-0678-4A75-A1CC-F46DC4E44D2A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{650AEAA0-0678-4A75-A1CC-F46DC4E44D2A}.Release|Any CPU.Build.0 = Release|Any CPU
{650AEAA0-0678-4A75-A1CC-F46DC4E44D2A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BDA49550-5ED1-4C6B-B648-657B2CACD8E0}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BDA49550-5ED1-4C6B-B648-657B2CACD8E0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BDA49550-5ED1-4C6B-B648-657B2CACD8E0}.Release|Any CPU.Build.0 = Release|Any CPU
{BDA49550-5ED1-4C6B-B648-657B2CACD8E0}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D294A12D-4B38-4F25-9AA6-3D4A6CE26E7B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D294A12D-4B38-4F25-9AA6-3D4A6CE26E7B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D294A12D-4B38-4F25-9AA6-3D4A6CE26E7B}.Release|Any CPU.Build.0 = Release|Any CPU
{D294A12D-4B38-4F25-9AA6-3D4A6CE26E7B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DBEF953E-F7BC-4D54-8A27-B758EC875C49}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DBEF953E-F7BC-4D54-8A27-B758EC875C49}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DBEF953E-F7BC-4D54-8A27-B758EC875C49}.Release|Any CPU.Build.0 = Release|Any CPU
{DBEF953E-F7BC-4D54-8A27-B758EC875C49}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FF09FBA1-86DA-4D8D-B549-A4FC70FC5AE9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FF09FBA1-86DA-4D8D-B549-A4FC70FC5AE9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FF09FBA1-86DA-4D8D-B549-A4FC70FC5AE9}.Release|Any CPU.Build.0 = Release|Any CPU
{FF09FBA1-86DA-4D8D-B549-A4FC70FC5AE9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{68D5EE3B-0C35-4DF1-BD29-6606851A02C1}.Debug|Win32.Build.0 = Debug|Win32
{68D5EE3B-0C35-4DF1-BD29-6606851A02C1}.Debug|Win32.ActiveCfg = Debug|Win32
{68D5EE3B-0C35-4DF1-BD29-6606851A02C1}.Debug|x64.Build.0 = Debug|Win32
{68D5EE3B-0C35-4DF1-BD29-6606851A02C1}.Debug|x64.ActiveCfg = Debug|Win32
{68D5EE3B-0C35-4DF1-BD29-6606851A02C1}.Debug|Any CPU.Build.0 = Debug|Win32
{68D5EE3B-0C35-4DF1-BD29-6606851A02C1}.Debug|Any CPU.ActiveCfg = Debug|Win32
{68D5EE3B-0C35-4DF1-BD29-6606851A02C1}.Release|Win32.Build.0 = Release|Win32
{68D5EE3B-0C35-4DF1-BD29-6606851A02C1}.Release|Win32.ActiveCfg = Release|Win32
{68D5EE3B-0C35-4DF1-BD29-6606851A02C1}.Release|x64.Build.0 = Release|Win32
{68D5EE3B-0C35-4DF1-BD29-6606851A02C1}.Release|x64.ActiveCfg = Release|Win32
{68D5EE3B-0C35-4DF1-BD29-6606851A02C1}.Release|Any CPU.Build.0 = Release|Win32
{68D5EE3B-0C35-4DF1-BD29-6606851A02C1}.Release|Any CPU.ActiveCfg = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{FF09FBA1-86DA-4D8D-B549-A4FC70FC5AE9} = {E06867E9-6942-4DB6-89F5-DE0BF56C44DE}
{DBEF953E-F7BC-4D54-8A27-B758EC875C49} = {E06867E9-6942-4DB6-89F5-DE0BF56C44DE}
{D294A12D-4B38-4F25-9AA6-3D4A6CE26E7B} = {E06867E9-6942-4DB6-89F5-DE0BF56C44DE}
{BDA49550-5ED1-4C6B-B648-657B2CACD8E0} = {E06867E9-6942-4DB6-89F5-DE0BF56C44DE}
{F09B6132-5DF9-4E63-BA23-EE82D75CD5B9} = {791AE00B-AD96-410A-AAA8-957DDD83C57A}
{778BA9AE-EE77-444F-A0C9-D795BB977C1A} = {791AE00B-AD96-410A-AAA8-957DDD83C57A}
{650AEAA0-0678-4A75-A1CC-F46DC4E44D2A} = {791AE00B-AD96-410A-AAA8-957DDD83C57A}
{068F9531-5D29-49E0-980E-59982A3A0469} = {791AE00B-AD96-410A-AAA8-957DDD83C57A}
{D336926C-6180-4F62-B88D-E366B240127B} = {791AE00B-AD96-410A-AAA8-957DDD83C57A}
EndGlobalSection
EndGlobal

11
src/Libraries/NRefactory/Test/NRefactoryTests.csproj

@ -10,24 +10,23 @@ @@ -10,24 +10,23 @@
<OutputTarget>Library</OutputTarget>
<NoStdLib>False</NoStdLib>
<NoConfig>False</NoConfig>
<RunPostBuildEvent>OnSuccessfulBuild</RunPostBuildEvent>
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
<OutputType>Library</OutputType>
<OutputPath>..\..\..\..\bin\UnitTests\</OutputPath>
<AllowUnsafeBlocks>False</AllowUnsafeBlocks>
<PlatformTarget>AnyCPU</PlatformTarget>
<WarningLevel>4</WarningLevel>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
<DefineConstants>DEBUG</DefineConstants>
<Optimize>False</Optimize>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<Optimize>True</Optimize>
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DebugType>Full</DebugType>
@ -36,6 +35,12 @@ @@ -36,6 +35,12 @@
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DebugSymbols>False</DebugSymbols>
</PropertyGroup>
<PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
<RegisterForComInterop>False</RegisterForComInterop>
<GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
<BaseAddress>4194304</BaseAddress>
<FileAlignment>4096</FileAlignment>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="nunit.framework">

Loading…
Cancel
Save