2020-05-09 13:04:38 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Exe</OutputType>
|
2021-09-27 12:42:46 +00:00
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
<AssemblyVersion>2.5.2.2</AssemblyVersion>
|
|
|
|
<FileVersion>2.5.2.2</FileVersion>
|
2021-07-17 13:32:42 +00:00
|
|
|
<Copyright>Copyright © 2019-2021</Copyright>
|
2020-05-09 23:23:41 +00:00
|
|
|
<Description>Wabbajack Server</Description>
|
|
|
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
|
|
|
<AssemblyName>Wabbajack.Server</AssemblyName>
|
|
|
|
<RootNamespace>Wabbajack.Server</RootNamespace>
|
2021-09-27 12:42:46 +00:00
|
|
|
<Nullable>enable</Nullable>
|
2020-05-09 23:23:41 +00:00
|
|
|
|
2020-05-09 13:04:38 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-11-05 02:28:42 +00:00
|
|
|
<PackageReference Include="Dapper" Version="2.0.123" />
|
|
|
|
<PackageReference Include="Discord.Net.WebSocket" Version="2.4.0" />
|
|
|
|
<PackageReference Include="FluentFTP" Version="35.0.5" />
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.Core" Version="2.2.0" />
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="6.0.0-rc.2.21480.10" />
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.2.0" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.0-rc.2.21480.5" />
|
|
|
|
<PackageReference Include="Nettle" Version="1.3.0" />
|
|
|
|
<PackageReference Include="System.Data.SqlClient" Version="4.8.3" />
|
2020-05-09 13:04:38 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-10-23 16:51:17 +00:00
|
|
|
<None Update="public\WABBAJACK_TEST_FILE.txt">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</None>
|
|
|
|
<None Update="appsettings.json">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</None>
|
|
|
|
<None Update="public\metrics.html">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</None>
|
|
|
|
<None Update="Controllers\Templates\AuthorControls.html">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</None>
|
|
|
|
<None Update="Controllers\Templates\AuthorControls.html">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</None>
|
2020-05-09 13:04:38 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
2020-05-15 05:25:02 +00:00
|
|
|
<ItemGroup>
|
2021-11-05 02:28:42 +00:00
|
|
|
<None Remove="sheo_quotes.txt" />
|
|
|
|
<EmbeddedResource Include="sheo_quotes.txt" />
|
|
|
|
<None Remove="Controllers\Templates\TotalListTemplate.html" />
|
|
|
|
<EmbeddedResource Include="Controllers\Templates\TotalListTemplate.html" />
|
2020-05-15 05:25:02 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
2020-06-16 22:21:01 +00:00
|
|
|
<ItemGroup>
|
2021-11-05 02:28:42 +00:00
|
|
|
<Compile Remove="Controllers\UploadedFiles.cs" />
|
|
|
|
<Compile Remove="Services\ListValidator.cs" />
|
2021-09-27 12:42:46 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-11-05 02:28:42 +00:00
|
|
|
<ProjectReference Include="..\Wabbajack.Common\Wabbajack.Common.csproj" />
|
|
|
|
<ProjectReference Include="..\Wabbajack.Compiler\Wabbajack.Compiler.csproj" />
|
|
|
|
<ProjectReference Include="..\Wabbajack.Downloaders.Dispatcher\Wabbajack.Downloaders.Dispatcher.csproj" />
|
|
|
|
<ProjectReference Include="..\Wabbajack.DTOs\Wabbajack.DTOs.csproj" />
|
|
|
|
<ProjectReference Include="..\Wabbajack.Hashing.xxHash64\Wabbajack.Hashing.xxHash64.csproj" />
|
|
|
|
<ProjectReference Include="..\Wabbajack.Networking.GitHub\Wabbajack.Networking.GitHub.csproj" />
|
|
|
|
<ProjectReference Include="..\Wabbajack.Networking.NexusApi\Wabbajack.Networking.NexusApi.csproj" />
|
|
|
|
<ProjectReference Include="..\Wabbajack.Paths.IO\Wabbajack.Paths.IO.csproj" />
|
|
|
|
<ProjectReference Include="..\Wabbajack.Paths\Wabbajack.Paths.csproj" />
|
2020-06-16 22:21:01 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
2020-05-09 13:04:38 +00:00
|
|
|
|
|
|
|
</Project>
|