mirror of
https://github.com/fergalmoran/SilkierQuartz.git
synced 2025-12-22 09:37:56 +00:00
but a middleware was not found that supports authorization.
Configure your application startup by adding app.UseAuthorization() inside the call to Configure(..) in
the application startup code. The call to app.UseAuthorization() must appear between app.UseRouting()
and app.UseEndpoints(...).
14 lines
254 B
XML
14 lines
254 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\Quartzmin\Quartzmin.csproj" />
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|