2024-11-26 13:45:28 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2024-12-25 15:06:46 +08:00
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
|
|
|
|
2024-11-26 13:45:28 +08:00
|
|
|
|
<Nullable>enable</Nullable>
|
2024-12-25 15:06:46 +08:00
|
|
|
|
<AssemblyName>运维调度通信网关</AssemblyName>
|
2024-11-26 13:45:28 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Remove="appsettings.json" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="appsettings.json">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-12-25 15:06:46 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<!-- ABP Framework (compatible with .NET Core 3.1) -->
|
|
|
|
|
|
|
|
|
|
<!-- DotNetty (compatible with .NET Core 3.1) -->
|
|
|
|
|
<PackageReference Include="DotNetty.Codecs" Version="0.7.6" />
|
|
|
|
|
<PackageReference Include="DotNetty.Transport" Version="0.7.6" />
|
|
|
|
|
|
|
|
|
|
<!-- Microsoft.Extensions.Configuration.Json (updated to match dependencies) -->
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.0" />
|
|
|
|
|
|
|
|
|
|
<!-- Serilog (compatible with .NET Core 3.1) -->
|
|
|
|
|
<PackageReference Include="Serilog" Version="2.10.0" />
|
|
|
|
|
<PackageReference Include="Serilog.Settings.Configuration" Version="2.2.0" />
|
|
|
|
|
<PackageReference Include="Serilog.Sinks.Console" Version="3.1.1" />
|
|
|
|
|
<PackageReference Include="Serilog.Sinks.File" Version="4.1.0" />
|
|
|
|
|
</ItemGroup>
|
2024-11-26 13:45:28 +08:00
|
|
|
|
|
2024-11-29 09:03:54 +08:00
|
|
|
|
<ItemGroup>
|
2024-12-09 17:31:53 +08:00
|
|
|
|
<ProjectReference Include="..\src\YunDa.Application\YunDa.ISAS.Application.Core\YunDa.SOMS.Application.Core.csproj" />
|
2024-11-29 09:03:54 +08:00
|
|
|
|
<ProjectReference Include="..\src\YunDa.Application\YunDa.ISAS.DataTransferObject\YunDa.SOMS.DataTransferObject.csproj" />
|
2024-12-09 17:31:21 +08:00
|
|
|
|
<ProjectReference Include="..\src\YunDa.Domain\YunDa.ISAS.MongoDB\YunDa.SOMS.MongoDB.csproj" />
|
2024-11-29 09:03:54 +08:00
|
|
|
|
<ProjectReference Include="..\src\YunDa.Domain\YunDa.ISAS.Redis.Entities\YunDa.SOMS.Redis.Entities.csproj" />
|
|
|
|
|
<ProjectReference Include="..\src\YunDa.Domain\YunDa.ISAS.Redis\YunDa.SOMS.Redis.csproj" />
|
2024-12-09 17:31:21 +08:00
|
|
|
|
<ProjectReference Include="..\src\YunDa.Web\YunDa.ISAS.Web.Core\YunDa.SOMS.Web.Core.csproj" />
|
2024-11-29 09:03:54 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-11-26 13:45:28 +08:00
|
|
|
|
</Project>
|