You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.4 KiB
33 lines
1.4 KiB
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net48;net9.0</TargetFrameworks>
|
|
<TypeScriptEnabled>false</TypeScriptEnabled>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\OpenIddict.AspNetCore\OpenIddict.AspNetCore.csproj" />
|
|
<ProjectReference Include="..\..\src\OpenIddict.EntityFrameworkCore\OpenIddict.EntityFrameworkCore.csproj" />
|
|
<ProjectReference Include="..\..\src\OpenIddict.MongoDb\OpenIddict.MongoDb.csproj" />
|
|
<ProjectReference Include="..\..\src\OpenIddict.Quartz\OpenIddict.Quartz.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" />
|
|
<PackageReference Include="Quartz.Extensions.Hosting" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition=" '$(TargetFrameworkIdentifier)' == '.NETFramework' ">
|
|
<!--
|
|
Note: Microsoft.AspNetCore.Identity is explicitly referenced to override the vulnerable
|
|
2.3.0 version referenced by the Microsoft.AspNetCore.Identity.EntityFrameworkCore package.
|
|
-->
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc" />
|
|
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|