File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ var version = Context.Configuration.GetValue("package_version");
7
7
8
8
Task ( "build" )
9
9
. Description ( "Builds the project." )
10
- . Does ( ( ) => DotNetBuild ( "src/lcov.csproj " , new ( ) { Configuration = release ? "Release" : "Debug" } ) ) ;
10
+ . Does ( ( ) => DotNetBuild ( "src" , new ( ) { Configuration = release ? "Release" : "Debug" } ) ) ;
11
11
12
12
Task ( "clean" )
13
13
. Description ( "Deletes all generated files." )
@@ -17,7 +17,7 @@ Task("clean")
17
17
18
18
Task ( "format" )
19
19
. Description ( "Formats the source code." )
20
- . Does ( ( ) => DotNetFormat ( "lcov.slnx" ) ) ;
20
+ . DoesForEach ( [ "src" , "test" ] , project => DotNetFormat ( project ) ) ;
21
21
22
22
Task ( "publish" )
23
23
. Description ( "Publishes the package." )
@@ -27,7 +27,7 @@ Task("publish")
27
27
28
28
Task ( "test" )
29
29
. Description ( "Runs the test suite." )
30
- . Does ( ( ) => DotNetTest ( "test/lcov.tests.csproj " , new ( ) { Settings = ".runsettings" } ) ) ;
30
+ . Does ( ( ) => DotNetTest ( "test" , new ( ) { Settings = ".runsettings" } ) ) ;
31
31
32
32
Task ( "version" )
33
33
. Description ( "Updates the version number in the sources." )
You can’t perform that action at this time.
0 commit comments