Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
# Conflicts:
#	sample/MyAbpApp/src/MyAbpApp.Web/MyAbpApp.Web.csproj
  • Loading branch information
gdlcf88 committed Dec 29, 2021
2 parents 35ff330 + f123568 commit 03f3b29
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion sample/MyAbpApp/src/MyAbpApp.DbMigrator/appsettings.json
@@ -1,6 +1,6 @@
{
"ConnectionStrings": {
"Default": "Server=(LocalDb)\\MSSQLLocalDB;Database=MyAbpApp;Trusted_Connection=True;MultipleActiveResultSets=true"
"Default": "Server=(LocalDb)\\MSSQLLocalDB;Database=MyAbpApp;Trusted_Connection=True"
},
"IdentityServer": {
"Clients": {
Expand Down
2 changes: 0 additions & 2 deletions sample/MyAbpApp/src/MyAbpApp.Web/MyAbpApp.Web.csproj
Expand Up @@ -33,10 +33,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.10.9" />
<PackageReference Include="Serilog.AspNetCore" Version="3.2.0" />
<PackageReference Include="Serilog.Sinks.Async" Version="1.5.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.*" />
</ItemGroup>

<ItemGroup>
Expand Down
1 change: 1 addition & 0 deletions sample/MyAbpApp/src/MyAbpApp.Web/MyAbpAppWebModule.cs
Expand Up @@ -226,6 +226,7 @@ public override void OnApplicationInitialization(ApplicationInitializationContex
app.UseMultiTenancy();
}

app.UseUnitOfWork();
app.UseIdentityServer();
app.UseAuthorization();
app.UseSwagger();
Expand Down
2 changes: 1 addition & 1 deletion sample/MyAbpApp/src/MyAbpApp.Web/appsettings.json
Expand Up @@ -3,7 +3,7 @@
"SelfUrl": "https://localhost:44336"
},
"ConnectionStrings": {
"Default": "Server=(LocalDb)\\MSSQLLocalDB;Database=MyAbpApp;Trusted_Connection=True;MultipleActiveResultSets=true"
"Default": "Server=(LocalDb)\\MSSQLLocalDB;Database=MyAbpApp;Trusted_Connection=True"
},
"AuthServer": {
"Authority": "https://localhost:44336",
Expand Down

0 comments on commit 03f3b29

Please sign in to comment.