mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
2bd4a15ef9
Bumps [Markdig](https://github.com/lunet-io/markdig) from 0.20.0 to 0.21.1. - [Release notes](https://github.com/lunet-io/markdig/releases) - [Changelog](https://github.com/lunet-io/markdig/blob/master/changelog.md) - [Commits](https://github.com/lunet-io/markdig/compare/0.20.0...0.21.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
33 lines
1.3 KiB
XML
33 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<AssemblyName>wabbajack-cli</AssemblyName>
|
|
<Company>Wabbajack</Company>
|
|
<Platforms>x64</Platforms>
|
|
<AssemblyVersion>2.2.0.0</AssemblyVersion>
|
|
<FileVersion>2.2.0.0</FileVersion>
|
|
<Copyright>Copyright © 2019-2020</Copyright>
|
|
<Description>An automated ModList installer</Description>
|
|
<PublishReadyToRun>true</PublishReadyToRun>
|
|
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
|
|
<LangVersion>8.0</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="CommandLineParser" Version="2.8.0" />
|
|
<PackageReference Include="F23.StringSimilarity" Version="3.1.0" />
|
|
<PackageReference Include="Markdig" Version="0.21.1" />
|
|
<PackageReference Include="System.Reactive" Version="4.4.1" />
|
|
<PackageReference Include="System.Reactive.Linq" Version="4.4.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Wabbajack.Common\Wabbajack.Common.csproj" />
|
|
<ProjectReference Include="..\Wabbajack.Lib\Wabbajack.Lib.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|