You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.1 KiB
XML
32 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.4" />
|
|
<PackageReference Include="Scrutor" Version="6.0.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Sln.Iot.Business\Sln.Iot.Business.csproj" />
|
|
<ProjectReference Include="..\Sln.Iot.Config\Sln.Iot.Config.csproj" />
|
|
<ProjectReference Include="..\Sln.Iot.Repository\Sln.Iot.Repository.csproj" />
|
|
<ProjectReference Include="..\Sln.Iot.Serilog\Sln.Iot.Serilog.csproj" />
|
|
<ProjectReference Include="..\Sln.Iot.Socket\Sln.Iot.Socket.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="appsettings.json" />
|
|
<Content Include="appsettings.json">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
<None Remove="appsettings.Development.json" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|