You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

104 lines
4.5 KiB

  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>{14092533-98BB-40A4-9AFC-27BB75672A70}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>IPA</RootNamespace>
  11. <AssemblyName>IPA</AssemblyName>
  12. <TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <TargetFrameworkProfile>
  15. </TargetFrameworkProfile>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  18. <PlatformTarget>AnyCPU</PlatformTarget>
  19. <DebugSymbols>true</DebugSymbols>
  20. <DebugType>full</DebugType>
  21. <Optimize>false</Optimize>
  22. <OutputPath>bin\Debug\</OutputPath>
  23. <DefineConstants>DEBUG;TRACE</DefineConstants>
  24. <ErrorReport>prompt</ErrorReport>
  25. <WarningLevel>4</WarningLevel>
  26. <Prefer32Bit>false</Prefer32Bit>
  27. </PropertyGroup>
  28. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  29. <PlatformTarget>AnyCPU</PlatformTarget>
  30. <DebugType>none</DebugType>
  31. <Optimize>true</Optimize>
  32. <OutputPath>bin\Release\</OutputPath>
  33. <DefineConstants>TRACE</DefineConstants>
  34. <ErrorReport>prompt</ErrorReport>
  35. <WarningLevel>4</WarningLevel>
  36. <Prefer32Bit>false</Prefer32Bit>
  37. </PropertyGroup>
  38. <PropertyGroup>
  39. <ApplicationIcon>favicon.ico</ApplicationIcon>
  40. </PropertyGroup>
  41. <ItemGroup>
  42. <Reference Include="Mono.Cecil, Version=0.9.6.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756, processorArchitecture=MSIL">
  43. <HintPath>..\packages\Mono.Cecil.0.9.6.4\lib\net45\Mono.Cecil.dll</HintPath>
  44. <Private>True</Private>
  45. </Reference>
  46. <Reference Include="Mono.Cecil.Mdb, Version=0.9.6.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756, processorArchitecture=MSIL">
  47. <HintPath>..\packages\Mono.Cecil.0.9.6.4\lib\net45\Mono.Cecil.Mdb.dll</HintPath>
  48. <Private>False</Private>
  49. </Reference>
  50. <Reference Include="Mono.Cecil.Pdb, Version=0.9.6.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756, processorArchitecture=MSIL">
  51. <HintPath>..\packages\Mono.Cecil.0.9.6.4\lib\net45\Mono.Cecil.Pdb.dll</HintPath>
  52. <Private>False</Private>
  53. </Reference>
  54. <Reference Include="Mono.Cecil.Rocks, Version=0.9.6.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756, processorArchitecture=MSIL">
  55. <HintPath>..\packages\Mono.Cecil.0.9.6.4\lib\net45\Mono.Cecil.Rocks.dll</HintPath>
  56. <Private>False</Private>
  57. </Reference>
  58. <Reference Include="System" />
  59. <Reference Include="System.Core" />
  60. <Reference Include="System.Windows.Forms" />
  61. <Reference Include="System.Xml.Linq" />
  62. <Reference Include="System.Data.DataSetExtensions" />
  63. <Reference Include="System.Data" />
  64. <Reference Include="System.Xml" />
  65. </ItemGroup>
  66. <ItemGroup>
  67. <Compile Include="PatchContext.cs" />
  68. <Compile Include="Patcher\BackupManager.cs" />
  69. <Compile Include="Patcher\BackupUnit.cs" />
  70. <Compile Include="Patcher\Patcher.cs" />
  71. <Compile Include="Patcher\Virtualizer.cs" />
  72. <Compile Include="Program.cs" />
  73. <Compile Include="Properties\AssemblyInfo.cs" />
  74. <Compile Include="Shortcut.cs" />
  75. </ItemGroup>
  76. <ItemGroup>
  77. <None Include="app.config" />
  78. <None Include="packages.config" />
  79. </ItemGroup>
  80. <ItemGroup>
  81. <Content Include="favicon.ico" />
  82. </ItemGroup>
  83. <ItemGroup>
  84. <Folder Include="IPA\Fallback\" />
  85. </ItemGroup>
  86. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  87. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  88. Other similar extension points exist, see Microsoft.Common.targets.
  89. <Target Name="BeforeBuild">
  90. </Target>
  91. <Target Name="AfterBuild">
  92. </Target>
  93. -->
  94. <Target Name="AfterBuild">
  95. <Message Text="Packing..." Importance="normal" />
  96. <ItemGroup>
  97. <Dlls Include="$(SolutionDir)IllusionInjector\$(OutDir)**\*" />
  98. </ItemGroup>
  99. <Copy SourceFiles="@(Dlls)" DestinationFolder="$(OutputPath)IPA\Data\Managed" />
  100. </Target>
  101. <PropertyGroup>
  102. <PostBuildEvent>
  103. </PostBuildEvent>
  104. </PropertyGroup>
  105. </Project>