mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
27 lines
935 B
XML
27 lines
935 B
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>1.1.4.0</AssemblyVersion>
|
|
<FileVersion>1.1.4.0</FileVersion>
|
|
<Copyright>Copyright © 2019-2020</Copyright>
|
|
<Description>An automated ModList installer</Description>
|
|
<PublishReadyToRun>true</PublishReadyToRun>
|
|
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="CommandLineParser" Version="2.7.82" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Wabbajack.Common\Wabbajack.Common.csproj" />
|
|
<ProjectReference Include="..\Wabbajack.Lib\Wabbajack.Lib.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|