Skip to content

Commit 115810d

Browse files
committed
merged
2 parents 166b91e + f97962a commit 115810d

File tree

17 files changed

+28
-312
lines changed

17 files changed

+28
-312
lines changed

src/AbpCompanyName.AbpProjectName.Application/project.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@
33

44
"dependencies": {
55
"AbpCompanyName.AbpProjectName.Core": "1.0.0.0-*",
6-
"Abp.EntityFrameworkCore": "0.11.3",
7-
"Abp.AutoMapper": "0.11.3",
8-
"Abp.Zero": "0.11.2",
96
"AutoMapper": "5.1.1",
107
"Castle.Core": "3.3.3",
118
"Castle.LoggingFacility": "3.3.0",
129
"Castle.Windsor": "3.3.0",
1310
"Microsoft.AspNet.Identity.Core": "2.2.1",
1411
"Newtonsoft.Json": "9.0.1",
1512
"Nito.AsyncEx": "3.0.1",
16-
"System.Collections.Immutable": "1.2.0"
13+
"System.Collections.Immutable": "1.2.0",
14+
"Abp.AutoMapper": "0.12.0",
15+
"Abp.EntityFrameworkCore": "0.12.0",
16+
"Abp.Zero": "0.12.0"
1717
},
1818

1919
"frameworks": {

src/AbpCompanyName.AbpProjectName.Core/project.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
"version": "1.0.0.0-*",
33

44
"dependencies": {
5-
"Abp": "0.11.3",
6-
"Abp.Zero": "0.11.2",
75
"Castle.Core": "3.3.3",
86
"Castle.LoggingFacility": "3.3.0",
97
"Castle.Windsor": "3.3.0",
@@ -13,7 +11,9 @@
1311
"System.Collections.Immutable": "1.2.0",
1412
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
1513
"Microsoft.Extensions.Configuration.Json": "1.0.0",
16-
"Microsoft.Extensions.Configuration.UserSecrets": "1.0.0"
14+
"Microsoft.Extensions.Configuration.UserSecrets": "1.0.0",
15+
"Abp": "0.12.0",
16+
"Abp.Zero": "0.12.0"
1717
},
1818

1919
"frameworks": {

src/AbpCompanyName.AbpProjectName.EntityFramework/EntityFramework/AbpProjectNameDbContext.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
namespace AbpCompanyName.AbpProjectName.EntityFramework
1212
{
13-
[DbConfigurationType(typeof(AbpZeroTemplateDbConfiguration))]
13+
[DbConfigurationType(typeof(AbpProjectNameDbConfiguration))]
1414
public class AbpProjectNameDbContext : AbpZeroDbContext<Tenant, Role, User>
1515
{
1616
/* Define an IDbSet for each entity of the application */
@@ -38,8 +38,8 @@ private static string GetConnectionString()
3838
);
3939
}
4040

41-
/* This constructor is used by ABP to pass connection string defined in AbpZeroTemplateDataModule.PreInitialize.
42-
* Notice that, actually you will not directly create an instance of AbpZeroTemplateDbContext since ABP automatically handles it.
41+
/* This constructor is used by ABP to pass connection string defined in AbpProjectNameDataModule.PreInitialize.
42+
* Notice that, actually you will not directly create an instance of AbpProjectNameDbContext since ABP automatically handles it.
4343
*/
4444
public AbpProjectNameDbContext(string nameOrConnectionString)
4545
: base(nameOrConnectionString)
@@ -55,9 +55,9 @@ public AbpProjectNameDbContext(DbConnection dbConnection)
5555
}
5656
}
5757

58-
public class AbpZeroTemplateDbConfiguration : DbConfiguration
58+
public class AbpProjectNameDbConfiguration : DbConfiguration
5959
{
60-
public AbpZeroTemplateDbConfiguration()
60+
public AbpProjectNameDbConfiguration()
6161
{
6262
SetProviderServices(
6363
"System.Data.SqlClient",

src/AbpCompanyName.AbpProjectName.EntityFramework/project.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@
77
"version": "1.0.0",
88
"type": "build"
99
},
10-
"Abp.Zero.EntityFramework": "0.11.2",
11-
"Abp.EntityFramework": "0.11.3"
12-
},
10+
"Abp.EntityFramework": "0.12.0",
11+
"Abp.Zero.EntityFramework": "0.12.0" },
1312

1413
"tools": {
1514
"Migrator.EF6.Tools": {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"ConnectionStrings": {
3-
"Default": "Server=localhost; Database=AbpZeroTemplateDb; Trusted_Connection=True;"
3+
"Default": "Server=localhost; Database=AbpProjectNameDb; Trusted_Connection=True;"
44
}
55
}

src/AbpCompanyName.AbpProjectName.Migrator/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{
1+
{
22
"version": "1.0.0-*",
33

44
"buildOptions": {
@@ -10,7 +10,7 @@
1010
},
1111

1212
"dependencies": {
13-
"Abp.Castle.Log4Net": "0.11.3",
13+
"Abp.Castle.Log4Net": "0.12.0",
1414
"AbpCompanyName.AbpProjectName.EntityFramework": "1.0.0.0-*"
1515
},
1616

src/AbpCompanyName.AbpProjectName.Web/Controllers/Results/ChallengeResult.cs

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

src/AbpCompanyName.AbpProjectName.Web/Project_Readme.html

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

src/AbpCompanyName.AbpProjectName.Web/Utils/UrlHelper.cs

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

src/AbpCompanyName.AbpProjectName.Web/Views/AbpZeroTemplateRazorPage.cs renamed to src/AbpCompanyName.AbpProjectName.Web/Views/AbpProjectNameRazorPage.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44

55
namespace AbpCompanyName.AbpProjectName.Web.Views
66
{
7-
public abstract class AbpZeroTemplateRazorPage<TModel> : AbpRazorPage<TModel>
7+
public abstract class AbpProjectNameRazorPage<TModel> : AbpRazorPage<TModel>
88
{
99
[RazorInject]
1010
public IAbpSession AbpSession { get; set; }
1111

12-
protected AbpZeroTemplateRazorPage()
12+
protected AbpProjectNameRazorPage()
1313
{
1414
LocalizationSourceName = AbpProjectNameConsts.LocalizationSourceName;
1515
}

0 commit comments

Comments
 (0)