Skip to content

Commit 94cb867

Browse files
committed
Move to NS2.0
1 parent 67f77e1 commit 94cb867

File tree

71 files changed

+2228
-2588
lines changed

Some content is hidden

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

71 files changed

+2228
-2588
lines changed

.paket/Paket.Restore.targets

-272
This file was deleted.

.paket/paket.bootstrapper.exe

-62.8 KB
Binary file not shown.

CommandLine.nuspec

-44
This file was deleted.

CommandLine.sln

+5-18
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

-4
This file was deleted.

CommandLine.snk

-595 Bytes
Binary file not shown.

Commandline.FSharp.nuspec

-50
This file was deleted.

appveyor.yml

+3-32
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,18 @@ 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%
53-
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
29+
- cmd: dotnet pack "src\CommandLine\CommandLine.csproj" -c Release --version-suffix %APPVEYOR_BUILD_VERSION% /p:BuildTarget=%BUILD_TARGET%
5930

6031
test: auto
6132

6233
artifacts:
63-
- path: 'Release/**/*.nupkg'
34+
- path: 'src/CommandLine/bin/Release/*.nupkg'
6435
name: NugetPackages
6536

6637
on_failure:

build-nuget-pack.cmd

-19
This file was deleted.

build.cmd

-49
This file was deleted.

build.fsx

-47
This file was deleted.

build.sh

-35
This file was deleted.

global.json

-9
This file was deleted.

paket.dependencies

-14
This file was deleted.

0 commit comments

Comments
 (0)