Skip to content

Commit

Permalink
0.0.3-rc updates
Browse files Browse the repository at this point in the history
  • Loading branch information
iammukeshm committed Oct 23, 2021
1 parent 7cd66da commit af10233
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
8 changes: 6 additions & 2 deletions Changelogs.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

- Initial release

0.0.2-rc - Current Stable Version
0.0.2-rc

- Migration Refresh
- Security Patches
Expand All @@ -11,4 +11,8 @@
- Cleaner Code
- Activate / Deactivate Tenants
- Upgrade Tenant Subscription
- Advanced Search
- Advanced Search

0.0.3-rc - Current Stable Version

- Security Patches
4 changes: 2 additions & 2 deletions DN.WebApi.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>
<id>FullStackHero.WebAPI.Boilerplate</id>
<title>FullStackHero WebAPI Boilerplate</title>
<version>0.0.1-rc</version>
<version>0.0.3-rc</version>
<authors>Mukesh Murugan</authors>
<description>
Clean Architecture Template for .NET 6.0 WebAPI built with Multitenancy Support.
Expand All @@ -20,6 +20,6 @@
<icon>./content/icon.png</icon>
</metadata>
<files>
<file src=".\**" target="content" exclude="**\bin\**;**\obj\**;**\.git\**;**\.github\**;**\*.user;**\.vs\**;**\.vscode\**;**\Images\**" />
<file src=".\**" target="content" exclude="**\bin\**;**\obj\**;**\.git\**;**\.github\**;**\*.user;**\.vs\**;**\.vscode\**;**\Images\**;**\Logs\**" />
</files>
</package>
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ This repository contains the WebApi Project of `fullstackhero`.

## Release Planning

### 0.0.2 RC is available now!
### 0.0.3 RC is available now!

- Migration Refresh
- Security Patches
Expand Down
2 changes: 1 addition & 1 deletion src/Bootstrapper/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
},
"MultitenancySettings": {
"DBProvider": "mssql",
"ConnectionString": "Data Source=(localdb)\\mssqllocaldb;Initial Catalog=fshDemoDb;Integrated Security=True;MultipleActiveResultSets=True"
"ConnectionString": "Data Source=(localdb)\\mssqllocaldb;Initial Catalog=fshApiDb;Integrated Security=True;MultipleActiveResultSets=True"
},
"SwaggerSettings": {
"Enable": true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,6 @@ private static void SeedRootTenant<T>(T dbContext, MultitenancySettings options)
{
var rootTenant = new Tenant(MultitenancyConstants.Root.Name, MultitenancyConstants.Root.Key, MultitenancyConstants.Root.EmailAddress, options.ConnectionString);
rootTenant.SetValidity(DateTime.UtcNow.AddYears(1));
rootTenant.Activate();
dbContext.Tenants.Add(rootTenant);
dbContext.SaveChangesAsync().Wait();
}
Expand Down

0 comments on commit af10233

Please sign in to comment.