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.

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