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-04-01 20:52:23 +00:00
|
|
|
<AssemblyVersion>2.4.3.2</AssemblyVersion>
|
|
|
|
<FileVersion>2.4.3.2</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>
|
2020-11-24 17:20:45 +00:00
|
|
|
<PackageReference Include="Dapper" Version="2.0.78" />
|
2021-03-11 12:44:36 +00:00
|
|
|
<PackageReference Include="Discord.Net.WebSocket" Version="2.3.1" />
|
2021-04-01 20:52:23 +00:00
|
|
|
<PackageReference Include="FluentFTP" Version="33.1.4" />
|
2020-05-09 13:04:38 +00:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.Core" Version="2.2.0" />
|
2021-03-11 12:44:36 +00:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="5.0.4" />
|
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>
|
|
|
|
</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>
|