Skip to content

Commit 596daec

Browse files
committed
Stop tests being run by appveyor as well as the build script, remove no docs warning in release build
1 parent 3bd0c2e commit 596daec

File tree

6 files changed

+15
-20
lines changed

6 files changed

+15
-20
lines changed

Build.cmd

Lines changed: 0 additions & 17 deletions
This file was deleted.

appveyor.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
1+
assembly_info:
2+
patch: false
3+
14
configuration:
25
- Debug
36

47
build_script:
58
- ps: .\build.ps1
69

10+
test: off
11+
skip_tags: true
12+
713
cache:
814
- src\packages -> **\packages.config # preserve "packages" directory in the root of build folder but will reset it if packages.config is modified

src/GitVersion.sln

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 14
4-
VisualStudioVersion = 14.0.25123.0
4+
VisualStudioVersion = 14.0.25420.1
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GitVersionExe", "GitVersionExe\GitVersionExe.csproj", "{C3578A7B-09A6-4444-9383-0DEAFA4958BD}"
77
EndProject
@@ -18,8 +18,11 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1818
..\.travis.yml = ..\.travis.yml
1919
..\appveyor.yml = ..\appveyor.yml
2020
..\BREAKING CHANGES.md = ..\BREAKING CHANGES.md
21-
..\Build.cmd = ..\Build.cmd
21+
..\build.cake = ..\build.cake
22+
..\build.ps1 = ..\build.ps1
23+
..\build.sh = ..\build.sh
2224
..\CONTRIBUTING.md = ..\CONTRIBUTING.md
25+
..\deploy.cake = ..\deploy.cake
2326
..\GitVersion.yml = ..\GitVersion.yml
2427
..\LICENSE = ..\LICENSE
2528
..\mkdocs.yml = ..\mkdocs.yml
@@ -33,9 +36,9 @@ EndProject
3336
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "TfsTask", "TfsTask", "{A0ED1410-E970-45E8-A357-05605E2B7BFF}"
3437
ProjectSection(SolutionItems) = preProject
3538
GitVersionTfsTask\Create-Vsix.ps1 = GitVersionTfsTask\Create-Vsix.ps1
39+
GitVersionTfsTask\extension-icon.png = GitVersionTfsTask\extension-icon.png
3640
GitVersionTfsTask\GitVersion.ps1 = GitVersionTfsTask\GitVersion.ps1
3741
GitVersionTfsTask\icon.png = GitVersionTfsTask\icon.png
38-
GitVersionTfsTask\extension-icon.png = GitVersionTfsTask\extension-icon.png
3942
GitVersionTfsTask\manifest.json = GitVersionTfsTask\manifest.json
4043
GitVersionTfsTask\overview.md = GitVersionTfsTask\overview.md
4144
GitVersionTfsTask\task.json = GitVersionTfsTask\task.json

src/GitVersionCore/GitVersionCore.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
<ErrorReport>prompt</ErrorReport>
3737
<WarningLevel>4</WarningLevel>
3838
<DocumentationFile>bin\Release\GitVersionCore.xml</DocumentationFile>
39+
<NoWarn>1591</NoWarn>
3940
</PropertyGroup>
4041
<ItemGroup>
4142
<Reference Include="GitTools.Core, Version=1.1.0.0, Culture=neutral, processorArchitecture=MSIL">

src/GitVersionExe/GitVersionExe.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
<WarningLevel>4</WarningLevel>
3939
<UseVSHostingProcess>false</UseVSHostingProcess>
4040
<DocumentationFile>bin\Release\GitVersion.xml</DocumentationFile>
41+
<NoWarn>1591</NoWarn>
4142
</PropertyGroup>
4243
<ItemGroup>
4344
<Reference Include="GitTools.Core, Version=1.1.0.0, Culture=neutral, processorArchitecture=MSIL">

src/GitVersionTask/GitVersionTask.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
<ErrorReport>prompt</ErrorReport>
3737
<WarningLevel>4</WarningLevel>
3838
<UseVSHostingProcess>false</UseVSHostingProcess>
39+
<NoWarn>1591</NoWarn>
3940
</PropertyGroup>
4041
<ItemGroup>
4142
<Reference Include="GitTools.Core, Version=1.1.0.0, Culture=neutral, processorArchitecture=MSIL">

0 commit comments

Comments
 (0)