File tree Expand file tree Collapse file tree 3 files changed +10
-16
lines changed Expand file tree Collapse file tree 3 files changed +10
-16
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ addons:
22
22
osx_image : xcode7.2
23
23
24
24
# Ensure that .NET Core is installed
25
- dotnet : 2.1.301
25
+ dotnet : 2.1.403
26
26
# Ensure Mono is installed
27
27
mono : latest
28
28
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ environment:
22
22
23
23
build_script :
24
24
# Install .NET Core SDK
25
- - ps : choco install dotnetcore-sdk --no-progress --confirm --version 2.1.301
25
+ - ps : choco install dotnetcore-sdk --no-progress --confirm --version 2.1.403
26
26
- ps : .\build.ps1
27
27
28
28
test : off
Original file line number Diff line number Diff line change 1
- using System . Text . RegularExpressions ;
2
- using System . Xml . Linq ;
3
-
4
1
var target = Argument ( "Target" , "Default" ) ;
5
2
var configuration =
6
3
HasArgument ( "Configuration" ) ? Argument < string > ( "Configuration" ) :
@@ -40,17 +37,14 @@ Task("Restore")
40
37
. IsDependentOn ( "Restore" )
41
38
. Does ( ( ) =>
42
39
{
43
- foreach ( var project in GetFiles ( "./**/*.csproj" ) )
44
- {
45
- DotNetCoreBuild (
46
- project . GetDirectory ( ) . FullPath ,
47
- new DotNetCoreBuildSettings ( )
48
- {
49
- Configuration = configuration ,
50
- NoRestore = true ,
51
- VersionSuffix = versionSuffix
52
- } ) ;
53
- }
40
+ DotNetCoreBuild (
41
+ "." ,
42
+ new DotNetCoreBuildSettings ( )
43
+ {
44
+ Configuration = configuration ,
45
+ NoRestore = true ,
46
+ VersionSuffix = versionSuffix
47
+ } ) ;
54
48
} ) ;
55
49
56
50
Task ( "Test" )
You can’t perform that action at this time.
0 commit comments