mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-07-23 05:31:29 +00:00
Bumps [Swashbuckle.AspNetCore](https://github.com/domaindrivendev/Swashbuckle.AspNetCore) from 6.3.1 to 6.3.2. - [Release notes](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases) - [Commits](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v6.3.1...v6.3.2) --- updated-dependencies: - dependency-name: Swashbuckle.AspNetCore dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
63 lines
3.2 KiB
XML
63 lines
3.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
<PropertyGroup>
|
|
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
|
<TargetFramework>net6.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="DDSReader" Version="1.0.8-pre" />
|
|
<PackageReference Include="Discord.Net.Webhook" Version="3.7.2" />
|
|
<PackageReference Include="InfluxDB.Client" Version="4.3.0" />
|
|
<PackageReference Include="JetBrains.Annotations" Version="2022.1.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="6.0.6" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.7" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.6">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="6.0.1" />
|
|
<PackageReference Include="Redis.OM" Version="0.1.9" />
|
|
<PackageReference Include="SharpZipLib" Version="1.3.3" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.3.2" />
|
|
<PackageReference Include="YamlDotNet" Version="11.2.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>
|
|
<None Remove="chatCensoredList.txt" />
|
|
<EmbeddedResource Include="chatCensoredList.txt">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="Administration\Maintenance\MaintenanceJobs\CleanupXMLInjection.cs" />
|
|
</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>
|