A fork of Eusth's IPA
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.

76 lines
3.0KB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project Sdk="Microsoft.NET.Sdk" 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. <Version>4.0.0</Version>
  6. <Authors>Exmods</Authors>
  7. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  8. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  9. <ProjectGuid>{14092533-98BB-40A4-9AFC-27BB75672A70}</ProjectGuid>
  10. <OutputType>Exe</OutputType>
  11. <AppDesignerFolder>Properties</AppDesignerFolder>
  12. <RootNamespace>IPA</RootNamespace>
  13. <AssemblyName>IPA</AssemblyName>
  14. <TargetFramework>net472</TargetFramework>
  15. <FileAlignment>512</FileAlignment>
  16. <TargetFrameworkProfile />
  17. </PropertyGroup>
  18. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  19. <PlatformTarget>AnyCPU</PlatformTarget>
  20. <DebugSymbols>true</DebugSymbols>
  21. <DebugType>full</DebugType>
  22. <Optimize>false</Optimize>
  23. <OutputPath>bin\Debug\</OutputPath>
  24. <DefineConstants>DEBUG;TRACE</DefineConstants>
  25. <ErrorReport>prompt</ErrorReport>
  26. <WarningLevel>4</WarningLevel>
  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. </PropertyGroup>
  37. <PropertyGroup>
  38. <ApplicationIcon>favicon.ico</ApplicationIcon>
  39. </PropertyGroup>
  40. <ItemGroup>
  41. <PackageReference Include="Mono.Cecil" Version="0.11.2" />
  42. </ItemGroup>
  43. <ItemGroup>
  44. <None Include="packages.config" />
  45. <None Remove="Properties\**" />
  46. </ItemGroup>
  47. <ItemGroup>
  48. <Content Include="favicon.ico" />
  49. </ItemGroup>
  50. <ItemGroup>
  51. <Folder Include="IPA\Fallback\" />
  52. </ItemGroup>
  53. <ItemGroup>
  54. <Compile Remove="Properties\**" />
  55. </ItemGroup>
  56. <ItemGroup>
  57. <EmbeddedResource Remove="Properties\**" />
  58. </ItemGroup>
  59. <!--<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />-->
  60. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  61. Other similar extension points exist, see Microsoft.Common.targets.
  62. <Target Name="BeforeBuild">
  63. </Target>
  64. <Target Name="AfterBuild">
  65. </Target>
  66. -->
  67. <Target Name="Custom1AfterBuild" AfterTargets="Build">
  68. <Message Text="Packing..." Importance="normal" />
  69. <ItemGroup>
  70. <Launcher Include="$(SolutionDir)Launcher\$(OutDir)Launcher.exe" />
  71. <Dlls Include="$(SolutionDir)IllusionInjector\$(OutDir)**\*" />
  72. </ItemGroup>
  73. <Copy SourceFiles="@(Dlls)" DestinationFolder="$(OutputPath)IPA\Data\Managed" />
  74. <Copy SourceFiles="@(Launcher)" DestinationFolder="$(OutputPath)IPA" />
  75. </Target>
  76. </Project>