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>
|
2025-04-25 20:05:55 +00:00
|
|
|
|
<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" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-02-09 00:53:42 +01:00
|
|
|
|
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
|
|
|
|
|
<Exec Command="git describe --tags --abbrev=0 --always > version.txt" />
|
|
|
|
|
</Target>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Remove="version.txt" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Include="version.txt" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2025-04-25 20:05:55 +00:00
|
|
|
|
<ItemGroup>
|
2025-04-26 22:35:37 +00:00
|
|
|
|
<ProjectReference Include="..\SharpChat.Flashii\SharpChat.Flashii.csproj" />
|
2025-04-27 01:54:46 +00:00
|
|
|
|
<ProjectReference Include="..\SharpChat.MariaDB\SharpChat.MariaDB.csproj" />
|
2025-04-26 22:47:57 +00:00
|
|
|
|
<ProjectReference Include="..\SharpChat.SockChat\SharpChat.SockChat.csproj" />
|
2025-04-27 22:31:35 +00:00
|
|
|
|
<ProjectReference Include="..\SharpChat.SQLite\SharpChat.SQLite.csproj" />
|
2025-04-25 20:05:55 +00:00
|
|
|
|
<ProjectReference Include="..\SharpChatCommon\SharpChatCommon.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2022-08-30 17:00:58 +02:00
|
|
|
|
</Project>
|