Skip to content

Commit

Permalink
fix breaking changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Artemis-chan committed Feb 1, 2024
1 parent a6fc8e3 commit 02c805a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# osu!DIVA

A try to recreate Hatsune Miku: Project DIVA as a custom mode for osu!

## Installation

1. Get the dll from:
- [Releases](https://github.com/Artemis-chan/osu-DIVA/releases)
- If that does not work,
Expand All @@ -16,13 +18,17 @@ A try to recreate Hatsune Miku: Project DIVA as a custom mode for osu!
3. Restart osu!

## Build

### Dependencies
* [.NET Core SDK](https://dotnet.microsoft.com/download/dotnet-core)
* [git](https://git-scm.com/downloads) (optional, you can just download this repo manually)

- [.NET Core SDK](https://dotnet.microsoft.com/download/dotnet-core)
- [git](https://git-scm.com/downloads) (optional, you can just download this repo manually)

### Steps

1. Clone the repo
`git clone https://github.com/Artemis-chan/osu-DIVA.git`
2. Get inside **osu-DIVA/osu.Game.Rulesets.Diva** folder
`cd osu-DIVA/osu.Game.Rulesets.Diva`
3. Run `dotnet publish -c Release`
4. The compiled ***osu.Game.Rulesets.Diva.dll*** can be found in **bin/Release/net5.0/publish**
4. The compiled ***osu.Game.Rulesets.Diva.dll*** can be found in **bin/Release/net6.0/publish**
2 changes: 1 addition & 1 deletion osu.Game.Rulesets.Diva.Tests/VisualTestRunner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public static class VisualTestRunner
[STAThread]
public static int Main(string[] args)
{
using (DesktopGameHost host = Host.GetSuitableDesktopHost(@"osu", new HostOptions(){ BindIPC = true }))
using (DesktopGameHost host = Host.GetSuitableDesktopHost(@"osu"))
{
host.Run(new OsuTestBrowser());
return 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<ItemGroup Label="Package References">
<PackageReference Include="Appveyor.TestLogger" Version="2.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.4.0" />
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="NUnit" Version="3.14.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.15.1" />
<PackageReference Update="Microsoft.EntityFrameworkCore.Sqlite" Version="2.1.4" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion osu.Game.Rulesets.Diva/DivaRuleset.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

namespace osu.Game.Rulesets.Diva
{
public class DivaRuleset : Ruleset
public partial class DivaRuleset : Ruleset
{
public override string Description => "osu!DIVA";

Expand Down

0 comments on commit 02c805a

Please sign in to comment.