forked from optimajet/WorkflowEngine.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWF.Sample.csproj
More file actions
41 lines (41 loc) · 1.52 KB
/
WF.Sample.csproj
File metadata and controls
41 lines (41 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Autofac.Configuration" Version="4.1.0" />
<PackageReference Include="Autofac.Extensions.DependencyInjection" Version="4.3.1" />
<PackageReference Include="AutoMapper" Version="8.0.0" />
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="6.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="6.0.25" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="WorkflowEngine.NETCore-Core" Version="17.2.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\WF.Sample.MySql\WF.Sample.MySql.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="Controllers\" />
<Folder Include="Models\" />
<Folder Include="Helpers\" />
<Folder Include="Extensions\" />
</ItemGroup>
<ItemGroup>
<None Remove="autofac.json" />
</ItemGroup>
<ItemGroup>
<Content Remove="autofac.json" />
</ItemGroup>
<ItemGroup>
<Content Include="autofac.json" />
</ItemGroup>
<ItemGroup>
<Content Update="autofac.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>