49 lines
2.0 KiB
XML
49 lines
2.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Autofac.Extensions.DependencyInjection" Version="9.0.0" />
|
|
<PackageReference Include="log4net" Version="2.0.15" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="6.0.28" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="6.0.13" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.1.22" />
|
|
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.17.0" />
|
|
<PackageReference Include="MQTTnet" Version="4.1.4.563" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
|
|
<PackageReference Include="Polly" Version="8.4.1" />
|
|
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="3.2.7" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
|
|
<PackageReference Include="System.Text.Encoding.CodePages" Version="9.0.4" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="GatherAPI.xml">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Gather.BLL\Gather.BLL.csproj" />
|
|
<ProjectReference Include="..\Gather.Common\Gather.Common.csproj" />
|
|
<ProjectReference Include="..\Gather.DAL\Gather.DAL.csproj" />
|
|
<ProjectReference Include="..\Gather.Model\Gather.Model.csproj" />
|
|
<ProjectReference Include="..\Gather.Mysql\Gather.Mysql.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Update="appsettings.json">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Update="Log4net.config">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
</Project>
|