tomas/src/Tomas.Common/Tomas.Common.csproj
Tony Bark a029d8d4d9 .NET 6 quality of life changes to Tomas.Common
- Split and simplified version details
- Raw commit hash is now a build number based on that hash
2023-01-06 20:39:31 -05:00

19 lines
579 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Tomas.Interface\Tomas.Interface.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="GitInfo" Version="2.1.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>