2023-04-23 18:03:52 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2023-11-27 10:26:16 +00:00
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2023-04-23 18:03:52 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-02-04 09:15:08 +00:00
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design">
|
2023-04-23 18:03:52 +00:00
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2024-02-04 09:15:08 +00:00
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite.Design" />
|
2023-04-23 18:03:52 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-02-02 17:49:40 +00:00
|
|
|
<ProjectReference Include="..\..\..\src\modules\Elsa.EntityFrameworkCore\Elsa.EntityFrameworkCore.csproj" />
|
2023-04-23 18:03:52 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-07-24 12:30:39 +00:00
|
|
|
<!--Overridden for vulnerability reasons with dependencies referencing older versions.-->
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="System.Net.Http" />
|
|
|
|
|
<PackageReference Include="System.Text.RegularExpressions" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-04-23 18:03:52 +00:00
|
|
|
</Project>
|