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.

172 lines
8.1 KiB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  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)' == '' ">Net4</Platform>
  7. <ProjectGuid>{5AD344F0-01A0-4CA8-92E5-9D095737744D}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>IPA</RootNamespace>
  11. <AssemblyName>IPA.Loader</AssemblyName>
  12. <FileAlignment>512</FileAlignment>
  13. <Deterministic>true</Deterministic>
  14. <PathMap>$(SolutionDir)=C:\</PathMap>
  15. <DebugType>portable</DebugType>
  16. <ShowTargetFrameworks>false</ShowTargetFrameworks>
  17. <ShowTargetFrameworks Condition=" '$(BuildingInsideVisualStudio)' != 'true' Or '$(CI)' == 'True' ">true</ShowTargetFrameworks>
  18. <TargetFrameworks Condition=" '$(ShowTargetFrameworks)' == 'true' ">net461;net35</TargetFrameworks>
  19. </PropertyGroup>
  20. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  21. <DebugSymbols>true</DebugSymbols>
  22. <Optimize>false</Optimize>
  23. <OutputPath>bin\$(Platform)\Debug\</OutputPath>
  24. <DefineConstants>DEBUG;TRACE</DefineConstants>
  25. <ErrorReport>prompt</ErrorReport>
  26. <WarningLevel>4</WarningLevel>
  27. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  28. <RegisterForComInterop>false</RegisterForComInterop>
  29. </PropertyGroup>
  30. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  31. <Optimize>true</Optimize>
  32. <OutputPath>bin\$(Platform)\Release\</OutputPath>
  33. <DefineConstants>TRACE</DefineConstants>
  34. <ErrorReport>prompt</ErrorReport>
  35. <WarningLevel>4</WarningLevel>
  36. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  37. <RegisterForComInterop>false</RegisterForComInterop>
  38. </PropertyGroup>
  39. <PropertyGroup Condition=" '$(Platform)' == 'Net4' ">
  40. <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
  41. <DefineConstants>$(DefineConstants);NET4</DefineConstants>
  42. </PropertyGroup>
  43. <PropertyGroup Condition=" '$(Platform)' == 'Net3' ">
  44. <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
  45. <DefineConstants>$(DefineConstants);NET3</DefineConstants>
  46. </PropertyGroup>
  47. <PropertyGroup>
  48. <DocumentationFile>$(OutputPath)IPA.Loader.xml</DocumentationFile>
  49. </PropertyGroup>
  50. <ItemGroup>
  51. <Reference Include="System" />
  52. <Reference Include="System.Core" />
  53. <Reference Include="System.Xml.Linq" />
  54. <Reference Include="System.Data.DataSetExtensions" />
  55. <Reference Include="Microsoft.CSharp" Condition=" '$(Platform)' == 'Net4' " />
  56. <Reference Include="System.Data" />
  57. <Reference Include="System.Net.Http" Condition=" '$(Platform)' == 'Net4' " />
  58. <Reference Include="System.Xml" />
  59. </ItemGroup>
  60. <ItemGroup Condition=" '$(Platform)' == 'Net4' ">
  61. <Reference Include="UnityEngine.CoreModule">
  62. <HintPath>..\Refs\UnityEngine.CoreModule.Net4.dll</HintPath>
  63. <Private>False</Private>
  64. </Reference>
  65. <Reference Include="UnityEngine.UnityWebRequestModule">
  66. <HintPath>..\Refs\UnityEngine.UnityWebRequestModule.Net4.dll</HintPath>
  67. <Private>False</Private>
  68. </Reference>
  69. </ItemGroup>
  70. <ItemGroup Condition=" '$(Platform)' == 'Net3' ">
  71. <Reference Include="UnityEngine.CoreModule">
  72. <HintPath>..\Refs\UnityEngine.CoreModule.Net3.dll</HintPath>
  73. <Private>False</Private>
  74. </Reference>
  75. <Reference Include="UnityEngine.UnityWebRequestModule">
  76. <HintPath>..\Refs\UnityEngine.UnityWebRequestModule.Net3.dll</HintPath>
  77. <Private>False</Private>
  78. </Reference>
  79. </ItemGroup>
  80. <ItemGroup>
  81. <ProjectReference Include="..\Net3-Proxy\Net3-Proxy.csproj" Condition=" '$(Platform)' == 'Net3' ">
  82. <Project>{642F52DA-90F9-40E3-8784-6964F36752FB}</Project>
  83. <Name>Net3-Proxy</Name>
  84. </ProjectReference>
  85. </ItemGroup>
  86. <ItemGroup>
  87. <Compile Include="Config\Config.cs" />
  88. <Compile Include="Config\ConfigProviders\JsonConfigProvider.cs" />
  89. <Compile Include="Config\IConfigProvider.cs" />
  90. <Compile Include="Config\SelfConfig.cs" />
  91. <Compile Include="JsonConverters\AlmostVersionConverter.cs" />
  92. <Compile Include="JsonConverters\MultilineStringConverter.cs" />
  93. <Compile Include="Loader\Composite\CompositeBSPlugin.cs" />
  94. <Compile Include="Loader\DisabledConfig.cs" />
  95. <Compile Include="Loader\Features\AddInFeature.cs" />
  96. <Compile Include="Loader\Features\ConfigProviderFeature.cs" />
  97. <Compile Include="Loader\Features\DefineFeature.cs" />
  98. <Compile Include="Loader\Features\InitInjectorFeature.cs" />
  99. <Compile Include="Loader\Features\NoUpdateFeature.cs" />
  100. <Compile Include="Loader\Features\PrintFeature.cs" />
  101. <Compile Include="Loader\HarmonyProtector.cs" />
  102. <Compile Include="Loader\PluginInitInjector.cs" />
  103. <Compile Include="Loader\LibLoader.cs" />
  104. <Compile Include="Loader\Features\Feature.cs" />
  105. <Compile Include="Loader\PluginLoader.cs" />
  106. <Compile Include="Loader\PluginManifest.cs" />
  107. <Compile Include="Logging\ConsoleWindow.cs" />
  108. <Compile Include="Logging\Printers\ColorlessConsolePrinter.cs" />
  109. <Compile Include="Logging\Printers\PluginSubLogPrinter.cs" />
  110. <Compile Include="Logging\StdoutInterceptor.cs" />
  111. <Compile Include="PluginInterfaces\BeatSaber\IBeatSaberPlugin.cs" />
  112. <Compile Include="PluginInterfaces\BeatSaber\IDisablablePlugin.cs" />
  113. <Compile Include="PluginInterfaces\BeatSaber\IEnhancedBeatSaberPlugin.cs" />
  114. <Compile Include="PluginInterfaces\IGenericEnhancedPlugin.cs" />
  115. <Compile Include="Config\IniFile.cs" />
  116. <Compile Include="PluginInterfaces\IPA\IEnhancedPlugin.cs" />
  117. <Compile Include="PluginInterfaces\IPA\IPlugin.cs" />
  118. <Compile Include="Logging\Logger.cs" />
  119. <Compile Include="Logging\LogPrinter.cs" />
  120. <Compile Include="Config\ModPrefs.cs" />
  121. <Compile Include="JsonConverters\SemverRangeConverter.cs" />
  122. <Compile Include="JsonConverters\SemverVersionConverter.cs" />
  123. <Compile Include="Utilities\BeatSaber.cs" />
  124. <Compile Include="Utilities\AlmostVersion.cs" />
  125. <Compile Include="Utilities\CriticalSection.cs" />
  126. <Compile Include="Utilities\Ref.cs" />
  127. <Compile Include="Utilities\ReflectionUtil.cs" />
  128. <Compile Include="Loader\Composite\CompositeIPAPlugin.cs" />
  129. <Compile Include="Logging\Printers\ColoredConsolePrinter.cs" />
  130. <Compile Include="Logging\Printers\GlobalLogFilePrinter.cs" />
  131. <Compile Include="Logging\Printers\GZFilePrinter.cs" />
  132. <Compile Include="Logging\Printers\PluginLogFilePrinter.cs" />
  133. <Compile Include="Logging\StandardLogger.cs" />
  134. <Compile Include="Logging\UnityLogProvider.cs" />
  135. <Compile Include="Loader\PluginComponent.cs" />
  136. <Compile Include="Loader\PluginManager.cs" />
  137. <Compile Include="Properties\AssemblyInfo.cs" />
  138. <Compile Include="Updating\BeatMods\ApiEndpoint.cs" />
  139. <Compile Include="Updating\BeatMods\Updater.cs" />
  140. <Compile Include="Utilities\Extensions.cs" />
  141. <Compile Include="Utilities\Utils.cs" />
  142. <Compile Include="Utilities\Win32.cs" />
  143. </ItemGroup>
  144. <ItemGroup>
  145. <PackageReference Include="Ionic.Zip">
  146. <Version>1.9.1.8</Version>
  147. </PackageReference>
  148. <PackageReference Include="Lib.Harmony">
  149. <Version>1.2.0.1</Version>
  150. </PackageReference>
  151. <PackageReference Include="Mono.Cecil">
  152. <Version>0.10.4</Version>
  153. </PackageReference>
  154. <PackageReference Include="Newtonsoft.Json">
  155. <Version>12.0.2</Version>
  156. </PackageReference>
  157. <PackageReference Include="SemanticVersioning">
  158. <Version>1.2.0</Version>
  159. </PackageReference>
  160. <PackageReference Include="AsyncBridge">
  161. <Version>0.3.1</Version>
  162. </PackageReference>
  163. </ItemGroup>
  164. <ItemGroup>
  165. <EmbeddedResource Include="Loader\manifest.json" />
  166. <EmbeddedResource Include="icon_white.png" />
  167. <EmbeddedResource Include="Loader\description.md" />
  168. </ItemGroup>
  169. <ItemGroup>
  170. <None Include="icon_black.png" />
  171. </ItemGroup>
  172. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  173. </Project>