2022-05-26 10:47:31 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2023-01-05 12:55:08 +00:00
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
2022-05-26 10:47:31 +00:00
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
2022-08-26 19:59:17 +00:00
|
|
|
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
2022-11-03 20:40:23 +00:00
|
|
|
<IsPackable>false</IsPackable>
|
2022-05-26 10:47:31 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-09-23 17:41:37 +00:00
|
|
|
<ProjectReference Include="..\..\common\Elsa.DropIns\Elsa.DropIns.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Elsa\Elsa.csproj"/>
|
|
|
|
|
<ProjectReference Include="..\..\modules\Elsa.Dapper.Migrations\Elsa.Dapper.Migrations.csproj"/>
|
|
|
|
|
<ProjectReference Include="..\..\modules\Elsa.Dapper\Elsa.Dapper.csproj"/>
|
|
|
|
|
<ProjectReference Include="..\..\modules\Elsa.EntityFrameworkCore.SqlServer\Elsa.EntityFrameworkCore.SqlServer.csproj"/>
|
|
|
|
|
<ProjectReference Include="..\..\modules\Elsa.Elasticsearch\Elsa.Elasticsearch.csproj"/>
|
|
|
|
|
<ProjectReference Include="..\..\modules\Elsa.Email\Elsa.Email.csproj"/>
|
|
|
|
|
<ProjectReference Include="..\..\modules\Elsa.EntityFrameworkCore.PostgreSql\Elsa.EntityFrameworkCore.PostgreSql.csproj"/>
|
|
|
|
|
<ProjectReference Include="..\..\modules\Elsa.EntityFrameworkCore.Sqlite\Elsa.EntityFrameworkCore.Sqlite.csproj"/>
|
|
|
|
|
<ProjectReference Include="..\..\modules\Elsa.EntityFrameworkCore\Elsa.EntityFrameworkCore.csproj"/>
|
|
|
|
|
<ProjectReference Include="..\..\modules\Elsa.Environments\Elsa.Environments.csproj"/>
|
|
|
|
|
<ProjectReference Include="..\..\modules\Elsa.MassTransit\Elsa.MassTransit.csproj"/>
|
|
|
|
|
<ProjectReference Include="..\..\modules\Elsa.MongoDb\Elsa.MongoDb.csproj"/>
|
|
|
|
|
<ProjectReference Include="..\..\modules\Elsa.ProtoActor\Elsa.ProtoActor.csproj"/>
|
|
|
|
|
<ProjectReference Include="..\..\modules\Elsa.Identity\Elsa.Identity.csproj"/>
|
|
|
|
|
<ProjectReference Include="..\..\modules\Elsa.ProtoActor.Cluster.AzureContainerApps\Elsa.ProtoActor.Cluster.AzureContainerApps.csproj"/>
|
|
|
|
|
<ProjectReference Include="..\..\modules\Elsa.WorkflowProviders.BlobStorage\Elsa.WorkflowProviders.BlobStorage.csproj"/>
|
|
|
|
|
<ProjectReference Include="..\..\modules\Elsa.Hangfire\Elsa.Hangfire.csproj"/>
|
|
|
|
|
<ProjectReference Include="..\..\modules\Elsa.Http\Elsa.Http.csproj"/>
|
|
|
|
|
<ProjectReference Include="..\..\modules\Elsa.Labels\Elsa.Labels.csproj"/>
|
|
|
|
|
<ProjectReference Include="..\..\modules\Elsa.Liquid\Elsa.Liquid.csproj"/>
|
|
|
|
|
<ProjectReference Include="..\..\modules\Elsa.Quartz\Elsa.Quartz.csproj"/>
|
|
|
|
|
<ProjectReference Include="..\..\modules\Elsa.WorkflowContexts\Elsa.WorkflowContexts.csproj"/>
|
|
|
|
|
<ProjectReference Include="..\..\modules\Elsa.Workflows.Api\Elsa.Workflows.Api.csproj"/>
|
2022-05-26 10:47:31 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2022-09-02 11:18:53 +00:00
|
|
|
<ItemGroup>
|
2023-09-23 17:41:37 +00:00
|
|
|
<PackageReference Include="Azure.Identity" Version="1.8.2"/>
|
|
|
|
|
<PackageReference Include="Proto.Persistence.Sqlite" Version="1.1.0"/>
|
|
|
|
|
<PackageReference Include="Proto.Persistence.SqlServer" Version="1.3.1-alpha.0.2"/>
|
|
|
|
|
</ItemGroup>
|
2023-09-28 12:09:34 +00:00
|
|
|
|
2022-05-26 10:47:31 +00:00
|
|
|
</Project>
|