BepInEx.Core.csproj 4.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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>{4FFBA620-F5ED-47F9-B90C-DAD1316FD9B9}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <RootNamespace>BepInEx.Core</RootNamespace>
  10. <AssemblyName>BepInEx.Core</AssemblyName>
  11. <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  14. <TargetFrameworkProfile />
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  17. <PlatformTarget>AnyCPU</PlatformTarget>
  18. <DebugType>none</DebugType>
  19. <Optimize>true</Optimize>
  20. <OutputPath>..\bin\</OutputPath>
  21. <DefineConstants>TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. <DocumentationFile>..\bin\BepInEx.Core.xml</DocumentationFile>
  25. </PropertyGroup>
  26. <PropertyGroup>
  27. <StartupObject />
  28. </PropertyGroup>
  29. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
  30. <OutputPath>bin\Debug\</OutputPath>
  31. <DefineConstants>TRACE;DEBUG</DefineConstants>
  32. <DocumentationFile>
  33. </DocumentationFile>
  34. <Optimize>false</Optimize>
  35. <PlatformTarget>x86</PlatformTarget>
  36. <ErrorReport>prompt</ErrorReport>
  37. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  38. <DebugType>full</DebugType>
  39. <DebugSymbols>true</DebugSymbols>
  40. </PropertyGroup>
  41. <ItemGroup>
  42. <Reference Include="System" />
  43. </ItemGroup>
  44. <ItemGroup>
  45. <Compile Include="Bootstrap\BaseChainloader.cs" />
  46. <Compile Include="Configuration\AcceptableValueBase.cs" />
  47. <Compile Include="Configuration\AcceptableValueList.cs" />
  48. <Compile Include="Configuration\AcceptableValueRange.cs" />
  49. <Compile Include="Configuration\ConfigEntryBase.cs" />
  50. <Compile Include="Console\ConsoleManager.cs" />
  51. <Compile Include="Console\IConsoleDriver.cs" />
  52. <Compile Include="Console\SafeConsole.cs" />
  53. <Compile Include="Console\Unix\ConsoleWriter.cs" />
  54. <Compile Include="Console\Unix\LinuxConsoleDriver.cs" />
  55. <Compile Include="Console\Unix\TtyHandler.cs" />
  56. <Compile Include="Console\Unix\UnixStream.cs" />
  57. <Compile Include="Console\Unix\UnixStreamHelper.cs" />
  58. <Compile Include="Console\Windows\ConsoleEncoding\ConsoleEncoding.Buffers.cs" />
  59. <Compile Include="Console\Windows\ConsoleEncoding\ConsoleEncoding.cs" />
  60. <Compile Include="Console\Windows\ConsoleEncoding\ConsoleEncoding.PInvoke.cs" />
  61. <Compile Include="Console\Windows\ConsoleWindow.cs" />
  62. <Compile Include="Console\Windows\Kon.cs" />
  63. <Compile Include="Console\Windows\WindowsConsoleDriver.cs" />
  64. <Compile Include="Contract\PluginInfo.cs" />
  65. <Compile Include="Configuration\ConfigDefinition.cs" />
  66. <Compile Include="Configuration\ConfigDescription.cs" />
  67. <Compile Include="Configuration\ConfigFile.cs" />
  68. <Compile Include="Configuration\ConfigWrapper.cs" />
  69. <Compile Include="Configuration\SettingChangedEventArgs.cs" />
  70. <Compile Include="Configuration\TomlTypeConverter.cs" />
  71. <Compile Include="Configuration\TypeConverter.cs" />
  72. <Compile Include="Contract\Attributes.cs" />
  73. <Compile Include="Logging\DiskLogListener.cs" />
  74. <Compile Include="Logging\LogEventArgs.cs" />
  75. <Compile Include="Logging\Logger.cs" />
  76. <Compile Include="Logging\LogLevel.cs" />
  77. <Compile Include="Logging\ILogListener.cs" />
  78. <Compile Include="Logging\ILogSource.cs" />
  79. <Compile Include="Logging\ManualLogSource.cs" />
  80. <Compile Include="Logging\StdOutLogListener.cs" />
  81. <Compile Include="Logging\TraceLogSource.cs" />
  82. <Compile Include="Logging\ConsoleLogListener.cs" />
  83. <Compile Include="Paths.cs" />
  84. <Compile Include="Properties\AssemblyInfo.cs" />
  85. <Compile Include="Bootstrap\TypeLoader.cs" />
  86. <Compile Include="Utility.cs" />
  87. </ItemGroup>
  88. <ItemGroup>
  89. <PackageReference Include="Mono.Cecil">
  90. <Version>0.10.4</Version>
  91. </PackageReference>
  92. <PackageReference Include="MonoMod.Utils">
  93. <Version>20.8.3.5</Version>
  94. </PackageReference>
  95. </ItemGroup>
  96. <ItemGroup />
  97. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  98. </Project>