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.
27 lines
1.3 KiB
27 lines
1.3 KiB
<Project Sdk="Microsoft.NET.Sdk.Web"> |
|
|
|
<PropertyGroup> |
|
<TargetFramework>net8.0</TargetFramework> |
|
<Nullable>enable</Nullable> |
|
<ImplicitUsings>enable</ImplicitUsings> |
|
<GenerateDocumentationFile>True</GenerateDocumentationFile> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<ProjectReference Include="..\..\Common.SharedService\Common.Shared.Application\Common.Shared.Application.csproj" /> |
|
<ProjectReference Include="..\..\Common.SharedService\Common.Shared.DomainService\Common.Shared.DomainService.csproj" /> |
|
<ProjectReference Include="..\..\WeiCloud.Utils\WeiCloud.Utils.csproj" /> |
|
<ProjectReference Include="..\Alarm.Application\Alarm.Application.csproj" /> |
|
<ProjectReference Include="..\Alarm.DomainService\Alarm.DomainService.csproj" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<PackageReference Include="Autofac.Extensions.DependencyInjection" Version="10.0.0" /> |
|
<PackageReference Include="NLog" Version="6.0.3" /> |
|
<PackageReference Include="NLog.Extensions.Logging" Version="6.0.3" /> |
|
<PackageReference Include="NLog.Web.AspNetCore" Version="6.0.3" /> |
|
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerGen" Version="9.0.3" /> |
|
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerUI" Version="9.0.3" /> |
|
</ItemGroup> |
|
|
|
</Project>
|
|
|