Skip to content

Commit efc5040

Browse files
Merge pull request #100 from Genocs/ver_600
v6.2.0
2 parents 863e6ba + 328f67e commit efc5040

File tree

62 files changed

+847
-227
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+847
-227
lines changed

.github/workflows/dockerhub-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
description: "Image Version"
1414

1515
# Default value if no value is explicitly provided
16-
default: "6.1.0"
16+
default: "6.2.0"
1717

1818
# Input has to be provided for the workflow to run
1919
required: true

.github/workflows/nuget-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
description: "Packages Version"
1414

1515
# Default value if no value is explicitly provided
16-
default: "6.1.0"
16+
default: "6.2.0"
1717

1818
# Input has to be provided for the workflow to run
1919
required: true

CHANGELOG.md

Lines changed: 284 additions & 0 deletions
Large diffs are not rendered by default.

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
</PropertyGroup>
2222

2323
<ItemGroup>
24-
<PackageReference Include="Roslynator.Analyzers" Version="4.12.7">
24+
<PackageReference Include="Roslynator.Analyzers" Version="4.12.8">
2525
<PrivateAssets>all</PrivateAssets>
2626
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2727
</PackageReference>
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
// Get the resource group location
2+
param location string = 'East US'
3+
4+
@description('The name of you Web Site.')
5+
param webSiteName string = 'gnx-website'
6+
7+
param uniqueString string = '{uniqueString(resourceGroup().id)}'
8+
9+
// Generate a unique storage account name
10+
param storageAccountName string = 'helloworldstorage${uniqueString}'
11+
12+
// Create a storage account
13+
resource storageAccount 'Microsoft.Storage/storageAccounts@2023-05-01' = {
14+
name: storageAccountName
15+
location: location
16+
sku: {
17+
name: 'Standard_LRS'
18+
}
19+
kind: 'StorageV2'
20+
properties: {
21+
accessTier: 'Hot'
22+
}
23+
}
24+
25+
// Create an App Service Plan
26+
resource appServicePlan 'Microsoft.Web/serverfarms@2023-12-01' = {
27+
name: 'asp-${uniqueString}'
28+
location: location
29+
sku: {
30+
name: 'F1'
31+
tier: 'Free'
32+
}
33+
}
34+
35+
// Create a web app
36+
resource webApp 'Microsoft.Web/sites@2023-12-01' = {
37+
name: webSiteName
38+
location: location
39+
properties: {
40+
serverFarmId: appServicePlan.id
41+
siteConfig: {
42+
appSettings: [
43+
{
44+
name: 'STORAGE_ACCOUNT_NAME'
45+
value: storageAccount.name
46+
}
47+
]
48+
}
49+
}
50+
}

src/Genocs.Auth/Genocs.Auth.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
<Title>The authorization library useful to build .NET Core projects.</Title>
99
<Description>The authorization library useful to build .NET Core projects.</Description>
1010
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
11-
<Version>6.1.0</Version>
11+
<Version>6.2.0</Version>
1212
<MinClientVersion>5.0.0</MinClientVersion>
1313
<Authors>Nocco Giovanni Emanuele</Authors>
14-
<PackageTags>aggregate architecture boilerplate ddd ddd-architecture design-patterns domain-driven-design dotnet dotnetcore dotnet-core microservice microservices solid solid-principles</PackageTags>
14+
<PackageTags>microservice microservices solid solid-principles authentication genocs</PackageTags>
1515
<PackageReadmeFile>README_NUGET.md</PackageReadmeFile>
1616
<PackageReleaseNotes>Aligned to the ecosystem</PackageReleaseNotes>
1717
<EnableNETAnalyzers>True</EnableNETAnalyzers>
@@ -40,8 +40,8 @@
4040
</ItemGroup>
4141

