RevokeMsgPatcher.csproj 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" 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>{977BF781-CED8-4389-9404-0FA08FDF21DF}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <RootNamespace>RevokeMsgPatcher</RootNamespace>
  10. <AssemblyName>RevokeMsgPatcher</AssemblyName>
  11. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <Deterministic>true</Deterministic>
  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. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <PlatformTarget>AnyCPU</PlatformTarget>
  27. <DebugType>pdbonly</DebugType>
  28. <Optimize>true</Optimize>
  29. <OutputPath>bin\Release\</OutputPath>
  30. <DefineConstants>TRACE</DefineConstants>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. </PropertyGroup>
  34. <PropertyGroup>
  35. <ApplicationIcon>icon.ico</ApplicationIcon>
  36. </PropertyGroup>
  37. <ItemGroup>
  38. <Reference Include="System" />
  39. <Reference Include="System.Core" />
  40. <Reference Include="System.Management" />
  41. <Reference Include="System.Web.Extensions" />
  42. <Reference Include="System.Xml.Linq" />
  43. <Reference Include="System.Data.DataSetExtensions" />
  44. <Reference Include="Microsoft.CSharp" />
  45. <Reference Include="System.Data" />
  46. <Reference Include="System.Deployment" />
  47. <Reference Include="System.Drawing" />
  48. <Reference Include="System.Net.Http" />
  49. <Reference Include="System.Windows.Forms" />
  50. <Reference Include="System.Xml" />
  51. </ItemGroup>
  52. <ItemGroup>
  53. <Compile Include="BusinessException.cs" />
  54. <Compile Include="FormMain.cs">
  55. <SubType>Form</SubType>
  56. </Compile>
  57. <Compile Include="FormMain.Designer.cs">
  58. <DependentUpon>FormMain.cs</DependentUpon>
  59. </Compile>
  60. <Compile Include="Model\App.cs" />
  61. <Compile Include="Model\Bag.cs" />
  62. <Compile Include="Model\Change.cs" />
  63. <Compile Include="Model\ModifyInfo.cs" />
  64. <Compile Include="Model\TargetInfo.cs" />
  65. <Compile Include="Modifier\AppModifier.cs" />
  66. <Compile Include="Modifier\FileHexEditor.cs" />
  67. <Compile Include="Modifier\QQLiteModifier.cs" />
  68. <Compile Include="Modifier\QQModifier.cs" />
  69. <Compile Include="Modifier\TIMModifier.cs" />
  70. <Compile Include="Modifier\WechatModifier.cs" />
  71. <Compile Include="Utils\Device.cs" />
  72. <Compile Include="Utils\FileUtil.cs" />
  73. <Compile Include="Utils\GAHelper.cs" />
  74. <Compile Include="Utils\HttpUtil.cs" />
  75. <Compile Include="Utils\PathUtil.cs" />
  76. <Compile Include="Program.cs" />
  77. <Compile Include="Properties\AssemblyInfo.cs" />
  78. <EmbeddedResource Include="FormMain.resx">
  79. <DependentUpon>FormMain.cs</DependentUpon>
  80. </EmbeddedResource>
  81. <EmbeddedResource Include="Properties\Resources.resx">
  82. <Generator>ResXFileCodeGenerator</Generator>
  83. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  84. <SubType>Designer</SubType>
  85. </EmbeddedResource>
  86. <Compile Include="Properties\Resources.Designer.cs">
  87. <AutoGen>True</AutoGen>
  88. <DependentUpon>Resources.resx</DependentUpon>
  89. <DesignTime>True</DesignTime>
  90. </Compile>
  91. <None Include="Properties\Settings.settings">
  92. <Generator>SettingsSingleFileGenerator</Generator>
  93. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  94. </None>
  95. <Compile Include="Properties\Settings.Designer.cs">
  96. <AutoGen>True</AutoGen>
  97. <DependentUpon>Settings.settings</DependentUpon>
  98. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  99. </Compile>
  100. </ItemGroup>
  101. <ItemGroup>
  102. <None Include="App.config" />
  103. </ItemGroup>
  104. <ItemGroup>
  105. <Content Include="icon.ico" />
  106. </ItemGroup>
  107. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  108. </Project>