Skip to content

Commit af10233

Browse files
committed
0.0.3-rc updates
1 parent 7cd66da commit af10233

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

Changelogs.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
- Initial release
44

5-
0.0.2-rc - Current Stable Version
5+
0.0.2-rc
66

77
- Migration Refresh
88
- Security Patches
@@ -11,4 +11,8 @@
1111
- Cleaner Code
1212
- Activate / Deactivate Tenants
1313
- Upgrade Tenant Subscription
14-
- Advanced Search
14+
- Advanced Search
15+
16+
0.0.3-rc - Current Stable Version
17+
18+
- Security Patches

DN.WebApi.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<metadata>
44
<id>FullStackHero.WebAPI.Boilerplate</id>
55
<title>FullStackHero WebAPI Boilerplate</title>
6-
<version>0.0.1-rc</version>
6+
<version>0.0.3-rc</version>
77
<authors>Mukesh Murugan</authors>
88
<description>
99
Clean Architecture Template for .NET 6.0 WebAPI built with Multitenancy Support.
@@ -20,6 +20,6 @@
2020
<icon>./content/icon.png</icon>
2121
</metadata>
2222
<files>
23-
<file src=".\**" target="content" exclude="**\bin\**;**\obj\**;**\.git\**;**\.github\**;**\*.user;**\.vs\**;**\.vscode\**;**\Images\**" />
23+
<file src=".\**" target="content" exclude="**\bin\**;**\obj\**;**\.git\**;**\.github\**;**\*.user;**\.vs\**;**\.vscode\**;**\Images\**;**\Logs\**" />
2424
</files>
2525
</package>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This repository contains the WebApi Project of `fullstackhero`.
1919

2020
## Release Planning
2121

22-
### 0.0.2 RC is available now!
22+
### 0.0.3 RC is available now!
2323

2424
- Migration Refresh
2525
- Security Patches

src/Bootstrapper/appsettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
},
3636
"MultitenancySettings": {
3737
"DBProvider": "mssql",
38-
"ConnectionString": "Data Source=(localdb)\\mssqllocaldb;Initial Catalog=fshDemoDb;Integrated Security=True;MultipleActiveResultSets=True"
38+
"ConnectionString": "Data Source=(localdb)\\mssqllocaldb;Initial Catalog=fshApiDb;Integrated Security=True;MultipleActiveResultSets=True"
3939
},
4040
"SwaggerSettings": {
4141
"Enable": true

src/Infrastructure/Persistence/Extensions/MultitenancyExtensions.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,6 @@ private static void SeedRootTenant<T>(T dbContext, MultitenancySettings options)
147147
{
148148
var rootTenant = new Tenant(MultitenancyConstants.Root.Name, MultitenancyConstants.Root.Key, MultitenancyConstants.Root.EmailAddress, options.ConnectionString);
149149
rootTenant.SetValidity(DateTime.UtcNow.AddYears(1));
150-
rootTenant.Activate();
151150
dbContext.Tenants.Add(rootTenant);
152151
dbContext.SaveChangesAsync().Wait();
153152
}

0 commit comments

Comments
 (0)