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.

137 lines
6.4 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
  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>{5AD344F0-01A0-4CA8-92E5-9D095737744D}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>IPA</RootNamespace>
  11. <AssemblyName>IPA.Loader</AssemblyName>
  12. <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <Deterministic>true</Deterministic>
  15. <PathMap>$(SolutionDir)=C:\</PathMap>
  16. <DebugType>portable</DebugType>
  17. </PropertyGroup>
  18. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  19. <DebugSymbols>true</DebugSymbols>
  20. <Optimize>false</Optimize>
  21. <OutputPath>bin\Debug\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  26. <DocumentationFile>bin\Debug\IPA.Loader.xml</DocumentationFile>
  27. <RegisterForComInterop>false</RegisterForComInterop>
  28. </PropertyGroup>
  29. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  30. <Optimize>true</Optimize>
  31. <OutputPath>bin\Release\</OutputPath>
  32. <DefineConstants>TRACE</DefineConstants>
  33. <ErrorReport>prompt</ErrorReport>
  34. <WarningLevel>4</WarningLevel>
  35. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  36. <RegisterForComInterop>false</RegisterForComInterop>
  37. <DocumentationFile>bin\Release\IPA.Loader.xml</DocumentationFile>
  38. </PropertyGroup>
  39. <ItemGroup>
  40. <Reference Include="0Harmony">
  41. <HintPath>..\Libs\0Harmony.dll</HintPath>
  42. </Reference>
  43. <Reference Include="System" />
  44. <Reference Include="System.Core" />
  45. <Reference Include="System.Xml.Linq" />
  46. <Reference Include="System.Data.DataSetExtensions" />
  47. <Reference Include="Microsoft.CSharp" />
  48. <Reference Include="System.Data" />
  49. <Reference Include="System.Net.Http" />
  50. <Reference Include="System.Xml" />
  51. <Reference Include="UnityEngine.CoreModule">
  52. <HintPath>..\Refs\UnityEngine.CoreModule.dll</HintPath>
  53. <Private>False</Private>
  54. </Reference>
  55. <Reference Include="UnityEngine.UnityWebRequestModule">
  56. <HintPath>..\Refs\UnityEngine.UnityWebRequestModule.dll</HintPath>
  57. <Private>False</Private>
  58. </Reference>
  59. </ItemGroup>
  60. <ItemGroup>
  61. <Compile Include="Config\Config.cs" />
  62. <Compile Include="Config\ConfigProviders\JsonConfigProvider.cs" />
  63. <Compile Include="Config\IConfigProvider.cs" />
  64. <Compile Include="Config\SelfConfig.cs" />
  65. <Compile Include="JsonConverters\MultilineStringConverter.cs" />
  66. <Compile Include="Loader\Composite\CompositeBSPlugin.cs" />
  67. <Compile Include="Loader\DisabledConfig.cs" />
  68. <Compile Include="Loader\Features\AddInFeature.cs" />
  69. <Compile Include="Loader\Features\ConfigProviderFeature.cs" />
  70. <Compile Include="Loader\Features\DefineFeature.cs" />
  71. <Compile Include="Loader\Features\InitInjectorFeature.cs" />
  72. <Compile Include="Loader\Features\NoUpdateFeature.cs" />
  73. <Compile Include="Loader\Features\PrintFeature.cs" />
  74. <Compile Include="Loader\PluginInitInjector.cs" />
  75. <Compile Include="Loader\LibLoader.cs" />
  76. <Compile Include="Loader\Features\Feature.cs" />
  77. <Compile Include="Loader\PluginLoader.cs" />
  78. <Compile Include="Loader\PluginManifest.cs" />
  79. <Compile Include="Logging\ConsoleWindow.cs" />
  80. <Compile Include="Logging\Printers\ColorlessConsolePrinter.cs" />
  81. <Compile Include="Logging\Printers\PluginSubLogPrinter.cs" />
  82. <Compile Include="Logging\StdoutInterceptor.cs" />
  83. <Compile Include="PluginInterfaces\BeatSaber\IBeatSaberPlugin.cs" />
  84. <Compile Include="PluginInterfaces\BeatSaber\IDisablablePlugin.cs" />
  85. <Compile Include="PluginInterfaces\BeatSaber\IEnhancedBeatSaberPlugin.cs" />
  86. <Compile Include="PluginInterfaces\IGenericEnhancedPlugin.cs" />
  87. <Compile Include="Config\IniFile.cs" />
  88. <Compile Include="PluginInterfaces\IPA\IEnhancedPlugin.cs" />
  89. <Compile Include="PluginInterfaces\IPA\IPlugin.cs" />
  90. <Compile Include="Logging\Logger.cs" />
  91. <Compile Include="Logging\LogPrinter.cs" />
  92. <Compile Include="Config\ModPrefs.cs" />
  93. <Compile Include="JsonConverters\SemverRangeConverter.cs" />
  94. <Compile Include="JsonConverters\SemverVersionConverter.cs" />
  95. <Compile Include="Utilities\BeatSaber.cs" />
  96. <Compile Include="Utilities\Ref.cs" />
  97. <Compile Include="Utilities\ReflectionUtil.cs" />
  98. <Compile Include="Loader\Composite\CompositeIPAPlugin.cs" />
  99. <Compile Include="Logging\Printers\ColoredConsolePrinter.cs" />
  100. <Compile Include="Logging\Printers\GlobalLogFilePrinter.cs" />
  101. <Compile Include="Logging\Printers\GZFilePrinter.cs" />
  102. <Compile Include="Logging\Printers\PluginLogFilePrinter.cs" />
  103. <Compile Include="Logging\StandardLogger.cs" />
  104. <Compile Include="Logging\UnityLogProvider.cs" />
  105. <Compile Include="Loader\PluginComponent.cs" />
  106. <Compile Include="Loader\PluginManager.cs" />
  107. <Compile Include="Properties\AssemblyInfo.cs" />
  108. <Compile Include="Updating\BeatMods\ApiEndpoint.cs" />
  109. <Compile Include="Updating\BeatMods\Updater.cs" />
  110. <Compile Include="Updating\SelfPlugin.cs" />
  111. <Compile Include="Utilities\Extensions.cs" />
  112. <Compile Include="Utilities\Utils.cs" />
  113. </ItemGroup>
  114. <ItemGroup>
  115. <PackageReference Include="Ionic.Zip">
  116. <Version>1.9.1.8</Version>
  117. </PackageReference>
  118. <PackageReference Include="Mono.Cecil">
  119. <Version>0.10.4</Version>
  120. </PackageReference>
  121. <PackageReference Include="Newtonsoft.Json">
  122. <Version>12.0.2</Version>
  123. </PackageReference>
  124. <PackageReference Include="SemanticVersioning">
  125. <Version>1.2.0</Version>
  126. </PackageReference>
  127. </ItemGroup>
  128. <ItemGroup>
  129. <EmbeddedResource Include="Loader\manifest.json" />
  130. </ItemGroup>
  131. <ItemGroup>
  132. <EmbeddedResource Include="icon.png" />
  133. </ItemGroup>
  134. <ItemGroup>
  135. <EmbeddedResource Include="Loader\description.md" />
  136. </ItemGroup>
  137. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  138. </Project>