2020-01-31 22:38:56 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
2020-01-31 22:56:26 +00:00
|
|
|
|
<AssemblyName>wabbajack-cli</AssemblyName>
|
|
|
|
|
<Company>Wabbajack</Company>
|
2020-02-01 17:33:00 +00:00
|
|
|
|
<Platforms>x64</Platforms>
|
2020-11-02 12:25:07 +00:00
|
|
|
|
<AssemblyVersion>2.3.2.0</AssemblyVersion>
|
|
|
|
|
<FileVersion>2.3.2.0</FileVersion>
|
2020-02-08 05:31:50 +00:00
|
|
|
|
<Copyright>Copyright © 2019-2020</Copyright>
|
|
|
|
|
<Description>An automated ModList installer</Description>
|
|
|
|
|
<PublishReadyToRun>true</PublishReadyToRun>
|
2020-02-01 17:33:00 +00:00
|
|
|
|
<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>
|
2020-09-03 02:49:45 +00:00
|
|
|
|
<PackageReference Include="CommandLineParser" Version="2.9.0-preview1" />
|
2020-04-08 19:56:53 +00:00
|
|
|
|
<PackageReference Include="F23.StringSimilarity" Version="3.1.0" />
|
2020-10-24 16:04:24 +00:00
|
|
|
|
<PackageReference Include="Markdig" Version="0.22.0" />
|
2020-05-27 12:05:55 +00:00
|
|
|
|
<PackageReference Include="System.Reactive" Version="4.4.1" />
|
|
|
|
|
<PackageReference Include="System.Reactive.Linq" Version="4.4.1" />
|
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>
|