decompiler.csproj 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{4175AE61-CD07-4C2B-B537-AC0B8460D611}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Decomplier</RootNamespace>
  11. <AssemblyName>decompiler</AssemblyName>
  12. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <TargetFrameworkProfile />
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <PlatformTarget>AnyCPU</PlatformTarget>
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>..\library\Decompiler\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  27. <PlatformTarget>AnyCPU</PlatformTarget>
  28. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>..\library\Decompiler\</OutputPath>
  31. <DefineConstants>TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. </PropertyGroup>
  35. <PropertyGroup>
  36. <StartupObject>Decomplier.MainClass</StartupObject>
  37. </PropertyGroup>
  38. <ItemGroup>
  39. <Reference Include="ICSharpCode.AvalonEdit">
  40. <HintPath>..\Tools\ILSpy\ICSharpCode.AvalonEdit.dll</HintPath>
  41. </Reference>
  42. <Reference Include="ICSharpCode.Decompiler">
  43. <HintPath>..\Tools\ILSpy\ICSharpCode.Decompiler.dll</HintPath>
  44. </Reference>
  45. <Reference Include="ICSharpCode.NRefactory">
  46. <HintPath>..\Tools\ILSpy\ICSharpCode.NRefactory.dll</HintPath>
  47. </Reference>
  48. <Reference Include="ICSharpCode.NRefactory.CSharp">
  49. <HintPath>..\Tools\ILSpy\ICSharpCode.NRefactory.CSharp.dll</HintPath>
  50. </Reference>
  51. <Reference Include="ICSharpCode.NRefactory.VB">
  52. <HintPath>..\Tools\ILSpy\ICSharpCode.NRefactory.VB.dll</HintPath>
  53. </Reference>
  54. <Reference Include="ICSharpCode.TreeView">
  55. <HintPath>..\Tools\ILSpy\ICSharpCode.TreeView.dll</HintPath>
  56. </Reference>
  57. <Reference Include="ILSpy">
  58. <HintPath>..\Tools\ILSpy\ILSpy.exe</HintPath>
  59. </Reference>
  60. <Reference Include="ILSpy.BamlDecompiler.Plugin">
  61. <HintPath>..\Tools\ILSpy\ILSpy.BamlDecompiler.Plugin.dll</HintPath>
  62. </Reference>
  63. <Reference Include="ILSpy.SharpDevelop.LGPL">
  64. <HintPath>..\Tools\ILSpy\ILSpy.SharpDevelop.LGPL.dll</HintPath>
  65. </Reference>
  66. <Reference Include="Mono.Cecil">
  67. <HintPath>..\Tools\ILSpy\Mono.Cecil.dll</HintPath>
  68. </Reference>
  69. <Reference Include="Mono.Cecil.Pdb">
  70. <HintPath>..\Tools\ILSpy\Mono.Cecil.Pdb.dll</HintPath>
  71. </Reference>
  72. <Reference Include="System" />
  73. <Reference Include="System.ComponentModel.Composition" />
  74. <Reference Include="System.Core" />
  75. <Reference Include="System.Data.Linq" />
  76. <Reference Include="System.Xml.Linq" />
  77. <Reference Include="System.Data.DataSetExtensions" />
  78. <Reference Include="System.Data" />
  79. <Reference Include="System.Xml" />
  80. </ItemGroup>
  81. <ItemGroup>
  82. <Compile Include="Main.cs" />
  83. <Compile Include="Properties\AssemblyInfo.cs" />
  84. </ItemGroup>
  85. <ItemGroup>
  86. <WCFMetadata Include="Service References\" />
  87. </ItemGroup>
  88. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  89. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  90. Other similar extension points exist, see Microsoft.Common.targets.
  91. <Target Name="BeforeBuild">
  92. </Target>
  93. <Target Name="AfterBuild">
  94. </Target>
  95. -->
  96. </Project>