Skip to content

Commit dfd2c88

Browse files
authored
Merge pull request #213 from AArnott/fixBuildWarnings
Fix build warnings
2 parents 3c393ac + 349091a commit dfd2c88

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

doc/gulp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ You can invoke Nerdbank.GitVersioning from a gulp task to get
44
version information and even to automatically stamp your NPM packages.
55

66
The following gulp script will update your package.json file's version
7-
property with the package version to build.
7+
property with the package version to build.
88

99
```js
1010
var gulp = require('gulp');
@@ -58,7 +58,7 @@ gulp.task('package', ['setPackageVersion'], function() {
5858
gulp.task('default', ['package'], function() {
5959
});
6060

61-
```
61+
```
6262

6363
When you run your gulp script, the out directory will contain a package
6464
with a package.json file with a specific version field, such as:

doc/npm-acquisition.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Nerdbank.GitVersioning installation via NPM
22

3-
Install the `nerdbank-gitversioning` package:
3+
Install the `nerdbank-gitversioning` package:
44

55
```
66
npm install nerdbank-gitversioning --save-dev
77
```
88

9-
# Next steps
9+
# Next steps
1010

11-
You must also create [a version.json file](versionJson.md) in your repo.
11+
You must also create [a version.json file](versionJson.md) in your repo.
1212
Learn more about [how Node and your NPM packages can be stamped with version information](node.md).

src/NerdBank.GitVersioning/NerdBank.GitVersioning.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<PackageReference Include="LibGit2Sharp" Version="0.25.2" PrivateAssets="none" />
1212
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
1313
<PackageReference Include="System.Diagnostics.Tools" Version="4.3.0" Condition=" '$(TargetFramework)' == 'netcoreapp2.0' " />
14-
<PackageReference Include="Validation" Version="2.3.7" />
14+
<PackageReference Include="Validation" Version="2.4.18" />
1515
<PackageReference Include="Nerdbank.GitVersioning.LKG" Version="1.6.20-beta-gfea83a8c9e" />
1616
</ItemGroup>
1717
<ItemGroup>

0 commit comments

Comments
 (0)