Skip to content

Commit

Permalink
Target .netstandard
Browse files Browse the repository at this point in the history
  • Loading branch information
LumpBloom7 committed Feb 26, 2021
1 parent 3b19f9a commit 1a2760a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion osu.Game.Rulesets.Tau/Mods/TauModCinema.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System.Collections.Generic;
using osu.Game.Beatmaps;
using osu.Game.Rulesets.Mods;
using osu.Game.Rulesets.Tau.Objects;
Expand All @@ -9,7 +10,7 @@ namespace osu.Game.Rulesets.Tau.Mods
{
public class TauModCinema : ModCinema<TauHitObject>
{
public override Score CreateReplayScore(IBeatmap beatmap) => new Score
public override Score CreateReplayScore(IBeatmap beatmap, IReadOnlyList<Mod> mods) => new Score
{
ScoreInfo = new ScoreInfo { User = new User { Username = "tau" } },
Replay = new TauAutoGenerator(beatmap).Generate()
Expand Down
2 changes: 1 addition & 1 deletion osu.Game.Rulesets.Tau/osu.Game.Rulesets.Tau.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup Label="Project">
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>netstandard2.1</TargetFramework>
<AssemblyTitle>osu.Game.Rulesets.Tau</AssemblyTitle>
<OutputType>Library</OutputType>
<PlatformTarget>AnyCPU</PlatformTarget>
Expand Down

0 comments on commit 1a2760a

Please sign in to comment.