4242
<ItemGroup Condition="'$(Configuration)' == 'Release'">
43-
<PackageReference Include="Genocs.Core" Version="6.1.*" />
44-
<PackageReference Include="Genocs.Security" Version="6.1.*" />
43+
<PackageReference Include="Genocs.Core" Version="6.2.0" />
44+
<PackageReference Include="Genocs.Security" Version="6.2.0" />
4545
</ItemGroup>
4646

4747
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">

src/Genocs.Common/Genocs.Common.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
<Title>The Genocs Library - Common components.</Title>
99
<Description>The common components to build .NET Core projects along with Genocs Library.</Description>
1010
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
11-
<Version>6.1.0</Version>
11+
<Version>6.2.0</Version>
1212
<MinClientVersion>5.0.0</MinClientVersion>
1313
<Authors>Nocco Giovanni Emanuele</Authors>
14-
<PackageTags>aggregate architecture boilerplate ddd ddd-architecture design-patterns domain-driven-design dotnet dotnetcore dotnet-core microservice microservices solid solid-principles</PackageTags>
14+
<PackageTags>microservice microservices solid solid-principles genocs</PackageTags>
1515
<PackageReadmeFile>README_NUGET.md</PackageReadmeFile>
1616
<PackageReleaseNotes>Aligned to the ecosystem</PackageReleaseNotes>
1717
<EnableNETAnalyzers>True</EnableNETAnalyzers>

src/Genocs.Core.Demo.Contracts/Genocs.Core.Demo.Contracts.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</ItemGroup>
1212

1313
<ItemGroup Condition="'$(Configuration)' == 'Release'">
14-
<PackageReference Include="Genocs.Core" Version="6.1.*" />
14+
<PackageReference Include="Genocs.Core" Version="6.2.0" />
1515
</ItemGroup>
1616

1717
</Project>

src/Genocs.Core.Demo.Domain/Genocs.Core.Demo.Domain.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
</ItemGroup>
1313

1414
<ItemGroup Condition="'$(Configuration)' == 'Release'">
15-
<PackageReference Include="Genocs.Persistence.MongoDb" Version="6.1.*" />
16-
<PackageReference Include="Genocs.Core" Version="6.1.*" />
15+
<PackageReference Include="Genocs.Persistence.MongoDb" Version="6.2.0" />
16+
<PackageReference Include="Genocs.Core" Version="6.2.0" />
1717
</ItemGroup>
1818

1919
</Project>

src/Genocs.Core.Demo.WebApi/Genocs.Core.Demo.WebApi.csproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@
2121
</ItemGroup>
2222

2323
<ItemGroup Condition="'$(Configuration)' == 'Release'">
24-
<PackageReference Include="Genocs.ServiceBusAzure" Version="6.1.*" />
25-
<PackageReference Include="Genocs.Core" Version="6.1.*" />
26-
<PackageReference Include="Genocs.Auth" Version="6.1.*" />
27-
<PackageReference Include="Genocs.Logging" Version="6.1.*" />
28-
<PackageReference Include="Genocs.Tracing" Version="6.1.*" />
29-
<PackageReference Include="Genocs.HTTP" Version="6.1.*" />
30-
<PackageReference Include="Genocs.Security" Version="6.1.*" />
31-
<PackageReference Include="Genocs.WebApi.Security" Version="6.1.*" />
24+
<PackageReference Include="Genocs.ServiceBusAzure" Version="6.2.0" />
25+
<PackageReference Include="Genocs.Core" Version="6.2.0" />
26+
<PackageReference Include="Genocs.Auth" Version="6.2.0" />
27+
<PackageReference Include="Genocs.Logging" Version="6.2.0" />
28+
<PackageReference Include="Genocs.Tracing" Version="6.2.0" />
29+
<PackageReference Include="Genocs.HTTP" Version="6.2.0" />
30+
<PackageReference Include="Genocs.Security" Version="6.2.0" />
31+
<PackageReference Include="Genocs.WebApi.Security" Version="6.2.0" />
3232
</ItemGroup>
3333

3434
<ItemGroup>

0 commit comments

Comments
 (0)