wabbajack/Wabbajack.FileExtractor/Wabbajack.FileExtractor.csproj

37 lines
1.4 KiB
XML
Raw Normal View History

2021-09-27 12:42:46 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2023-10-20 19:11:08 +00:00
<TargetFramework>net8.0</TargetFramework>
2021-09-27 12:42:46 +00:00
<Nullable>enable</Nullable>
<Version>$(VERSION)</Version>
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<None Update="Extractors\windows-x64\7z.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Extractors\windows-x64\7z.exe">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Extractors\mac\7zz">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Extractors\linux-x64\7zz">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
2021-11-08 23:17:33 +00:00
<ProjectReference Include="..\Wabbajack.Common\Wabbajack.Common.csproj" />
<ProjectReference Include="..\Wabbajack.Compression.BSA\Wabbajack.Compression.BSA.csproj" />
<ProjectReference Include="..\Wabbajack.Paths\Wabbajack.Paths.csproj" />
2021-09-27 12:42:46 +00:00
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.0" />
2021-11-08 23:17:33 +00:00
<PackageReference Include="OMODFramework" Version="3.0.1" />
2021-09-27 12:42:46 +00:00
</ItemGroup>
</Project>