mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-07-18 19:21:28 +00:00
Bumps [Discord.Net.Webhook](https://github.com/Discord-Net/Discord.Net) from 3.9.0 to 3.10.0. - [Release notes](https://github.com/Discord-Net/Discord.Net/releases) - [Changelog](https://github.com/discord-net/Discord.Net/blob/dev/CHANGELOG.md) - [Commits](https://github.com/Discord-Net/Discord.Net/compare/3.9.0...3.10.0) --- updated-dependencies: - dependency-name: Discord.Net.Webhook dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
61 lines
3.1 KiB
XML
61 lines
3.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
<PropertyGroup>
|
|
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<AssemblyName>LBPUnion.ProjectLighthouse</AssemblyName>
|
|
<RootNamespace>LBPUnion.ProjectLighthouse</RootNamespace>
|
|
<OutputType>Library</OutputType>
|
|
<ErrorOnDuplicatePublishOutputFiles>false</ErrorOnDuplicatePublishOutputFiles>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="BCrypt.Net-Next" Version="4.0.3" />
|
|
<PackageReference Include="Pfim" Version="0.11.2" />
|
|
<PackageReference Include="SixLabors.ImageSharp" Version="3.0.1" />
|
|
<PackageReference Include="Discord.Net.Webhook" Version="3.10.0" />
|
|
<PackageReference Include="JetBrains.Annotations" Version="2022.3.1" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="7.0.4" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.4" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.4">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="7.0.0" />
|
|
<PackageReference Include="Redis.OM" Version="0.4.2" />
|
|
<PackageReference Include="SharpZipLib" Version="1.4.2" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
|
|
<PackageReference Include="YamlDotNet" Version="13.0.2" />
|
|
<PackageReference Include="BouncyCastle.Cryptography" Version="2.1.1" />
|
|
<PackageReference Include="DistributedLock.MySql" Version="1.0.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="gitVersion.txt" />
|
|
<EmbeddedResource Include="gitVersion.txt">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</EmbeddedResource>
|
|
<None Remove="gitBranch.txt" />
|
|
<EmbeddedResource Include="gitBranch.txt">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</EmbeddedResource>
|
|
<None Remove="gitRemotes.txt" />
|
|
<EmbeddedResource Include="gitRemotes.txt">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</EmbeddedResource>
|
|
<None Remove="gitUnpushed.txt" />
|
|
<EmbeddedResource Include="gitUnpushed.txt">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\ProjectLighthouse.Localization\ProjectLighthouse.Localization.csproj" />
|
|
</ItemGroup>
|
|
|
|
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
|
|
<Exec Command="git describe --long --always --dirty --exclude=\* --abbrev=8 > "$(ProjectDir)/gitVersion.txt"" />
|
|
<Exec Command="git branch --show-current > "$(ProjectDir)/gitBranch.txt"" />
|
|
<Exec Command="git remote -v > "$(ProjectDir)/gitRemotes.txt"" />
|
|
<Exec Command="git log --branches --not --remotes --oneline > "$(ProjectDir)/gitUnpushed.txt"" />
|
|
</Target>
|
|
</Project>
|