-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
150 additions
and
136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,16 @@ | ||
*.cs text working-tree-encoding=UTF-8 eol=LF | ||
# Autodetect text files and ensure that we normalise their | ||
# line endings to lf internally. When checked out they may | ||
# use different line endings. | ||
* text=auto | ||
|
||
# Check out with crlf (Windows) line endings | ||
*.sln text eol=crlf | ||
*.csproj text eol=crlf | ||
*.cs text diff=csharp eol=crlf | ||
|
||
# Check out with lf (UNIX) line endings | ||
.gitignore text eol=lf | ||
.gitattributes text eol=lf | ||
*.sh text eol=lf | ||
*.md text eol=lf | ||
*.yml text eol=lf |
50 changes: 25 additions & 25 deletions
50
osu.Game.Rulesets.Rush.Tests/osu.Game.Rulesets.Rush.Tests.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<StartupObject>osu.Game.Rulesets.Rush.Tests.VisualTestRunner</StartupObject> | ||
</PropertyGroup> | ||
<ItemGroup Label="Service"> | ||
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<GenerateProgramFile>false</GenerateProgramFile> | ||
</PropertyGroup> | ||
<ItemGroup Label="Package References"> | ||
<PackageReference Include="Appveyor.TestLogger" Version="2.0.0" /> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.0" /> | ||
<PackageReference Include="NUnit" Version="3.12.0" /> | ||
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0" /> | ||
<PackageReference Update="Microsoft.EntityFrameworkCore.Sqlite" Version="3.1.7" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\osu.Game.Rulesets.Rush\osu.Game.Rulesets.Rush.csproj" /> | ||
</ItemGroup> | ||
<PropertyGroup Label="Project"> | ||
<OutputType>WinExe</OutputType> | ||
<TargetFramework>netcoreapp3.1</TargetFramework> | ||
<RootNamespace>osu.Game.Rulesets.Rush.Tests</RootNamespace> | ||
</PropertyGroup> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<StartupObject>osu.Game.Rulesets.Rush.Tests.VisualTestRunner</StartupObject> | ||
</PropertyGroup> | ||
<ItemGroup Label="Service"> | ||
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<GenerateProgramFile>false</GenerateProgramFile> | ||
</PropertyGroup> | ||
<ItemGroup Label="Package References"> | ||
<PackageReference Include="Appveyor.TestLogger" Version="2.0.0" /> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.0" /> | ||
<PackageReference Include="NUnit" Version="3.12.0" /> | ||
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0" /> | ||
<PackageReference Update="Microsoft.EntityFrameworkCore.Sqlite" Version="3.1.7" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\osu.Game.Rulesets.Rush\osu.Game.Rulesets.Rush.csproj" /> | ||
</ItemGroup> | ||
<PropertyGroup Label="Project"> | ||
<OutputType>WinExe</OutputType> | ||
<TargetFramework>netcoreapp3.1</TargetFramework> | ||
<RootNamespace>osu.Game.Rulesets.Rush.Tests</RootNamespace> | ||
</PropertyGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,96 +1,96 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio Version 16 | ||
VisualStudioVersion = 16.0.29123.88 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "osu.Game.Rulesets.Rush", "osu.Game.Rulesets.Rush\osu.Game.Rulesets.Rush.csproj", "{5AE1F0F1-DAFA-46E7-959C-DA233B7C87E9}" | ||
EndProject | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "osu.Game.Rulesets.Rush.Tests", "osu.Game.Rulesets.Rush.Tests\osu.Game.Rulesets.Rush.Tests.csproj", "{B4577C85-CB83-462A-BCE3-22FFEB16311D}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
VisualTests|Any CPU = VisualTests|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{5AE1F0F1-DAFA-46E7-959C-DA233B7C87E9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{5AE1F0F1-DAFA-46E7-959C-DA233B7C87E9}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{5AE1F0F1-DAFA-46E7-959C-DA233B7C87E9}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{5AE1F0F1-DAFA-46E7-959C-DA233B7C87E9}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{5AE1F0F1-DAFA-46E7-959C-DA233B7C87E9}.VisualTests|Any CPU.ActiveCfg = Release|Any CPU | ||
{5AE1F0F1-DAFA-46E7-959C-DA233B7C87E9}.VisualTests|Any CPU.Build.0 = Release|Any CPU | ||
{B4577C85-CB83-462A-BCE3-22FFEB16311D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{B4577C85-CB83-462A-BCE3-22FFEB16311D}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{B4577C85-CB83-462A-BCE3-22FFEB16311D}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{B4577C85-CB83-462A-BCE3-22FFEB16311D}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{B4577C85-CB83-462A-BCE3-22FFEB16311D}.VisualTests|Any CPU.ActiveCfg = Debug|Any CPU | ||
{B4577C85-CB83-462A-BCE3-22FFEB16311D}.VisualTests|Any CPU.Build.0 = Debug|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(NestedProjects) = preSolution | ||
EndGlobalSection | ||
GlobalSection(ExtensibilityGlobals) = postSolution | ||
SolutionGuid = {671B0BEC-2403-45B0-9357-2C97CC517668} | ||
EndGlobalSection | ||
GlobalSection(MonoDevelopProperties) = preSolution | ||
Policies = $0 | ||
$0.TextStylePolicy = $1 | ||
$1.EolMarker = Windows | ||
$1.inheritsSet = VisualStudio | ||
$1.inheritsScope = text/plain | ||
$1.scope = text/x-csharp | ||
$0.CSharpFormattingPolicy = $2 | ||
$2.IndentSwitchSection = True | ||
$2.NewLinesForBracesInProperties = True | ||
$2.NewLinesForBracesInAccessors = True | ||
$2.NewLinesForBracesInAnonymousMethods = True | ||
$2.NewLinesForBracesInControlBlocks = True | ||
$2.NewLinesForBracesInAnonymousTypes = True | ||
$2.NewLinesForBracesInObjectCollectionArrayInitializers = True | ||
$2.NewLinesForBracesInLambdaExpressionBody = True | ||
$2.NewLineForElse = True | ||
$2.NewLineForCatch = True | ||
$2.NewLineForFinally = True | ||
$2.NewLineForMembersInObjectInit = True | ||
$2.NewLineForMembersInAnonymousTypes = True | ||
$2.NewLineForClausesInQuery = True | ||
$2.SpacingAfterMethodDeclarationName = False | ||
$2.SpaceAfterMethodCallName = False | ||
$2.SpaceBeforeOpenSquareBracket = False | ||
$2.inheritsSet = Mono | ||
$2.inheritsScope = text/x-csharp | ||
$2.scope = text/x-csharp | ||
EndGlobalSection | ||
GlobalSection(MonoDevelopProperties) = preSolution | ||
Policies = $0 | ||
$0.TextStylePolicy = $1 | ||
$1.EolMarker = Windows | ||
$1.inheritsSet = VisualStudio | ||
$1.inheritsScope = text/plain | ||
$1.scope = text/x-csharp | ||
$0.CSharpFormattingPolicy = $2 | ||
$2.IndentSwitchSection = True | ||
$2.NewLinesForBracesInProperties = True | ||
$2.NewLinesForBracesInAccessors = True | ||
$2.NewLinesForBracesInAnonymousMethods = True | ||
$2.NewLinesForBracesInControlBlocks = True | ||
$2.NewLinesForBracesInAnonymousTypes = True | ||
$2.NewLinesForBracesInObjectCollectionArrayInitializers = True | ||
$2.NewLinesForBracesInLambdaExpressionBody = True | ||
$2.NewLineForElse = True | ||
$2.NewLineForCatch = True | ||
$2.NewLineForFinally = True | ||
$2.NewLineForMembersInObjectInit = True | ||
$2.NewLineForMembersInAnonymousTypes = True | ||
$2.NewLineForClausesInQuery = True | ||
$2.SpacingAfterMethodDeclarationName = False | ||
$2.SpaceAfterMethodCallName = False | ||
$2.SpaceBeforeOpenSquareBracket = False | ||
$2.inheritsSet = Mono | ||
$2.inheritsScope = text/x-csharp | ||
$2.scope = text/x-csharp | ||
EndGlobalSection | ||
EndGlobal | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio Version 16 | ||
VisualStudioVersion = 16.0.29123.88 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "osu.Game.Rulesets.Rush", "osu.Game.Rulesets.Rush\osu.Game.Rulesets.Rush.csproj", "{5AE1F0F1-DAFA-46E7-959C-DA233B7C87E9}" | ||
EndProject | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "osu.Game.Rulesets.Rush.Tests", "osu.Game.Rulesets.Rush.Tests\osu.Game.Rulesets.Rush.Tests.csproj", "{B4577C85-CB83-462A-BCE3-22FFEB16311D}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
VisualTests|Any CPU = VisualTests|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{5AE1F0F1-DAFA-46E7-959C-DA233B7C87E9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{5AE1F0F1-DAFA-46E7-959C-DA233B7C87E9}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{5AE1F0F1-DAFA-46E7-959C-DA233B7C87E9}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{5AE1F0F1-DAFA-46E7-959C-DA233B7C87E9}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{5AE1F0F1-DAFA-46E7-959C-DA233B7C87E9}.VisualTests|Any CPU.ActiveCfg = Release|Any CPU | ||
{5AE1F0F1-DAFA-46E7-959C-DA233B7C87E9}.VisualTests|Any CPU.Build.0 = Release|Any CPU | ||
{B4577C85-CB83-462A-BCE3-22FFEB16311D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{B4577C85-CB83-462A-BCE3-22FFEB16311D}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{B4577C85-CB83-462A-BCE3-22FFEB16311D}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{B4577C85-CB83-462A-BCE3-22FFEB16311D}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{B4577C85-CB83-462A-BCE3-22FFEB16311D}.VisualTests|Any CPU.ActiveCfg = Debug|Any CPU | ||
{B4577C85-CB83-462A-BCE3-22FFEB16311D}.VisualTests|Any CPU.Build.0 = Debug|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(NestedProjects) = preSolution | ||
EndGlobalSection | ||
GlobalSection(ExtensibilityGlobals) = postSolution | ||
SolutionGuid = {671B0BEC-2403-45B0-9357-2C97CC517668} | ||
EndGlobalSection | ||
GlobalSection(MonoDevelopProperties) = preSolution | ||
Policies = $0 | ||
$0.TextStylePolicy = $1 | ||
$1.EolMarker = Windows | ||
$1.inheritsSet = VisualStudio | ||
$1.inheritsScope = text/plain | ||
$1.scope = text/x-csharp | ||
$0.CSharpFormattingPolicy = $2 | ||
$2.IndentSwitchSection = True | ||
$2.NewLinesForBracesInProperties = True | ||
$2.NewLinesForBracesInAccessors = True | ||
$2.NewLinesForBracesInAnonymousMethods = True | ||
$2.NewLinesForBracesInControlBlocks = True | ||
$2.NewLinesForBracesInAnonymousTypes = True | ||
$2.NewLinesForBracesInObjectCollectionArrayInitializers = True | ||
$2.NewLinesForBracesInLambdaExpressionBody = True | ||
$2.NewLineForElse = True | ||
$2.NewLineForCatch = True | ||
$2.NewLineForFinally = True | ||
$2.NewLineForMembersInObjectInit = True | ||
$2.NewLineForMembersInAnonymousTypes = True | ||
$2.NewLineForClausesInQuery = True | ||
$2.SpacingAfterMethodDeclarationName = False | ||
$2.SpaceAfterMethodCallName = False | ||
$2.SpaceBeforeOpenSquareBracket = False | ||
$2.inheritsSet = Mono | ||
$2.inheritsScope = text/x-csharp | ||
$2.scope = text/x-csharp | ||
EndGlobalSection | ||
GlobalSection(MonoDevelopProperties) = preSolution | ||
Policies = $0 | ||
$0.TextStylePolicy = $1 | ||
$1.EolMarker = Windows | ||
$1.inheritsSet = VisualStudio | ||
$1.inheritsScope = text/plain | ||
$1.scope = text/x-csharp | ||
$0.CSharpFormattingPolicy = $2 | ||
$2.IndentSwitchSection = True | ||
$2.NewLinesForBracesInProperties = True | ||
$2.NewLinesForBracesInAccessors = True | ||
$2.NewLinesForBracesInAnonymousMethods = True | ||
$2.NewLinesForBracesInControlBlocks = True | ||
$2.NewLinesForBracesInAnonymousTypes = True | ||
$2.NewLinesForBracesInObjectCollectionArrayInitializers = True | ||
$2.NewLinesForBracesInLambdaExpressionBody = True | ||
$2.NewLineForElse = True | ||
$2.NewLineForCatch = True | ||
$2.NewLineForFinally = True | ||
$2.NewLineForMembersInObjectInit = True | ||
$2.NewLineForMembersInAnonymousTypes = True | ||
$2.NewLineForClausesInQuery = True | ||
$2.SpacingAfterMethodDeclarationName = False | ||
$2.SpaceAfterMethodCallName = False | ||
$2.SpaceBeforeOpenSquareBracket = False | ||
$2.inheritsSet = Mono | ||
$2.inheritsScope = text/x-csharp | ||
$2.scope = text/x-csharp | ||
EndGlobalSection | ||
EndGlobal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup Label="Project"> | ||
<TargetFramework>netstandard2.1</TargetFramework> | ||
<AssemblyTitle>osu.Game.Rulesets.Rush</AssemblyTitle> | ||
<OutputType>Library</OutputType> | ||
<PlatformTarget>AnyCPU</PlatformTarget> | ||
<RootNamespace>osu.Game.Rulesets.Rush</RootNamespace> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<EmbeddedResource Include="Resources\**" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="ppy.osu.Game" Version="2020.814.0" /> | ||
</ItemGroup> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup Label="Project"> | ||
<TargetFramework>netstandard2.1</TargetFramework> | ||
<AssemblyTitle>osu.Game.Rulesets.Rush</AssemblyTitle> | ||
<OutputType>Library</OutputType> | ||
<PlatformTarget>AnyCPU</PlatformTarget> | ||
<RootNamespace>osu.Game.Rulesets.Rush</RootNamespace> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<EmbeddedResource Include="Resources\**" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="ppy.osu.Game" Version="2020.814.0" /> | ||
</ItemGroup> | ||
</Project> |