Skip to content

Commit 84d5a08

Browse files
committed
Microsoft.NETCore.App version 1.0.1 (StefH#1)
1 parent f869a10 commit 84d5a08

File tree

8 files changed

+23
-42
lines changed

8 files changed

+23
-42
lines changed

NuGet.Config

Lines changed: 0 additions & 14 deletions
This file was deleted.

System.AppDomain.Core.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 14
4-
VisualStudioVersion = 14.0.25123.0
4+
VisualStudioVersion = 14.0.25420.1
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{DB9A5C42-3F8B-4546-96F2-DD35BCACA018}"
77
EndProject

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ init:
1212
- ps: $Env:LABEL = "CI" + $Env:APPVEYOR_BUILD_NUMBER.PadLeft(5, "0")
1313

1414
install:
15-
- ps: Start-FileDownload 'https://dotnetcli.blob.core.windows.net/dotnet/beta/Installers/Latest/dotnet-dev-win-x64.latest.exe'
16-
- cmd: dotnet-dev-win-x64.latest.exe /quiet
15+
- ps: Start-FileDownload 'https://download.microsoft.com/download/0/A/3/0A372822-205D-4A86-BFA7-084D2CBE9EDF/DotNetCore.1.0.1-SDK.1.0.0.Preview2-003133-x64.exe'
16+
- cmd: DotNetCore.1.0.1-SDK.1.0.0.Preview2-003133-x64 /quiet
1717

1818
environment:
1919
PATH: $(PATH);$(PROGRAMFILES)\dotnet\

examples/NetCoreApp/project.json

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,18 @@
99
"dependencies": {
1010
"Microsoft.NETCore.App": {
1111
"type": "platform",
12-
"version": "1.0.0-rc2-*"
12+
"version": "1.0.1"
1313
},
1414
"System.AppDomain.NetCoreApp": { "target": "project" },
15-
"AutoMapper": "4.2.1"
15+
"AutoMapper": "4.2.1",
16+
"System.Console": "4.3.0"
1617
},
1718

1819
"frameworks": {
19-
"netcoreapp1.5": {
20+
"netcoreapp1.0": {
2021
"imports": [
21-
"dotnet5.4",
22-
"portable-net451+win8"
23-
],
24-
"dependencies": {
25-
"System.Console": "4.0.0-rc2-*"
26-
}
22+
"dnxcore50"
23+
]
2724
}
2825
}
2926
}

examples/NetCoreWebApplication/project.json

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
1-
{
1+
{
22
"dependencies": {
33
"Microsoft.NETCore.App": {
4-
"version": "1.0.0-rc2-*",
4+
"version": "1.0.1",
55
"type": "platform"
66
},
7-
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-rc2-final",
8-
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0-rc2-final",
9-
10-
"System.Diagnostics.Debug": "4.0.11-rc2-*",
11-
7+
"Microsoft.AspNetCore.Server.IISIntegration": "1.1.1",
8+
"Microsoft.AspNetCore.Server.Kestrel": "1.1.1",
9+
"System.Diagnostics.Debug": "4.3.0",
1210
"System.AppDomain.NetCoreApp": { "target": "project" }
1311
},
1412

global.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
{
2-
"projects": [ "src", "examples" ]
2+
"projects": [ "src", "examples" ],
3+
"sdk": {
4+
"version": "1.0.0-preview2-003133"
5+
}
36
}

src/System.AppDomain.NetCoreApp/AppDomain.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Diagnostics;
33
using System.Linq;
44
using System.Reflection;
5-
using Microsoft.DotNet.InternalAbstractions;
5+
using Microsoft.DotNet.PlatformAbstractions;
66
using Microsoft.Extensions.DependencyModel;
77

88
namespace System.AppDomain.NetCoreApp

src/System.AppDomain.NetCoreApp/project.json

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-*",
2+
"version": "1.0.1-*",
33
"authors": [ "Stef Heyenrath" ],
44
"title": "System.AppDomain.NetCoreApp",
55
"description": "Mimic call to AppDomain.CurrentDomain.GetAssemblies()",
@@ -14,19 +14,16 @@
1414
},
1515
"projectUrl": "https://github.com/StefH/System.AppDomain.Core",
1616
"licenseUrl": "https://raw.githubusercontent.com/StefH/System.AppDomain.Core/master/LICENSE",
17-
"releaseNotes": "initial version"
17+
"releaseNotes": "Update to Microsoft.NETCore.App version 1.0.1"
1818
},
1919

2020
"buildOptions": {
2121
"emitEntryPoint": false
2222
},
2323

2424
"dependencies": {
25-
"Microsoft.Extensions.DependencyModel": "1.0.0-rc2-final",
26-
"Microsoft.NETCore.App": {
27-
"type": "platform",
28-
"version": "1.0.0-rc2-*"
29-
}
25+
"Microsoft.Extensions.DependencyModel": "1.1.0",
26+
"Microsoft.NETCore.App": "1.0.1"
3027
},
3128

3229
"frameworks": {

0 commit comments

Comments
 (0)