sharp-chat/SharpChat/SharpChat.csproj

44 lines
1.3 KiB
XML
Raw Normal View History

2022-08-30 17:00:58 +02:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
2025-04-25 15:49:46 +00:00
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
2025-04-25 18:18:13 +00:00
<Nullable>enable</Nullable>
2025-04-25 15:49:46 +00:00
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>1701;1702</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<NoWarn>1701;1702</NoWarn>
2022-08-30 17:00:58 +02:00
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Fleck" Version="1.2.0" />
2025-04-28 12:29:11 +00:00
<PackageReference Include="ZLogger" Version="2.5.10" />
2022-08-30 17:00:58 +02:00
</ItemGroup>
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
<Exec Command="git describe --tags --abbrev=0 --always &gt; version.txt" />
</Target>
<ItemGroup>
<None Remove="version.txt" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="version.txt" />
</ItemGroup>
<ItemGroup>
2025-04-26 22:35:37 +00:00
<ProjectReference Include="..\SharpChat.Flashii\SharpChat.Flashii.csproj" />
<ProjectReference Include="..\SharpChat.MariaDB\SharpChat.MariaDB.csproj" />
<ProjectReference Include="..\SharpChat.SockChat\SharpChat.SockChat.csproj" />
2025-04-27 22:31:35 +00:00
<ProjectReference Include="..\SharpChat.SQLite\SharpChat.SQLite.csproj" />
<ProjectReference Include="..\SharpChatCommon\SharpChatCommon.csproj" />
</ItemGroup>
2022-08-30 17:00:58 +02:00
</Project>