Skip to content

Commit

Permalink
Merge pull request #662 from andy840119/update-nuget
Browse files Browse the repository at this point in the history
update nuget and fix compile error.
  • Loading branch information
andy840119 authored Jun 3, 2021
2 parents 686e9c6 + 662135c commit ef03651
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public abstract class KaraokeHitObjectTestScene : KaraokeSkinnableColumnTestScen
[BackgroundDependencyLoader]
private void load()
{
SetContents(() => new FillFlowContainer
SetContents(_ => new FillFlowContainer
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class TestSceneColumnBackground : KaraokeSkinnableColumnTestScene
[BackgroundDependencyLoader]
private void load()
{
SetContents(() => new FillFlowContainer
SetContents(_ => new FillFlowContainer
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public TestSceneDrawableJudgement()
{
foreach (var result in EnumUtils.GetValues<HitResult>().Skip(1))
{
AddStep("Show " + result.GetDescription(), () => SetContents(() =>
AddStep("Show " + result.GetDescription(), () => SetContents(_ =>
new DrawableNoteJudgement(new JudgementResult(new HitObject(), new Judgement()) { Type = result }, null)
{
Anchor = Anchor.Centre,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public TestSceneHitExplosion()
[BackgroundDependencyLoader]
private void load()
{
SetContents(() => new NotePlayfieldTestContainer(0)
SetContents(_ => new NotePlayfieldTestContainer(0)
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Expand Down
2 changes: 1 addition & 1 deletion osu.Game.Rulesets.Karaoke.Tests/Skinning/TestSceneLyric.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class TestSceneLyric : KaraokeSkinnableTestScene
{
public TestSceneLyric()
{
AddStep("Default Lyric", () => SetContents(() => testSingle()));
AddStep("Default Lyric", () => SetContents(_ => testSingle()));
}

private Drawable testSingle(bool auto = false, double timeOffset = 0)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class TestSceneNotePlayfield : KaraokeSkinnableColumnTestScene
[BackgroundDependencyLoader]
private void load(RulesetConfigCache configCache)
{
SetContents(() => new KaraokeInputManager(new KaraokeRuleset().RulesetInfo)
SetContents(_ => new KaraokeInputManager(new KaraokeRuleset().RulesetInfo)
{
Child = new NotePlayfield(COLUMN_NUMBER)
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</PropertyGroup>
<ItemGroup Label="Package References">
<PackageReference Include="Appveyor.TestLogger" Version="2.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.10.0" />
<PackageReference Include="NUnit" Version="3.13.2" />
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0" />
<PackageReference Update="Microsoft.EntityFrameworkCore.Sqlite" Version="2.1.4" />
Expand Down
2 changes: 1 addition & 1 deletion osu.Game.Rulesets.Karaoke/osu.Game.Rulesets.Karaoke.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<PackageReference Include="Octokit" Version="0.50.0" />
<PackageReference Include="osu.Framework.KaraokeFont" Version="1.8.3" />
<PackageReference Include="osu.Framework.Microphone" Version="1.2.0" />
<PackageReference Include="ppy.osu.Game" Version="2021.524.0" />
<PackageReference Include="ppy.osu.Game" Version="2021.602.0" />
<PackageReference Include="LyricMaker" Version="1.1.1" />
<PackageReference Include="NicoKaraParser" Version="1.1.0" />
<!--install because it might cause "Could not load file or assembly" error, might be removed eventually-->
Expand Down

0 comments on commit ef03651

Please sign in to comment.