Merge branch 'rel-7.0' into Password-Show-Hiden-Feature-10076

pull/14648/head
malik masis 3 years ago
commit 3c54a90ea6

@ -1,7 +1,7 @@
<Project> <Project>
<PropertyGroup> <PropertyGroup>
<LangVersion>latest</LangVersion> <LangVersion>latest</LangVersion>
<Version>7.0.0-rc.1</Version> <Version>7.0.0-rc.2</Version>
<NoWarn>$(NoWarn);CS1591;CS0436</NoWarn> <NoWarn>$(NoWarn);CS1591;CS0436</NoWarn>
<PackageIconUrl>https://abp.io/assets/abp_nupkg.png</PackageIconUrl> <PackageIconUrl>https://abp.io/assets/abp_nupkg.png</PackageIconUrl>
<PackageProjectUrl>https://abp.io/</PackageProjectUrl> <PackageProjectUrl>https://abp.io/</PackageProjectUrl>

@ -19,7 +19,7 @@
"@abp/ng.setting-management": "~7.0.0-rc.1", "@abp/ng.setting-management": "~7.0.0-rc.1",
"@abp/ng.tenant-management": "~7.0.0-rc.1", "@abp/ng.tenant-management": "~7.0.0-rc.1",
"@abp/ng.theme.shared": "~7.0.0-rc.1", "@abp/ng.theme.shared": "~7.0.0-rc.1",
"@abp/ng.theme.lepton-x": "~2.0.0-preview20221014", "@abp/ng.theme.lepton-x": "~2.0.0-rc.1",
"@angular/animations": "^14.2.1", "@angular/animations": "^14.2.1",
"@angular/common": "^14.2.1", "@angular/common": "^14.2.1",
"@angular/compiler": "^14.2.1", "@angular/compiler": "^14.2.1",

@ -55,7 +55,7 @@ public class Program
} }
catch (Exception ex) catch (Exception ex)
{ {
if (ex.GetType().Name.Equals("StopTheHostException", StringComparison.Ordinal)) if (ex is HostAbortedException)
{ {
throw; throw;
} }

@ -3,6 +3,6 @@
"name": "my-app", "name": "my-app",
"private": true, "private": true,
"dependencies": { "dependencies": {
"@abp/aspnetcore.components.server.leptonxlitetheme": "~2.0.0-preview20221014" "@abp/aspnetcore.components.server.leptonxlitetheme": "~2.0.0-rc.1"
} }
} }

@ -60,7 +60,7 @@ public class Program
} }
catch (Exception ex) catch (Exception ex)
{ {
if (ex.GetType().Name.Equals("StopTheHostException", StringComparison.Ordinal)) if (ex is HostAbortedException)
{ {
throw; throw;
} }

@ -3,7 +3,7 @@
"name": "my-app", "name": "my-app",
"private": true, "private": true,
"dependencies": { "dependencies": {
"@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.0.0-preview20221014", "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.0.0-rc.1",
"@abp/aspnetcore.components.server.leptonxlitetheme": "~2.0.0-preview20221014" "@abp/aspnetcore.components.server.leptonxlitetheme": "~2.0.0-rc.1"
} }
} }

@ -55,7 +55,7 @@ public class Program
} }
catch (Exception ex) catch (Exception ex)
{ {
if (ex.GetType().Name.Equals("StopTheHostException", StringComparison.Ordinal)) if (ex is HostAbortedException)
{ {
throw; throw;
} }

@ -3,6 +3,6 @@
"name": "my-app", "name": "my-app",
"private": true, "private": true,
"dependencies": { "dependencies": {
"@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.0.0-preview20221014" "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.0.0-rc.1"
} }
} }

@ -60,7 +60,7 @@ public class Program
} }
catch (Exception ex) catch (Exception ex)
{ {
if (ex.GetType().Name.Equals("StopTheHostException", StringComparison.Ordinal)) if (ex is HostAbortedException)
{ {
throw; throw;
} }

@ -3,6 +3,6 @@
"name": "my-app", "name": "my-app",
"private": true, "private": true,
"dependencies": { "dependencies": {
"@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.0.0-preview20221014" "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.0.0-rc.1"
} }
} }

@ -55,7 +55,7 @@ public class Program
} }
catch (Exception ex) catch (Exception ex)
{ {
if (ex.GetType().Name.Equals("StopTheHostException", StringComparison.Ordinal)) if (ex is HostAbortedException)
{ {
throw; throw;
} }

@ -3,6 +3,6 @@
"name": "my-app", "name": "my-app",
"private": true, "private": true,
"dependencies": { "dependencies": {
"@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.0.0-preview20221014" "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.0.0-rc.1"
} }
} }

@ -60,7 +60,7 @@ public class Program
} }
catch (Exception ex) catch (Exception ex)
{ {
if (ex.GetType().Name.Equals("StopTheHostException", StringComparison.Ordinal)) if (ex is HostAbortedException)
{ {
throw; throw;
} }

@ -3,6 +3,6 @@
"name": "my-app", "name": "my-app",
"private": true, "private": true,
"dependencies": { "dependencies": {
"@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.0.0-preview20221014" "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.0.0-rc.1"
} }
} }

