BepInEx.Core.csproj 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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="ConsoleManager.cs" />
  51. <Compile Include="Contract\PluginInfo.cs" />
  52. <Compile Include="Configuration\ConfigDefinition.cs" />
  53. <Compile Include="Configuration\ConfigDescription.cs" />
  54. <Compile Include="Configuration\ConfigFile.cs" />
  55. <Compile Include="Configuration\ConfigWrapper.cs" />
  56. <Compile Include="Configuration\SettingChangedEventArgs.cs" />
  57. <Compile Include="Configuration\TomlTypeConverter.cs" />
  58. <Compile Include="Configuration\TypeConverter.cs" />
  59. <Compile Include="Contract\Attributes.cs" />
  60. <Compile Include="ConsoleUtil\ConsoleEncoding\ConsoleEncoding.Buffers.cs" />
  61. <Compile Include="ConsoleUtil\ConsoleEncoding\ConsoleEncoding.cs" />
  62. <Compile Include="ConsoleUtil\ConsoleEncoding\ConsoleEncoding.PInvoke.cs" />
  63. <Compile Include="ConsoleUtil\ConsoleWindow.cs" />
  64. <Compile Include="ConsoleUtil\Kon.cs" />
  65. <Compile Include="ConsoleUtil\SafeConsole.cs" />
  66. <Compile Include="Logging\DiskLogListener.cs" />
  67. <Compile Include="Logging\LogEventArgs.cs" />
  68. <Compile Include="Logging\Logger.cs" />
  69. <Compile Include="Logging\LogLevel.cs" />
  70. <Compile Include="Logging\ILogListener.cs" />
  71. <Compile Include="Logging\ILogSource.cs" />
  72. <Compile Include="Logging\ManualLogSource.cs" />
  73. <Compile Include="Logging\StdOutLogListener.cs" />
  74. <Compile Include="Logging\TraceLogSource.cs" />
  75. <Compile Include="Logging\ConsoleLogListener.cs" />
  76. <Compile Include="Paths.cs" />
  77. <Compile Include="Properties\AssemblyInfo.cs" />
  78. <Compile Include="Bootstrap\TypeLoader.cs" />
  79. <Compile Include="Utility.cs" />
  80. </ItemGroup>
  81. <ItemGroup>
  82. <PackageReference Include="Mono.Cecil">
  83. <Version>0.10.4</Version>
  84. </PackageReference>
  85. </ItemGroup>
  86. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  87. </Project>