Skip to content

Commit 13ef005

Browse files
author
Dmitry Sikorsky
committed
Updated to use ASP.NET Core 1.0.0-rc2
1 parent da200b0 commit 13ef005

37 files changed

Lines changed: 246 additions & 229 deletions

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
.svn/
22
.vs/
33
artifacts/
4+
bin/
5+
obj/
46
*.xproj.user
57
*.lock.json

ExtCore.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.24720.0
4+
VisualStudioVersion = 14.0.25123.0
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{0D7AEFA3-ABB0-4AF1-A4C1-F8E05C241753}"
77
EndProject

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
1-
# ExtCore 1.0.0-alpha7
1+
# ExtCore 1.0.0-alpha8
22

33
[![Join the chat at https://gitter.im/ExtCore/ExtCore](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/ExtCore/ExtCore?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
44

55
## Introduction
66

77
ExtCore is free, open source and cross-platform framework for creating modular and extendable web applications
8-
based on ASP.NET Core 1.0. It is built using the best and the most modern tools and languages (Visual Studio 2015, C#
8+
based on ASP.NET Core. It is built using the best and the most modern tools and languages (Visual Studio 2015, C#
99
etc). Join our team!
1010

1111
ExtCore allows you to decouple your application into the modules (or extensions) and reuse that modules in other
1212
applications in various combinations. Each ExtCore extension may consist of one or more projects and each project
13-
may include everything you want (as any other ASP.NET Core 1.0 project). Controllers, view components, views (added as
13+
may include everything you want (as any other ASP.NET Core project). Controllers, view components, views (added as
1414
resources and/or precompiled), static content (added as resources) will be resolved automatically. These projects
1515
(extension pieces) may be added to the application directly as dependencies in project.json of your main
1616
application project (as source code or NuGet packages), or by copying compiled DLL-files to the Extensions
1717
folder. ExtCore supports both of these approaches out of the box and at the same time.
1818

1919
By default, ExtCore doesn’t know anything about data and storage, but you can use ExtCore.Data extension to have
20-
unified approach to working with data and single storage context. It supports SQLite and Microsoft SQL Server,
21-
but it is very easy to add another storage support.
20+
unified approach to working with data and single storage context. It supports Microsoft SQL Server, PostgreSql
21+
and SQLite, but it is very easy to add another storage support.
2222

2323
You can find more information using the links at the bottom of this page.
2424

@@ -60,7 +60,7 @@ All you need to do to have modular and extendable web application is:
6060

6161
Please take a look at our [sample](https://github.com/ExtCore/ExtCore-Sample) on GitHub.
6262

63-
You can also download our [ready to use sample](http://extcore.net/files/ExtCore-Sample-1.0.0-alpha7.zip).
63+
You can also download our [ready to use sample](http://extcore.net/files/ExtCore-Sample-1.0.0-alpha8.zip).
6464
It contains everything you need to run ExtCore-based web application from Visual Studio 2015, including SQLite
6565
database with the test data.
6666

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"projects": [ "src" ],
33
"sdk": {
4-
"version": "1.0.0-rc1-final"
4+
"version": "1.0.0-preview1-002702"
55
}
66
}

src/ExtCore.Data.Abstractions/ExtCore.Data.Abstractions.xproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<ProjectGuid>48174f66-a54e-447f-a69c-426eec0cef80</ProjectGuid>
1010
<RootNamespace>ExtCore.Data.Abstractions</RootNamespace>
1111
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">..\..\artifacts\obj\$(MSBuildProjectName)</BaseIntermediateOutputPath>
12-
<OutputPath Condition="'$(OutputPath)'=='' ">..\..\artifacts\bin\$(MSBuildProjectName)\</OutputPath>
12+
<OutputPath Condition="'$(OutputPath)'=='' ">.\bin\</OutputPath>
1313
</PropertyGroup>
1414
<PropertyGroup>
1515
<SchemaVersion>2.0</SchemaVersion>

src/ExtCore.Data.Abstractions/project.json

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,22 @@
22
"authors": [ "Dmitry Sikorsky" ],
33
"copyright": "Copyright © 2015 Dmitry Sikorsky",
44
"dependencies": {
5-
"ExtCore.Infrastructure": "1.0.0-alpha7",
6-
"Microsoft.AspNet.Mvc": "6.0.0-rc1-final"
5+
"ExtCore.Infrastructure": "1.0.0-alpha8",
6+
"NETStandard.Library": "1.5.0-rc2-24027"
77
},
88
"description": "Part of the ExtCore.Data ExtCore framework extension.",
99
"frameworks": {
10-
"dnx451": { },
11-
"dnxcore50": { }
10+
"netstandard1.5": {
11+
"imports": [
12+
"dotnet5.6",
13+
"dnxcore50",
14+
"portable-net45+win8"
15+
]
16+
}
1217
},
13-
"iconUrl": "http://extcore.net/extcore_nuget_icon.png",
14-
"projectUrl": "http://extcore.net/",
15-
"version": "1.0.0-alpha7"
18+
"packOptions": {
19+
"iconUrl": "http://extcore.net/extcore_nuget_icon.png",
20+
"projectUrl": "http://extcore.net/"
21+
},
22+
"version": "1.0.0-alpha8"
1623
}

src/ExtCore.Data.EntityFramework.PostgreSql/ExtCore.Data.EntityFramework.PostgreSql.xproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<ProjectGuid>6e76b6c3-26bd-4de9-bc39-279d3c765113</ProjectGuid>
1010
<RootNamespace>ExtCore.Data.EntityFramework.PostgreSql</RootNamespace>
1111
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">..\..\artifacts\obj\$(MSBuildProjectName)</BaseIntermediateOutputPath>
12-
<OutputPath Condition="'$(OutputPath)'=='' ">..\..\artifacts\bin\$(MSBuildProjectName)\</OutputPath>
12+
<OutputPath Condition="'$(OutputPath)'=='' ">.\bin\</OutputPath>
1313
</PropertyGroup>
1414
<PropertyGroup>
1515
<SchemaVersion>2.0</SchemaVersion>

src/ExtCore.Data.EntityFramework.PostgreSql/IModelRegistrar.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright © 2015 Dmitry Sikorsky. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

4-
using Microsoft.Data.Entity;
4+
using Microsoft.EntityFrameworkCore;
55

66
namespace ExtCore.Data.EntityFramework.PostgreSql
77
{

src/ExtCore.Data.EntityFramework.PostgreSql/RepositoryBase.cs

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

44
using ExtCore.Data.Abstractions;
55
using ExtCore.Data.Models.Abstractions;
6-
using Microsoft.Data.Entity;
6+
using Microsoft.EntityFrameworkCore;
77

88
namespace ExtCore.Data.EntityFramework.PostgreSql
99
{

src/ExtCore.Data.EntityFramework.PostgreSql/StorageContext.cs

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

44
using ExtCore.Data.Abstractions;
55
using ExtCore.Infrastructure;
6-
using Microsoft.Data.Entity;
6+
using Microsoft.EntityFrameworkCore;
77

88
namespace ExtCore.Data.EntityFramework.PostgreSql
99
{

0 commit comments

Comments
 (0)