BsYurHttpStatus.csproj 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net472</TargetFramework>
  4. </PropertyGroup>
  5. <ItemGroup>
  6. <Reference Include="IllusionPlugin">
  7. <HintPath>$(BeatSaberDir)\Beat Saber_Data\Managed\IllusionPlugin.dll</HintPath>
  8. </Reference>
  9. <Reference Include="websocket-sharp">
  10. <HintPath>$(BeatSaberDir)\Beat Saber_Data\Managed\websocket-sharp.dll</HintPath>
  11. </Reference>
  12. <Reference Include="0Harmony">
  13. <HintPath>$(BeatSaberDir)\Libs\0Harmony.dll</HintPath>
  14. </Reference>
  15. <Reference Include="Newtonsoft.Json">
  16. <HintPath>$(BeatSaberDir)\Libs\Newtonsoft.Json.dll</HintPath>
  17. </Reference>
  18. <Reference Include="YUR.fit-BeatSaber-Mod">
  19. <HintPath>$(BeatSaberDir)\Plugins\YUR.fit-BeatSaber-Mod.dll</HintPath>
  20. </Reference>
  21. </ItemGroup>
  22. <Target Name="PostBuild" AfterTargets="PostBuildEvent">
  23. <Copy SourceFiles="$(TargetDir)$(TargetName).dll" DestinationFolder="$(BeatSaberDir)\Plugins" />
  24. </Target>
  25. <Import Project="..\BsWidgetShareCodes\BsWidgetShareCodes.projitems" Label="Shared" />
  26. </Project>