Skip to content

Commit d70a360

Browse files
committed
2.0 Release
1 parent 87f58ec commit d70a360

File tree

69 files changed

+84
-2721
lines changed

Some content is hidden

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

69 files changed

+84
-2721
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
}

samples/Sample/project.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
{
2-
"version": "1.0.0-*",
32
"buildOptions": {
43
"emitEntryPoint": true
54
},
65
"dependencies": {
76
"Serilog.Extensions.Logging": { "target": "project" },
8-
"Serilog.Sinks.Literate": "2.0.0-rc-25",
9-
"Microsoft.Extensions.Logging": "1.0.0-rc2-final"
7+
"Serilog.Sinks.Literate": "2.0.0",
8+
"Microsoft.Extensions.Logging": "1.0.0"
109
},
1110

1211
"frameworks": {
@@ -16,7 +15,7 @@
1615
"dependencies": {
1716
"Microsoft.NETCore.App": {
1817
"type": "platform",
19-
"version": "1.0.0-rc2-3002702"
18+
"version": "1.0.0"
2019
}
2120
},
2221
"imports": [

0 commit comments

Comments
 (0)