Skip to content

Commit 1d29fe7

Browse files
committed
Target RTM deps
1 parent 0989176 commit 1d29fe7

File tree

4 files changed

+11
-11
lines changed

4 files changed

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

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

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

0 commit comments

Comments
 (0)