2020-05-09 13:04:38 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Exe</OutputType>
|
2021-01-01 18:21:07 +00:00
|
|
|
<TargetFramework>net5.0-windows</TargetFramework>
|
2021-07-15 13:35:26 +00:00
|
|
|
<AssemblyVersion>2.5.1.3</AssemblyVersion>
|
|
|
|
<FileVersion>2.5.1.3</FileVersion>
|
2020-05-09 23:23:41 +00:00
|
|
|
<Copyright>Copyright © 2019-2020</Copyright>
|
|
|
|
<Description>Wabbajack Server</Description>
|
|
|
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
|
|
|
<AssemblyName>Wabbajack.Server</AssemblyName>
|
|
|
|
<RootNamespace>Wabbajack.Server</RootNamespace>
|
|
|
|
|
2020-05-09 13:04:38 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-05-28 22:15:52 +00:00
|
|
|
<PackageReference Include="Dapper" Version="2.0.90" />
|
|
|
|
<PackageReference Include="Discord.Net.WebSocket" Version="2.4.0" />
|
|
|
|
<PackageReference Include="FluentFTP" Version="34.0.0" />
|
2020-05-09 13:04:38 +00:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.Core" Version="2.2.0" />
|
2021-06-09 20:55:45 +00:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="5.0.7" />
|
2020-05-09 13:04:38 +00:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.2.0" />
|
|
|
|
<PackageReference Include="Nettle" Version="1.3.0" />
|
2020-08-12 06:59:40 +00:00
|
|
|
<PackageReference Include="System.Data.SqlClient" Version="4.8.2" />
|
2020-05-09 13:04:38 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\Wabbajack.Common\Wabbajack.Common.csproj" />
|
|
|
|
<ProjectReference Include="..\Wabbajack.Lib\Wabbajack.Lib.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<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>
|
2021-04-13 01:17:03 +00:00
|
|
|
<None Update="Controllers\Templates\AuthorControls.html">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</None>
|
2021-04-13 03:21:06 +00:00
|
|
|
<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>
|
|
|
|
<None Remove="sheo_quotes.txt" />
|
|
|
|
<EmbeddedResource Include="sheo_quotes.txt" />
|
2021-02-17 05:46:05 +00:00
|
|
|
<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>
|
|
|
|
<Compile Remove="Controllers\UploadedFiles.cs" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2020-05-09 13:04:38 +00:00
|
|
|
|
|
|
|
</Project>
|