sharp-chat/SharpChat/SharpChat.csproj

26 lines
610 B
XML
Raw Normal View History

2022-08-30 15:00:58 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
2023-02-06 20:14:50 +00:00
<TargetFramework>net6.0</TargetFramework>
2022-08-30 15:00:58 +00:00
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Fleck" Version="1.2.0" />
2023-02-07 14:34:31 +00:00
<PackageReference Include="MySqlConnector" Version="2.2.5" />
2022-08-30 15:00:58 +00: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>
2022-08-30 15:00:58 +00:00
</Project>