Skip to content

Commit 07d91dd

Browse files
authored
Merge pull request #5 from adamchester/release-2.0
Release 2.0
2 parents 3aaa614 + 155bc75 commit 07d91dd

File tree

5 files changed

+318
-13
lines changed

5 files changed

+318
-13
lines changed

Diff for: appveyor.yml

+2-2
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/dotnet-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 -Version 1.0.0-preview2-002823'
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

Diff for: global.json

+1-1
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
}

Diff for: src/Serilog.Sinks.RollingFile/project.json

+6-6
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 rolling file sink for Serilog - Simple .NET logging with fully-structured events",
44
"authors": [ "Serilog Contributors" ],
55
"packOptions": {
@@ -9,8 +9,8 @@
99
"iconUrl": "http://serilog.net/images/serilog-sink-nuget.png"
1010
},
1111
"dependencies": {
12-
"Serilog": "2.0.0-rc-556",
13-
"Serilog.Sinks.File": "2.0.0-rc-704"
12+
"Serilog": "2.0.0",
13+
"Serilog.Sinks.File": "2.0.0"
1414
},
1515
"buildOptions": {
1616
"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.Primitives": "4.0.1-rc2-24027",
24-
"System.Runtime.InteropServices": "4.1.0-rc2-24027"
22+
"System.IO": "4.1.0",
23+
"System.IO.FileSystem.Primitives": "4.0.1",
24+
"System.Runtime.InteropServices": "4.1.0"
2525
}
2626
}
2727
}

0 commit comments

Comments
 (0)