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.
44 lines
1.9 KiB
44 lines
1.9 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<NoWarn>1701;1702;1591</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<NoWarn>1701;1702;1591</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="SystemManage\AreaService.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Hangfire.AspNetCore" Version="1.8.20" />
|
|
<PackageReference Include="Hangfire.Core" Version="1.8.20" />
|
|
<PackageReference Include="Hangfire.SqlServer" Version="1.8.20" />
|
|
<PackageReference Include="Magicodes.IE.Core" Version="2.7.5.2" />
|
|
<PackageReference Include="Magicodes.IE.Excel" Version="2.7.5.2" />
|
|
<PackageReference Include="Serilog" Version="4.2.0" />
|
|
<PackageReference Include="ValueInjecter" Version="3.2.0" />
|
|
<PackageReference Include="Z.EntityFramework.Extensions.EFCore" Version="8.103.8.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\TaskManager.Contracts\TaskManager.Contracts.csproj" />
|
|
<ProjectReference Include="..\TaskManager.EntityFramework\TaskManager.EntityFramework.csproj" />
|
|
<ProjectReference Include="..\TaskManager.Entity\TaskManager.Entity.csproj" />
|
|
<ProjectReference Include="..\Wood.AutoJob\Wood.AutoJob.csproj" />
|
|
<ProjectReference Include="..\Wood.Cache\Wood.Cache.Interface\Wood.Cache.Interface.csproj" />
|
|
<ProjectReference Include="..\Wood.Data.Repository\Wood.Data.Repository.csproj" />
|
|
<ProjectReference Include="..\Wood.EventBus\Wood.EventBus.csproj" />
|
|
<ProjectReference Include="..\Wood.Util\Wood.Util.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|