Skip to content

Commit bc937d4

Browse files
authored
Merge pull request #3 from adamchester/release-2.0
Release 2.0
2 parents c9f5c7c + 1d29fe7 commit bc937d4

File tree

5 files changed

+316
-11
lines changed

5 files changed

+316
-11
lines changed

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ image: Visual Studio 2015
33
configuration: Release
44
install:
55
- ps: mkdir -Force ".\build\" | Out-Null
6-
- ps: Invoke-WebRequest "https://raw.githubusercontent.com/dotnet/cli/rel/1.0.0/scripts/obtain/install.ps1" -OutFile ".\build\installcli.ps1"
6+
- ps: Invoke-WebRequest "https://raw.githubusercontent.com/dotnet/cli/rel/1.0.0-preview2/scripts/obtain/dotnet-install.ps1" -OutFile ".\build\installcli.ps1"
77
- ps: $env:DOTNET_INSTALL_DIR = "$pwd\.dotnetcli"
8-
- ps: '& .\build\installcli.ps1 -InstallDir "$env:DOTNET_INSTALL_DIR" -NoPath'
8+
- ps: '& .\build\installcli.ps1 -InstallDir "$env:DOTNET_INSTALL_DIR" -NoPath -Version 1.0.0-preview2-003121'
99
- ps: $env:Path = "$env:DOTNET_INSTALL_DIR;$env:Path"
1010
build_script:
1111
- ps: ./Build.ps1

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"projects": [ "src", "test" ],
33
"sdk": {
4-
"version": "1.0.0-preview1-002702"
4+
"version": "1.0.0-preview2-003121"
55
}
66
}

src/Serilog.Sinks.File/project.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "2.0.0-rc-*",
2+
"version": "2.0.0",
33
"description": "The file sink for Serilog",
44
"authors": [ "Serilog Contributors" ],
55
"packOptions": {
@@ -9,7 +9,7 @@
99
"iconUrl": "http://serilog.net/images/serilog-sink-nuget.png"
1010
},
1111
"dependencies": {
12-
"Serilog": "2.0.0-rc-556"
12+
"Serilog": "2.0.0"
1313
},
1414
"buildOptions": {
1515
"keyFile": "../../assets/Serilog.snk",
@@ -19,9 +19,9 @@
1919
"net4.5": {},
2020
"netstandard1.3": {
2121
"dependencies": {
22-
"System.IO": "4.1.0-rc2-24027",
23-
"System.IO.FileSystem": "4.0.1-rc2-24027",
24-
"System.IO.FileSystem.Primitives": "4.0.1-rc2-24027"
22+
"System.IO": "4.1.0",
23+
"System.IO.FileSystem": "4.0.1",
24+
"System.IO.FileSystem.Primitives": "4.0.1"
2525
}
2626
}
2727
}

0 commit comments

Comments
 (0)