mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-04-30 03:22:04 -04:00
41 lines
1.5 KiB
XML
41 lines
1.5 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Humanizer.Core" Version="2.14.1" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.7" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.7">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.7" />
|
|
<PackageReference Include="NLog" Version="5.3.2" />
|
|
<PackageReference Include="PuppeteerSharp" Version="18.0.5" />
|
|
<PackageReference Include="System.Text.Json" Version="8.0.4" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\KfChatDotNetWsClient\KfChatDotNetWsClient.csproj" />
|
|
<ProjectReference Include="..\KickWsClient\KickWsClient.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Update="NLog.config">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
<None Remove="config.json" />
|
|
<Content Include="config.json" />
|
|
<None Remove="NLog.config" />
|
|
<Content Include="NLog.config">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
</Project>
|