71 lines
2.3 KiB
XML
71 lines
2.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<AssemblyOriginatorKeyFile>..\LiteCharms.snk</AssemblyOriginatorKeyFile>
|
|
<BlazorDisableThrowNavigationException>true</BlazorDisableThrowNavigationException>
|
|
<UserSecretsId>b929455a-ec27-42f9-bd54-3d54059c01bb</UserSecretsId>
|
|
</PropertyGroup>
|
|
|
|
<!-- file nesting -->
|
|
<ItemGroup>
|
|
<ProjectCapability Include="ConfigurableFileNesting" />
|
|
<ProjectCapability Include="ConfigurableFileNestingFeatureEnabled" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="LiteCharms.Features" Version="1.34.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.QuickGrid" Version="10.0.8" />
|
|
<PackageReference Include="Polly" Version="8.6.6" />
|
|
</ItemGroup>
|
|
|
|
<!-- Authentication-->
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="10.0.8" />
|
|
|
|
<!-- Global Usings -->
|
|
<Using Include="Microsoft.AspNetCore.Authentication.Cookies" />
|
|
<Using Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" />
|
|
</ItemGroup>
|
|
|
|
<!-- UI -->
|
|
<ItemGroup>
|
|
<PackageReference Include="ANM.Blazored.Toast" Version="0.1.1" />
|
|
|
|
<!-- Global Usings -->
|
|
<Using Include="Blazored.Toast.Services" />
|
|
</ItemGroup>
|
|
|
|
<!-- CQRS -->
|
|
<ItemGroup>
|
|
<PackageReference Include="Mediator.SourceGenerator" Version="3.0.2">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
|
|
<!-- Global Usings -->
|
|
<Using Include="FluentResults" />
|
|
<Using Include="Mediator" />
|
|
<Using Include="Quartz" />
|
|
</ItemGroup>
|
|
|
|
<!-- Health Checks -->
|
|
<ItemGroup>
|
|
<Using Include="Microsoft.AspNetCore.Diagnostics.HealthChecks" />
|
|
</ItemGroup>
|
|
|
|
<!-- Shared Global Usings -->
|
|
<ItemGroup>
|
|
<Using Include="Microsoft.AspNetCore.Components.QuickGrid" />
|
|
<Using Include="Microsoft.AspNetCore.HttpOverrides" />
|
|
<Using Include="Microsoft.AspNetCore.Authentication" />
|
|
<Using Include="Blazored.Toast" />
|
|
<Using Include="Quartz" />
|
|
<Using Include="Mediator" />
|
|
<Using Include="Microsoft.AspNetCore.Diagnostics.HealthChecks" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|