wabbajack/Wabbajack.CLI/Wabbajack.CLI.csproj

33 lines
1.3 KiB
XML
Raw Normal View History

2020-01-31 22:38:56 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
2021-01-01 18:21:07 +00:00
<TargetFramework>net5.0-windows</TargetFramework>
<AssemblyName>wabbajack-cli</AssemblyName>
<Company>Wabbajack</Company>
<Platforms>x64</Platforms>
2021-05-29 02:38:07 +00:00
<AssemblyVersion>2.4.4.3</AssemblyVersion>
<FileVersion>2.4.4.3</FileVersion>
<Copyright>Copyright © 2019-2020</Copyright>
<Description>An automated ModList installer</Description>
<PublishReadyToRun>true</PublishReadyToRun>
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
2020-04-06 12:04:40 +00:00
<LangVersion>8.0</LangVersion>
<Nullable>enable</Nullable>
2020-01-31 22:38:56 +00:00
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.0-preview1" />
2021-03-11 12:44:36 +00:00
<PackageReference Include="F23.StringSimilarity" Version="4.0.0" />
2021-04-01 20:52:23 +00:00
<PackageReference Include="Markdig" Version="0.24.0" />
2020-11-14 14:26:04 +00:00
<PackageReference Include="System.Reactive" Version="5.0.0" />
<PackageReference Include="System.Reactive.Linq" Version="5.0.0" />
2020-01-31 22:38:56 +00:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Wabbajack.Common\Wabbajack.Common.csproj" />
<ProjectReference Include="..\Wabbajack.Lib\Wabbajack.Lib.csproj" />
</ItemGroup>
</Project>