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.

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