SharpieBinder.csproj 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
  6. <ProjectGuid>{B180BDB5-E041-46CC-A1BD-4616D81BC15F}</ProjectGuid>
  7. <OutputType>Exe</OutputType>
  8. <RootNamespace>SharpieBinder</RootNamespace>
  9. <AssemblyName>SharpieBinder</AssemblyName>
  10. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  11. </PropertyGroup>
  12. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
  13. <DebugSymbols>true</DebugSymbols>
  14. <DebugType>full</DebugType>
  15. <Optimize>false</Optimize>
  16. <OutputPath>bin\</OutputPath>
  17. <DefineConstants>DEBUG;</DefineConstants>
  18. <ErrorReport>prompt</ErrorReport>
  19. <WarningLevel>4</WarningLevel>
  20. <PlatformTarget>x64</PlatformTarget>
  21. <ConsolePause>false</ConsolePause>
  22. </PropertyGroup>
  23. <ItemGroup>
  24. <Reference Include="Clang">
  25. <HintPath>bin\Clang.dll</HintPath>
  26. </Reference>
  27. <Reference Include="ICSharpCode.NRefactory, Version=5.0.0.0, Culture=neutral, PublicKeyToken=d4bfe873e7598c49, processorArchitecture=MSIL">
  28. <HintPath>packages\Bridge.NRefactory.5.5.1\lib\ICSharpCode.NRefactory.dll</HintPath>
  29. <Private>True</Private>
  30. </Reference>
  31. <Reference Include="ICSharpCode.NRefactory.Cecil, Version=5.0.0.0, Culture=neutral, PublicKeyToken=d4bfe873e7598c49, processorArchitecture=MSIL">
  32. <HintPath>packages\Bridge.NRefactory.5.5.1\lib\ICSharpCode.NRefactory.Cecil.dll</HintPath>
  33. <Private>True</Private>
  34. </Reference>
  35. <Reference Include="ICSharpCode.NRefactory.CSharp, Version=5.0.0.0, Culture=neutral, PublicKeyToken=d4bfe873e7598c49, processorArchitecture=MSIL">
  36. <HintPath>packages\Bridge.NRefactory.5.5.1\lib\ICSharpCode.NRefactory.CSharp.dll</HintPath>
  37. <Private>True</Private>
  38. </Reference>
  39. <Reference Include="Sharpie.Bind">
  40. <HintPath>bin\Sharpie.Bind.dll</HintPath>
  41. </Reference>
  42. <Reference Include="System" />
  43. <Reference Include="Mono.Cecil">
  44. <HintPath>packages\Mono.Cecil.0.9.6.1\lib\net45\Mono.Cecil.dll</HintPath>
  45. </Reference>
  46. <Reference Include="Mono.Cecil.Mdb">
  47. <HintPath>packages\Mono.Cecil.0.9.6.1\lib\net45\Mono.Cecil.Mdb.dll</HintPath>
  48. </Reference>
  49. <Reference Include="Mono.Cecil.Pdb">
  50. <HintPath>packages\Mono.Cecil.0.9.6.1\lib\net45\Mono.Cecil.Pdb.dll</HintPath>
  51. </Reference>
  52. <Reference Include="Mono.Cecil.Rocks">
  53. <HintPath>packages\Mono.Cecil.0.9.6.1\lib\net45\Mono.Cecil.Rocks.dll</HintPath>
  54. </Reference>
  55. </ItemGroup>
  56. <ItemGroup>
  57. <Compile Include="Commenter.cs" />
  58. <Compile Include="NamespaceRegistry.cs" />
  59. <Compile Include="Program.cs" />
  60. <Compile Include="Properties\AssemblyInfo.cs" />
  61. <Compile Include="CxxBinder.cs" />
  62. <Compile Include="ScanBaseTypes.cs" />
  63. <Compile Include="StringUtil.cs" />
  64. <Compile Include="OptionalParametersParser.cs" />
  65. </ItemGroup>
  66. <ItemGroup>
  67. <None Include="packages.config" />
  68. <None Include="README.md" />
  69. </ItemGroup>
  70. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  71. </Project>