2021-09-27 12:42:46 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-01-31 22:38:56 +00:00
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Exe</OutputType>
|
2021-09-27 12:42:46 +00:00
|
|
|
<TargetFramework Condition=" '$(OS)' == 'Windows_NT'">net6.0-windows</TargetFramework>
|
|
|
|
<TargetFramework Condition=" '$(OS)' != 'Windows_NT'">net6.0</TargetFramework>
|
2020-04-06 12:04:40 +00:00
|
|
|
<Nullable>enable</Nullable>
|
2021-09-27 12:42:46 +00:00
|
|
|
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
|
|
|
|
<Version>$(VERSION)</Version>
|
|
|
|
<AssemblyName>wabbajack-cli</AssemblyName>
|
|
|
|
<PublishTrimmed>true</PublishTrimmed>
|
|
|
|
<TimeMode>linked</TimeMode>
|
2020-01-31 22:38:56 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-10-15 11:53:38 +00:00
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0-rc.2.21480.5" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="6.0.0-rc.2.21480.5" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="6.0.0-rc.2.21480.5" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="6.0.0-rc.2.21480.5" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.0-rc.2.21480.5" />
|
|
|
|
<PackageReference Include="System.CommandLine" Version="2.0.0-beta1.21514.1" />
|
2020-01-31 22:38:56 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-09-27 12:42:46 +00:00
|
|
|
<ProjectReference Include="..\Wabbajack.Downloaders.Dispatcher\Wabbajack.Downloaders.Dispatcher.csproj" />
|
|
|
|
<ProjectReference Include="..\Wabbajack.Hashing.xxHash64\Wabbajack.Hashing.xxHash64.csproj" />
|
|
|
|
<ProjectReference Include="..\Wabbajack.Networking.Discord\Wabbajack.Networking.Discord.csproj" />
|
|
|
|
<ProjectReference Include="..\Wabbajack.Networking.GitHub\Wabbajack.Networking.GitHub.csproj" />
|
|
|
|
<ProjectReference Include="..\Wabbajack.Paths.IO\Wabbajack.Paths.IO.csproj" />
|
|
|
|
<ProjectReference Include="..\Wabbajack.Server.Lib\Wabbajack.Server.Lib.csproj" />
|
|
|
|
<ProjectReference Include="..\Wabbajack.Services.OSIntegrated\Wabbajack.Services.OSIntegrated.csproj" />
|
|
|
|
<ProjectReference Include="..\Wabbajack.VFS\Wabbajack.VFS.csproj" />
|
2020-01-31 22:38:56 +00:00
|
|
|
</ItemGroup>
|
2021-09-27 12:42:46 +00:00
|
|
|
|
2020-01-31 22:38:56 +00:00
|
|
|
</Project>
|