2022-02-13 17:25:15 +00:00
|
|
|
<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" />
|
2022-02-16 12:38:08 +00:00
|
|
|
<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" />
|
2022-02-21 09:33:17 +00:00
|
|
|
<PackageReference Include="SixLabors.ImageSharp" Version="2.0.0" />
|
2022-02-13 17:25:15 +00:00
|
|
|
</ItemGroup>
|
2022-02-16 12:42:25 +00:00
|
|
|
<PropertyGroup>
|
2022-02-21 09:33:17 +00:00
|
|
|
<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>
|
2022-02-13 17:25:15 +00:00
|
|
|
</Project>
|