sharp-chat/SharpChat/SharpChat.csproj

28 lines
758 B
XML
Raw Permalink 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>
2024-05-10 19:18:55 +00:00
<Nullable>enable</Nullable>
2022-08-30 15:00:58 +00:00
</PropertyGroup>
<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>
<ProjectReference Include="..\SharpChat.Misuzu\SharpChat.Misuzu.csproj" />
<ProjectReference Include="..\SharpChat.SockChat\SharpChat.SockChat.csproj" />
<ProjectReference Include="..\SharpChatCommon\SharpChatCommon.csproj" />
</ItemGroup>
2022-08-30 15:00:58 +00:00
</Project>