SMAPI/src/SMAPI.Web/SMAPI.Web.csproj

47 lines
1.8 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk.Web">
2017-08-14 05:44:00 +08:00
<PropertyGroup>
<TargetFramework>netcoreapp2.0</TargetFramework>
2017-09-26 06:18:43 +08:00
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
2018-12-27 15:40:57 +08:00
<LangVersion>latest</LangVersion>
2017-08-14 05:44:00 +08:00
</PropertyGroup>
2019-07-20 01:18:35 +08:00
<ItemGroup>
<Content Remove="aws-beanstalk-tools-defaults.json" />
</ItemGroup>
2017-09-26 06:18:43 +08:00
<ItemGroup>
2017-10-08 11:07:10 +08:00
<Compile Include="..\..\build\GlobalAssemblyInfo.cs" Link="Properties\GlobalAssemblyInfo.cs" />
2017-09-26 06:18:43 +08:00
</ItemGroup>
2017-08-14 05:44:00 +08:00
<ItemGroup>
2019-01-05 07:32:12 +08:00
<PackageReference Include="HtmlAgilityPack" Version="1.8.11" />
<PackageReference Include="Markdig" Version="0.15.6" />
2018-11-05 12:43:45 +08:00
<PackageReference Include="Microsoft.AspNetCore" Version="2.1.4" />
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.1.3" />
2018-06-25 06:53:33 +08:00
<PackageReference Include="Microsoft.AspNetCore.Rewrite" Version="2.1.1" />
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.1.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="2.1.1" />
<PackageReference Include="Pathoschild.Http.FluentClient" Version="3.2.0" />
2017-08-14 05:44:00 +08:00
</ItemGroup>
<ItemGroup>
<DotNetCliToolReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Tools" Version="1.0.1" />
</ItemGroup>
<Import Project="..\SMAPI.Internal\SMAPI.Internal.projitems" Label="Shared" />
2018-05-25 13:14:40 +08:00
<ItemGroup>
2019-04-25 11:45:34 +08:00
<ProjectReference Include="..\SMAPI.Toolkit\SMAPI.Toolkit.csproj" />
2018-05-25 13:14:40 +08:00
</ItemGroup>
<ItemGroup>
2018-11-05 15:13:44 +08:00
<Content Update="Views\Index\Privacy.cshtml">
<Pack>$(IncludeRazorContentInPack)</Pack>
</Content>
2018-10-21 03:10:44 +08:00
<Content Update="Views\Mods\Index.cshtml">
<Pack>$(IncludeRazorContentInPack)</Pack>
</Content>
<Content Update="wwwroot\SMAPI.metadata.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
2017-08-14 05:44:00 +08:00
</Project>