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.

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