quest-reader/quest_reader.csproj

34 lines
1.2 KiB
XML
Raw Permalink Normal View History

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);1591;8618</NoWarn>
</PropertyGroup>
<ItemGroup>
2022-02-15 18:38:47 +00:00
<PackageReference Include="System.CommandLine" Version="2.0.0-beta3.22111.2" />
<PackageReference Include="Microsoft.AspNetCore.Razor.Language" Version="6.0.2" />
<PackageReference Include="Microsoft.CodeAnalysis" Version="4.0.1" />
<PackageReference Include="HtmlAgilityPack" Version="1.11.42" />
<PackageReference Include="SixLabors.ImageSharp" Version="2.0.0" />
</ItemGroup>
2022-02-16 12:42:25 +00:00
<PropertyGroup>
<VersionPrefix>1.0.3</VersionPrefix>
2022-02-19 16:42:47 +00:00
<RootNamespace>QuestReader</RootNamespace>
2022-02-16 12:42:25 +00:00
</PropertyGroup>
2022-02-15 18:38:47 +00:00
<Target Name="SetSourceRevisionId" BeforeTargets="InitializeSourceControlInformation">
<Exec
Command="git describe --long --always --dirty --exclude=* --abbrev=8"
ConsoleToMSBuild="True"
IgnoreExitCode="False"
>
<Output PropertyName="SourceRevisionId" TaskParameter="ConsoleOutput"/>
</Exec>
</Target>
</Project>