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.

122 lines
4.9 KiB

  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>{23AB2621-A05C-4377-8418-85E6012C0BBE}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>BSIPA_ModList</RootNamespace>
  11. <AssemblyName>BSIPA-ModList</AssemblyName>
  12. <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <Deterministic>true</Deterministic>
  15. <PathMap>$(SolutionDir)=C:\</PathMap>
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>portable</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>bin\Debug\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  27. <DebugType>portable</DebugType>
  28. <Optimize>true</Optimize>
  29. <OutputPath>bin\Release\</OutputPath>
  30. <DefineConstants>TRACE</DefineConstants>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. </PropertyGroup>
  34. <ItemGroup>
  35. <Reference Include="Assembly-CSharp">
  36. <HintPath>..\Refs\Assembly-CSharp.dll</HintPath>
  37. <Private>False</Private>
  38. </Reference>
  39. <Reference Include="BeatSaberCustomUI">
  40. <HintPath>..\Refs\BeatSaberCustomUI.dll</HintPath>
  41. <Private>False</Private>
  42. </Reference>
  43. <Reference Include="System" />
  44. <Reference Include="System.Core" />
  45. <Reference Include="System.Xml.Linq" />
  46. <Reference Include="System.Data.DataSetExtensions" />
  47. <Reference Include="Microsoft.CSharp" />
  48. <Reference Include="System.Data" />
  49. <Reference Include="System.Net.Http" />
  50. <Reference Include="System.Xml" />
  51. <Reference Include="Unity.TextMeshPro">
  52. <HintPath>..\Refs\Unity.TextMeshPro.dll</HintPath>
  53. </Reference>
  54. <Reference Include="UnityEngine">
  55. <HintPath>..\Refs\UnityEngine.dll</HintPath>
  56. </Reference>
  57. <Reference Include="UnityEngine.CoreModule">
  58. <HintPath>..\Refs\UnityEngine.CoreModule.dll</HintPath>
  59. <Private>False</Private>
  60. </Reference>
  61. <Reference Include="UnityEngine.UI">
  62. <HintPath>..\Refs\UnityEngine.UI.dll</HintPath>
  63. <Private>False</Private>
  64. </Reference>
  65. <Reference Include="UnityEngine.UIModule">
  66. <HintPath>..\Refs\UnityEngine.UIModule.dll</HintPath>
  67. <Private>False</Private>
  68. </Reference>
  69. </ItemGroup>
  70. <ItemGroup>
  71. <Compile Include="DownloadController.cs" />
  72. <Compile Include="Plugin.cs" />
  73. <Compile Include="Properties\AssemblyInfo.cs" />
  74. <Compile Include="UI\ButtonUI.cs" />
  75. <Compile Include="UI\DownloadProgressCell.cs" />
  76. <Compile Include="UI\ModListFlowCoordinator.cs" />
  77. <Compile Include="UI\SettingsViewController.cs" />
  78. <Compile Include="UI\ViewControllers\BackButtonNavigationController.cs" />
  79. <Compile Include="UI\ViewControllers\DownloadProgressViewController.cs" />
  80. <Compile Include="UI\FloatingNotification.cs" />
  81. <Compile Include="UI\ViewControllers\ModCells.cs" />
  82. <Compile Include="UI\ViewControllers\ModInfoViewController.cs" />
  83. <Compile Include="UI\ViewControllers\ModListController.cs" />
  84. <Compile Include="Utilities.cs" />
  85. </ItemGroup>
  86. <ItemGroup>
  87. <ProjectReference Include="..\IPA.Loader\IPA.Loader.csproj">
  88. <Project>{5ad344f0-01a0-4ca8-92e5-9d095737744d}</Project>
  89. <Name>IPA.Loader</Name>
  90. <Private>False</Private>
  91. </ProjectReference>
  92. </ItemGroup>
  93. <ItemGroup>
  94. <EmbeddedResource Include="manifest.json" />
  95. </ItemGroup>
  96. <ItemGroup>
  97. <PackageReference Include="SemanticVersioning">
  98. <Version>1.2.0</Version>
  99. </PackageReference>
  100. </ItemGroup>
  101. <ItemGroup>
  102. <EmbeddedResource Include="Icons\mod_bsipa.png" />
  103. <EmbeddedResource Include="Icons\mod_ipa.png" />
  104. </ItemGroup>
  105. <ItemGroup>
  106. <EmbeddedResource Include="Icons\self.png" />
  107. </ItemGroup>
  108. <ItemGroup>
  109. <EmbeddedResource Include="Icons\library.png" />
  110. </ItemGroup>
  111. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  112. <Target Name="AfterBuild">
  113. <Message Text="Packing..." Importance="normal" />
  114. <ItemGroup>
  115. <BadFiles Include="$(OutputPath)**/*" Exclude="$(OutputPath)**/$(AssemblyName).*" />
  116. </ItemGroup>
  117. <Delete Files="@(BadFiles)" />
  118. <ItemGroup>
  119. <UnBadFiles Include="$(OutputPath)*" />
  120. </ItemGroup>
  121. <Move SourceFiles="@(UnBadFiles)" DestinationFolder="$(OutputPath)Plugins/" />
  122. </Target>
  123. </Project>