Skip to content

Commit 36e7ba3

Browse files
committed
Merge branch 'netstandard20' of https://github.com/ViktorHofer/commandline into ViktorHofer-netstandard20
2 parents 68d46c7 + bf05d8e commit 36e7ba3

File tree

70 files changed

+2258
-2611
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+2258
-2611
lines changed

.paket/Paket.Restore.targets

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

.paket/paket.bootstrapper.exe

-62.8 KB
Binary file not shown.

CommandLine.nuspec

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

CommandLine.sln

Lines changed: 5 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,10 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 14
4-
VisualStudioVersion = 14.0.25420.1
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.27703.2042
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CommandLine", "src\CommandLine\CommandLine.csproj", "{E1BD3C65-49C3-49E7-BABA-C60980CB3F20}"
77
EndProject
8-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".Welcome", ".Welcome", "{D9C1F005-94A7-4A2A-81F3-9C053D5A6AEC}"
9-
ProjectSection(SolutionItems) = preProject
10-
License.md = License.md
11-
README.md = README.md
12-
EndProjectSection
13-
EndProject
14-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "FSharp", "FSharp", "{751E6303-1623-4418-B298-4FF97DA5C86E}"
15-
ProjectSection(SolutionItems) = preProject
16-
demo\fsharp-demo.fsx = demo\fsharp-demo.fsx
17-
EndProjectSection
18-
EndProject
19-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{A6C99AE7-2FE1-4393-9281-7BFCF46A6F53}"
20-
ProjectSection(SolutionItems) = preProject
21-
build.fsx = build.fsx
22-
EndProjectSection
23-
EndProject
248
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CommandLine.Tests", "tests\CommandLine.Tests\CommandLine.Tests.csproj", "{0A15C4D2-B3E9-43AB-8155-1B39F7AC8A5E}"
259
EndProject
2610
Global
@@ -41,6 +25,9 @@ Global
4125
GlobalSection(SolutionProperties) = preSolution
4226
HideSolutionNode = FALSE
4327
EndGlobalSection
28+
GlobalSection(ExtensibilityGlobals) = postSolution
29+
SolutionGuid = {5B5A476C-82FB-49FB-B592-5224D9005186}
30+
EndGlobalSection
4431
GlobalSection(MonoDevelopProperties) = preSolution
4532
StartupItem = src\CommandLine\CommandLine.csproj
4633
EndGlobalSection

CommandLine.sln.DotSettings

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

Commandline.FSharp.nuspec

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

appveyor.yml

Lines changed: 7 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
11
#version should be changed with any pull requests
2-
version: 2.2.{build}
2+
version: 2.3.{build}
33

44
clone_depth: 1
55
pull_requests:
66
do_not_increment_build_number: true
77

8-
#cache:
9-
#- packages -> paket.dependencies
10-
#- paket-files > paket.dependencies
11-
128
init:
139
- ps: |
1410
git config --global core.autocrlf input
@@ -24,43 +20,22 @@ init:
2420
Update-AppveyorBuild -Version "$ver-$commit"
2521
}
2622
27-
#version patching
28-
assembly_info:
29-
file: src\SharedAssemblyInfo.cs
30-
patch: true
31-
assembly_version: '{version}'
32-
assembly_file_version: '{version}'
33-
assembly_informational_version: $(APPVEYOR_BUILD_VERSION)
34-
dotnet_csproj:
35-
patch: true
36-
file: '**\*.csproj'
37-
version: '{version}'
38-
package_version: '{version}'
39-
assembly_version: '{version}'
40-
file_version: '{version}'
41-
informational_version: '{version}'
42-
43-
4423
environment:
4524
matrix:
4625
- BUILD_TARGET: base
47-
NUSPEC_FILE: CommandLine
4826
- BUILD_TARGET: fsharp
49-
NUSPEC_FILE: CommandLine.FSharp
5027

5128
build_script:
52-
- cmd: build.cmd %BUILD_TARGET%
29+
- cmd: dotnet build src/CommandLine/ -c Release --version-suffix %APPVEYOR_BUILD_VERSION% /p:BuildTarget=%BUILD_TARGET%
5330

54-
after_build:
55-
- ps: |
56-
powershell get-childitem Release\* -include *.dll | foreach-object { "{0}`t{1}" -f $_.Path, [System.Diagnostics.FileVersionInfo]::GetVersionInfo($_).FileVersion }
57-
58-
.\build-nuget-pack.cmd $env:BUILD_TARGET $env:NUSPEC_FILE
31+
test_script:
32+
- cmd: dotnet test tests/CommandLine.Tests/ /p:BuildTarget=%BUILD_TARGET%
5933

60-
test: auto
34+
after_test:
35+
- cmd: dotnet pack src/CommandLine/ -c Release --version-suffix %APPVEYOR_BUILD_VERSION% /p:BuildTarget=%BUILD_TARGET%
6136

6237
artifacts:
63-
- path: 'Release/**/*.nupkg'
38+
- path: 'src/CommandLine/bin/Release/*.nupkg'
6439
name: NugetPackages
6540

6641
on_failure:

build-nuget-pack.cmd

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

build.cmd

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

build.fsx

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

0 commit comments

Comments
 (0)