BirdsiteLive/src/BSLManager/BSLManager.csproj

29 lines
1.0 KiB
XML
Raw Normal View History

2021-04-11 23:14:57 +02:00
<Project Sdk="Microsoft.NET.Sdk">
2021-04-10 03:07:03 +02:00
<PropertyGroup>
<OutputType>Exe</OutputType>
2023-01-06 08:37:34 +01:00
<TargetFramework>net6.0</TargetFramework>
2021-04-10 03:07:03 +02:00
</PropertyGroup>
<ItemGroup>
2023-01-06 09:07:23 +01:00
<PackageReference Include="Lamar" Version="10.0.1" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="7.0.1" />
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="7.0.0" />
2023-01-06 09:11:28 +01:00
<PackageReference Include="Terminal.Gui" Version="1.9.0" />
2021-04-10 03:07:03 +02:00
</ItemGroup>
2021-04-11 08:15:13 +02:00
<ItemGroup>
<ProjectReference Include="..\BirdsiteLive.Common\BirdsiteLive.Common.csproj" />
2021-04-11 23:14:57 +02:00
<ProjectReference Include="..\BirdsiteLive.Moderation\BirdsiteLive.Moderation.csproj" />
2021-04-11 08:15:13 +02:00
<ProjectReference Include="..\DataAccessLayers\BirdsiteLive.DAL.Postgres\BirdsiteLive.DAL.Postgres.csproj" />
</ItemGroup>
2021-04-12 00:49:12 +02:00
<ItemGroup>
<None Update="key.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
2021-04-10 03:07:03 +02:00
</Project>