mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
d2a53d366e
Bumps [Microsoft.AspNetCore.Mvc.NewtonsoftJson](https://github.com/dotnet/aspnetcore) from 3.1.9 to 5.0.1. - [Release notes](https://github.com/dotnet/aspnetcore/releases) - [Commits](https://github.com/dotnet/aspnetcore/compare/v3.1.9...v5.0.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
56 lines
2.1 KiB
XML
56 lines
2.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net5.0-windows</TargetFramework>
|
|
<AssemblyVersion>2.3.6.2</AssemblyVersion>
|
|
<FileVersion>2.3.6.2</FileVersion>
|
|
<Copyright>Copyright © 2019-2020</Copyright>
|
|
<Description>Wabbajack Server</Description>
|
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
|
<AssemblyName>Wabbajack.Server</AssemblyName>
|
|
<RootNamespace>Wabbajack.Server</RootNamespace>
|
|
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Dapper" Version="2.0.78" />
|
|
<PackageReference Include="Discord.Net.WebSocket" Version="2.2.0" />
|
|
<PackageReference Include="FluentFTP" Version="33.0.3" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.Core" Version="2.2.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="5.0.1" />
|
|
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.2.0" />
|
|
<PackageReference Include="Nettle" Version="1.3.0" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="5.6.3" />
|
|
<PackageReference Include="System.Data.SqlClient" Version="4.8.2" />
|
|
</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>
|
|
|
|
<ItemGroup>
|
|
<None Remove="sheo_quotes.txt" />
|
|
<EmbeddedResource Include="sheo_quotes.txt" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="Controllers\UploadedFiles.cs" />
|
|
</ItemGroup>
|
|
|
|
|
|
</Project>
|