forked from emonney/QuickApp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Code cleanup, package updates, minor config updates
- Loading branch information
Showing
30 changed files
with
1,463 additions
and
2,352 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 3 additions & 9 deletions
12
...ations/20240108031109_Initial.Designer.cs → ...ations/20240208224137_Initial.Designer.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
7 changes: 1 addition & 6 deletions
7
...rver/Migrations/20240108031109_Initial.cs → ...rver/Migrations/20240208224137_Initial.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,4 @@ | ||
// --------------------------------------- | ||
// Email: [email protected] | ||
// Templates: www.ebenmonney.com/templates | ||
// (c) 2024 www.ebenmonney.com/mit-license | ||
// --------------------------------------- | ||
|
||
using System; | ||
using Microsoft.EntityFrameworkCore.Migrations; | ||
|
||
#nullable disable | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,4 @@ | ||
// --------------------------------------- | ||
// Email: [email protected] | ||
// Templates: www.ebenmonney.com/templates | ||
// (c) 2024 www.ebenmonney.com/mit-license | ||
// --------------------------------------- | ||
|
||
// <auto-generated /> | ||
// <auto-generated /> | ||
using System; | ||
using Microsoft.EntityFrameworkCore; | ||
using Microsoft.EntityFrameworkCore.Infrastructure; | ||
|
@@ -23,7 +17,7 @@ protected override void BuildModel(ModelBuilder modelBuilder) | |
{ | ||
#pragma warning disable 612, 618 | ||
modelBuilder | ||
.HasAnnotation("ProductVersion", "8.0.0") | ||
.HasAnnotation("ProductVersion", "8.0.1") | ||
.HasAnnotation("Relational:MaxIdentifierLength", 128); | ||
|
||
SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,55 @@ | ||
<Project Sdk="Microsoft.NET.Sdk.Web"> | ||
<Project Sdk="Microsoft.NET.Sdk.Web"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<Nullable>enable</Nullable> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<InvariantGlobalization>false</InvariantGlobalization> | ||
<SpaRoot>..\quickapp.client</SpaRoot> | ||
<SpaProxyLaunchCommand>npm start</SpaProxyLaunchCommand> | ||
<SpaProxyServerUrl>https://localhost:4200</SpaProxyServerUrl> | ||
<Version>8.0.0</Version> | ||
<Company>www.ebenmonney.com</Company> | ||
<Authors>$(Company)</Authors> | ||
<Description>ASPNET Core 8.0 - Angular 17 startup template for Quick Application Development</Description> | ||
<Copyright>Copyright © 2023 www.ebenmonney.com</Copyright> | ||
<PackageProjectUrl>https://www.ebenmonney.com/quickapp</PackageProjectUrl> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<Nullable>enable</Nullable> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<InvariantGlobalization>false</InvariantGlobalization> | ||
<SpaRoot>..\quickapp.client</SpaRoot> | ||
<SpaProxyLaunchCommand>npm start</SpaProxyLaunchCommand> | ||
<SpaProxyServerUrl>https://localhost:4200</SpaProxyServerUrl> | ||
<Version>8.0.0</Version> | ||
<Company>www.ebenmonney.com</Company> | ||
<Authors>$(Company)</Authors> | ||
<Description>ASPNET Core 8.0 - Angular 17 startup template for Quick Application Development</Description> | ||
<Copyright>Copyright © 2023 www.ebenmonney.com</Copyright> | ||
<PackageProjectUrl>https://www.ebenmonney.com/quickapp</PackageProjectUrl> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="AutoMapper" Version="12.0.1" /> | ||
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="12.0.1" /> | ||
<PackageReference Include="FluentValidation.AspNetCore" Version="11.3.0" /> | ||
<PackageReference Include="MailKit" Version="4.3.0" /> | ||
<PackageReference Include="OpenIddict.AspNetCore" Version="5.0.1" /> | ||
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="5.0.1" /> | ||
<PackageReference Include="OpenIddict.Quartz" Version="5.0.1" /> | ||
<PackageReference Include="Quartz.Extensions.Hosting" Version="3.8.0" /> | ||
<PackageReference Include="Serilog.Extensions.Logging.File" Version="3.0.0" /> | ||
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" /> | ||
<PackageReference Include="Microsoft.AspNetCore.JsonPatch" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.AspNetCore.SpaProxy"> | ||
<Version>8.*-*</Version> | ||
</PackageReference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="AutoMapper" Version="12.0.1" /> | ||
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="12.0.1" /> | ||
<PackageReference Include="FluentValidation.AspNetCore" Version="11.3.0" /> | ||
<PackageReference Include="MailKit" Version="4.3.0" /> | ||
<PackageReference Include="OpenIddict.AspNetCore" Version="5.1.0" /> | ||
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="5.1.0" /> | ||
<PackageReference Include="OpenIddict.Quartz" Version="5.1.0" /> | ||
<PackageReference Include="Quartz.Extensions.Hosting" Version="3.8.0" /> | ||
<PackageReference Include="Serilog.Extensions.Logging.File" Version="3.0.0" /> | ||
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" /> | ||
<PackageReference Include="Microsoft.AspNetCore.JsonPatch" Version="8.0.1" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.1" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.1" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.1"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.AspNetCore.SpaProxy"> | ||
<Version>8.*-*</Version> | ||
</PackageReference> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\QuickApp.Core\QuickApp.Core.csproj" /> | ||
<ProjectReference Include="..\quickapp.client\quickapp.client.esproj"> | ||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly> | ||
</ProjectReference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\QuickApp.Core\QuickApp.Core.csproj" /> | ||
<ProjectReference Include="..\quickapp.client\quickapp.client.esproj"> | ||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly> | ||
</ProjectReference> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Update="Services\Email\*.template"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Update="Services\Email\*.template"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.