Harmony12Interop.csproj 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.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>{92D7778F-4295-483C-AAEA-5D3F9264E917}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>0Harmony12</RootNamespace>
  11. <AssemblyName>0Harmony12</AssemblyName>
  12. <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  16. <PlatformTarget>AnyCPU</PlatformTarget>
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>bin\Debug\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  27. <PlatformTarget>AnyCPU</PlatformTarget>
  28. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>bin\Release\</OutputPath>
  31. <DefineConstants>TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  35. </PropertyGroup>
  36. <ItemGroup>
  37. <Reference Include="HarmonyXInterop, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null">
  38. <HintPath>..\..\lib\HarmonyXInterop.dll</HintPath>
  39. </Reference>
  40. <Reference Include="System" />
  41. <Reference Include="System.Core" />
  42. <Reference Include="System.Data" />
  43. <Reference Include="System.Xml" />
  44. </ItemGroup>
  45. <ItemGroup>
  46. <Compile Include="Attributes.cs" />
  47. <Compile Include="CodeInstruction.cs" />
  48. <Compile Include="Extras\DelegateTypeFactory.cs" />
  49. <Compile Include="Extras\FastAccess.cs" />
  50. <Compile Include="Extras\MethodInvoker.cs" />
  51. <Compile Include="HarmonyInstance.cs" />
  52. <Compile Include="HarmonyMethod.cs" />
  53. <Compile Include="HarmonySharedState.cs" />
  54. <Compile Include="ILCopying\Emitter.cs" />
  55. <Compile Include="ILCopying\ILInstruction.cs" />
  56. <Compile Include="Patch.cs" />
  57. <Compile Include="PatchFunctions.cs" />
  58. <Compile Include="PatchProcessor.cs" />
  59. <Compile Include="Priority.cs" />
  60. <Compile Include="Properties\AssemblyInfo.cs" />
  61. <Compile Include="Tools\AccessCache.cs" />
  62. <Compile Include="Tools\AccessTools.cs" />
  63. <Compile Include="Tools\Extensions.cs" />
  64. <Compile Include="Tools\FileLog.cs" />
  65. <Compile Include="Tools\PatchTools.cs" />
  66. <Compile Include="Tools\SymbolExtensions.cs" />
  67. <Compile Include="Tools\Traverse.cs" />
  68. <Compile Include="Transpilers.cs" />
  69. </ItemGroup>
  70. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  71. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  72. Other similar extension points exist, see Microsoft.Common.targets.
  73. <Target Name="BeforeBuild">
  74. </Target>
  75. <Target Name="AfterBuild">
  76. </Target>
  77. -->
  78. </Project>