mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 12:17:26 +08:00
Prepare inspect code
This commit is contained in:
parent
91ca245c58
commit
6a661d1766
@ -1,3 +1,5 @@
|
||||
#tool "nuget:?package=JetBrains.ReSharper.CommandLineTools"
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// ARGUMENTS
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
@ -25,7 +27,7 @@ Task("Compile")
|
||||
Task("Test")
|
||||
.ContinueOnError()
|
||||
.DoesForEach(testProjects, testProject => {
|
||||
DotNetCoreTest(testProject.FullPath, new DotNetCoreTestSettings {3
|
||||
DotNetCoreTest(testProject.FullPath, new DotNetCoreTestSettings {
|
||||
Framework = framework,
|
||||
Configuration = configuration,
|
||||
Logger = $"trx;LogFileName={testProject.GetFilename()}.trx",
|
||||
@ -33,6 +35,11 @@ Task("Test")
|
||||
});
|
||||
});
|
||||
|
||||
Task("InspectCode")
|
||||
.Does(() => {
|
||||
|
||||
});
|
||||
|
||||
Task("Build")
|
||||
.IsDependentOn("Compile")
|
||||
.IsDependentOn("Test");
|
||||
|
Loading…
Reference in New Issue
Block a user