File tree 3 files changed +9
-4
lines changed
3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
6
6
7
7
## [ vNext]
8
8
9
+ ## [ 0.17.3] / 2019-02-27
10
+ - Fixed documentation file generation
11
+ - Fixed ` CheckBuildProjectConfigurationsAttribute.Timeout ` to be settable
12
+
9
13
## [ 0.17.2] / 2019-02-24
10
14
- Fixed parsing of changelog
11
15
@@ -314,7 +318,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
314
318
- Added CLT tasks for Git
315
319
- Fixed background color in console output
316
320
317
- [ vNext ] : https://github.com/nuke-build/common/compare/0.17.2...HEAD
321
+ [ vNext ] : https://github.com/nuke-build/common/compare/0.17.3...HEAD
322
+ [ 0.17.3 ] : https://github.com/nuke-build/common/compare/0.17.2...0.17.3
318
323
[ 0.17.2 ] : https://github.com/nuke-build/common/compare/0.17.1...0.17.2
319
324
[ 0.17.1 ] : https://github.com/nuke-build/common/compare/0.17.0...0.17.1
320
325
[ 0.17.0 ] : https://github.com/nuke-build/common/compare/0.16.0...0.17.0
Original file line number Diff line number Diff line change 26
26
<DefineConstants >$(DefineConstants);NETCORE</DefineConstants >
27
27
</PropertyGroup >
28
28
29
- <PropertyGroup Condition =" '$(IsPackable)' == 'True '" >
30
- <DocumentationFile >bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</ DocumentationFile >
29
+ <PropertyGroup Condition =" '$(IsPackable)' != 'False '" >
30
+ <GenerateDocumentationFile >true</ GenerateDocumentationFile >
31
31
</PropertyGroup >
32
32
33
33
<PropertyGroup Condition =" '$(Configuration)' == 'Debug'" >
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ namespace Nuke.Common.Execution
17
17
[ AttributeUsage ( AttributeTargets . Class ) ]
18
18
public class CheckBuildProjectConfigurationsAttribute : Attribute , IPostLogoBuildExtension
19
19
{
20
- public int TimeoutInMilliseconds { get ; } = 500 ;
20
+ public int TimeoutInMilliseconds { get ; set ; } = 500 ;
21
21
22
22
public void Execute ( NukeBuild build , IReadOnlyCollection < ExecutableTarget > executableTargets )
23
23
{
You can’t perform that action at this time.
0 commit comments