@ -19,7 +19,7 @@
"@abp/ng.setting-management": "~7.0.0-rc.1", "@abp/ng.setting-management": "~7.0.0-rc.1",
"@abp/ng.tenant-management": "~7.0.0-rc.1", "@abp/ng.tenant-management": "~7.0.0-rc.1",
"@abp/ng.theme.shared": "~7.0.0-rc.1", "@abp/ng.theme.shared": "~7.0.0-rc.1",
"@abp/ng.theme.lepton-x": "~2.0.0-preview20221014", "@abp/ng.theme.lepton-x": "~2.0.0-rc.1",
"@angular/animations": "^14.2.1", "@angular/animations": "^14.2.1",
"@angular/common": "^14.2.1", "@angular/common": "^14.2.1",
"@angular/compiler": "^14.2.1", "@angular/compiler": "^14.2.1",

@ -3,6 +3,6 @@
"name": "my-app-authserver", "name": "my-app-authserver",
"private": true, "private": true,
"dependencies": { "dependencies": {
"@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.0.0-preview20221014" "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.0.0-rc.1"
} }
} }

@ -3,7 +3,7 @@
"name": "my-app", "name": "my-app",
"private": true, "private": true,
"dependencies": { "dependencies": {
"@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.0.0-preview20221014", "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.0.0-rc.1",
"@abp/aspnetcore.components.server.leptonxlitetheme": "~2.0.0-preview20221014" "@abp/aspnetcore.components.server.leptonxlitetheme": "~2.0.0-rc.1"
} }
} }

@ -3,7 +3,7 @@
"name": "my-app", "name": "my-app",
"private": true, "private": true,
"dependencies": { "dependencies": {
"@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.0.0-preview20221014", "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.0.0-rc.1",
"@abp/aspnetcore.components.server.leptonxlitetheme": "~2.0.0-preview20221014" "@abp/aspnetcore.components.server.leptonxlitetheme": "~2.0.0-rc.1"
} }
} }

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -8,7 +8,7 @@
<base href="/" /> <base href="/" />
<!--ABP:Styles--> <!--ABP:Styles-->
<link href="global.css?_v=638036140263987806" rel="stylesheet"/> <link href="global.css?_v=638042184565255290" rel="stylesheet"/>
<link href="main.css" rel="stylesheet"/> <link href="main.css" rel="stylesheet"/>
<!--/ABP:Styles--> <!--/ABP:Styles-->
<link href="MyCompanyName.MyProjectName.Blazor.styles.css" rel="stylesheet"/> <link href="MyCompanyName.MyProjectName.Blazor.styles.css" rel="stylesheet"/>
@ -29,7 +29,7 @@
</div> </div>
<!--ABP:Scripts--> <!--ABP:Scripts-->
<script src="global.js?_v=638036140265768416"></script> <script src="global.js?_v=638042184568471262"></script>
<!--/ABP:Scripts--> <!--/ABP:Scripts-->
<!-- <TEMPLATE-REMOVE IF-NOT='PWA'> --> <!-- <TEMPLATE-REMOVE IF-NOT='PWA'> -->

@ -3,6 +3,6 @@
"name": "my-app", "name": "my-app",
"private": true, "private": true,
"dependencies": { "dependencies": {
"@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.0.0-preview20221014" "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.0.0-rc.1"
} }
} }

@ -3,6 +3,6 @@
"name": "my-app", "name": "my-app",
"private": true, "private": true,
"dependencies": { "dependencies": {
"@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.0.0-preview20221014" "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.0.0-rc.1"
} }
} }

@ -3,6 +3,6 @@
"name": "my-app", "name": "my-app",
"private": true, "private": true,
"dependencies": { "dependencies": {
"@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.0.0-preview20221014" "@abp/aspnetcore.mvc.ui.theme.leptonxlite": "~2.0.0-rc.1"
} }
} }

@ -8,7 +8,7 @@
<base href="/" /> <base href="/" />
<!--ABP:Styles--> <!--ABP:Styles-->
<link href="global.css?_v=638036140548899053" rel="stylesheet"/> <link href="global.css?_v=638042184864919740" rel="stylesheet"/>
<link href="main.css" rel="stylesheet"/> <link href="main.css" rel="stylesheet"/>
<!--/ABP:Styles--> <!--/ABP:Styles-->
</head> </head>
@ -22,7 +22,7 @@
</div> </div>
<!--ABP:Scripts--> <!--ABP:Scripts-->
<script src="global.js?_v=638036140549851619"></script> <script src="global.js?_v=638042184865781315"></script>
<!--/ABP:Scripts--> <!--/ABP:Scripts-->
</body> </body>
</html> </html>

Loading…
Cancel
Save