Skip to content

Commit 8d28810

Browse files
committed
Target RTM deps
1 parent 3aaa614 commit 8d28810

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
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/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

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.RollingFile/project.json

Lines changed: 6 additions & 6 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 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
}

test/Serilog.Sinks.RollingFile.Tests/project.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
2-
"version": "2.0.0-rc-*",
2+
"version": "2.0.0",
33
"testRunner": "xunit",
44
"dependencies": {
55
"Serilog.Sinks.RollingFile": { "target": "project" },
66
"xunit": "2.1.0",
7-
"dotnet-test-xunit": "1.0.0-rc2-build10015",
8-
"Serilog.Sinks.File": "2.0.0-rc-704"
7+
"dotnet-test-xunit": "1.0.0-rc2-build10025",
8+
"Serilog.Sinks.File": "2.0.0"
99
},
1010
"frameworks": {
1111
"net4.5.2": {},
1212
"netcoreapp1.0": {
1313
"dependencies": {
1414
"Microsoft.NETCore.App": {
1515
"type": "platform",
16-
"version": "1.0.0-rc2-3002702"
16+
"version": "1.0.0"
1717
}
1818
},
1919
"imports": [

0 commit comments

Comments
 (0)