C# Discord bot made using NetCord for keeping a TikTok-style streak
at main 26 lines 937 B view raw
1<Project Sdk="Microsoft.NET.Sdk"> 2 3 <PropertyGroup> 4 <OutputType>Exe</OutputType> 5 <TargetFramework>net10.0</TargetFramework> 6 <ImplicitUsings>enable</ImplicitUsings> 7 <Nullable>enable</Nullable> 8 </PropertyGroup> 9 10 <ItemGroup> 11 <Content Include="appsettings.json"> 12 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> 13 </Content> 14 </ItemGroup> 15 16 <ItemGroup> 17 <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.0"> 18 <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> 19 <PrivateAssets>all</PrivateAssets> 20 </PackageReference> 21 <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.0.0" /> 22 <PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.0" /> 23 <PackageReference Include="NetCord.Hosting.Services" Version="1.0.0-alpha.460" /> 24 </ItemGroup> 25 26</Project>