2023-02-14 17:51:22 -08:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
2023-02-19 21:39:03 -08:00
|
|
|
<Nullable>disable</Nullable>
|
2023-02-14 17:51:22 -08:00
|
|
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-02-19 21:39:03 -08:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" />
|
2023-04-08 09:30:59 -07:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="7.0.4" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="7.0.0" />
|
2023-02-14 17:51:22 -08:00
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2" />
|
|
|
|
<PackageReference Include="xunit" Version="2.4.2" />
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
</PackageReference>
|
|
|
|
<PackageReference Include="coverlet.collector" Version="3.1.2">
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
</PackageReference>
|
|
|
|
</ItemGroup>
|
|
|
|
|
2023-02-19 21:39:03 -08:00
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\Newsbot.Collector.Services\Newsbot.Collector.Services.csproj" />
|
|
|
|
<ProjectReference Include="..\Newsbot.Collector.Database\Newsbot.Collector.Database.csproj" />
|
2023-02-16 22:19:05 -08:00
|
|
|
</ItemGroup>
|
|
|
|
|
2023-03-31 22:49:39 -07:00
|
|
|
<ItemGroup>
|
|
|
|
<Content Update="appsettings.json">
|
|
|
|
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
|
|
</Content>
|
|
|
|
</ItemGroup>
|
|
|
|
|
2023-04-08 09:30:59 -07:00
|
|
|
<ItemGroup>
|
|
|
|
<None Update="appsettings.json">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</None>
|
|
|
|
</ItemGroup>
|
|
|
|
|
2023-02-14 17:51:22 -08:00
|
|
|
</Project>
|