2019-06-19 11:39:08 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
2017-08-14 05:44:00 +08:00
|
|
|
|
<PropertyGroup>
|
2019-08-10 05:47:53 +08:00
|
|
|
|
<AssemblyName>SMAPI.Web</AssemblyName>
|
2019-07-07 09:10:00 +08:00
|
|
|
|
<RootNamespace>StardewModdingAPI.Web</RootNamespace>
|
2021-11-28 11:37:21 +08:00
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2018-12-27 15:40:57 +08:00
|
|
|
|
<LangVersion>latest</LangVersion>
|
2017-08-14 05:44:00 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2021-03-18 08:36:31 +08:00
|
|
|
|
<Import Project="..\..\build\common.targets" />
|
|
|
|
|
|
2019-07-20 01:18:35 +08:00
|
|
|
|
<ItemGroup>
|
2021-11-01 02:37:51 +08:00
|
|
|
|
<None Remove="Properties\PublishProfiles\**" />
|
|
|
|
|
<None Remove="Properties\ServiceDependencies\**" />
|
2019-07-20 01:18:35 +08:00
|
|
|
|
<Content Remove="aws-beanstalk-tools-defaults.json" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2017-08-14 05:44:00 +08:00
|
|
|
|
<ItemGroup>
|
2021-11-28 11:37:21 +08:00
|
|
|
|
<PackageReference Include="Azure.Storage.Blobs" Version="12.10.0" />
|
|
|
|
|
<PackageReference Include="Hangfire.AspNetCore" Version="1.7.27" />
|
2020-03-07 10:41:20 +08:00
|
|
|
|
<PackageReference Include="Hangfire.MemoryStorage" Version="1.7.0" />
|
2021-05-01 07:16:52 +08:00
|
|
|
|
<PackageReference Include="HtmlAgilityPack" Version="1.11.33" />
|
2021-11-28 11:37:21 +08:00
|
|
|
|
<PackageReference Include="Humanizer.Core" Version="2.13.14" />
|
|
|
|
|
<PackageReference Include="JetBrains.Annotations" Version="2021.3.0" />
|
|
|
|
|
<PackageReference Include="Markdig" Version="0.26.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="6.0.0" />
|
2021-05-01 07:16:52 +08:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json.Schema" Version="3.0.14" />
|
2021-11-28 11:37:21 +08:00
|
|
|
|
<PackageReference Include="Pathoschild.FluentNexus" Version="1.0.5" />
|
2021-05-01 06:52:19 +08:00
|
|
|
|
<PackageReference Include="Pathoschild.Http.FluentClient" Version="4.1.0" />
|
2017-08-14 05:44:00 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<DotNetCliToolReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Tools" Version="1.0.1" />
|
|
|
|
|
</ItemGroup>
|
2018-05-03 13:38:08 +08:00
|
|
|
|
<Import Project="..\SMAPI.Internal\SMAPI.Internal.projitems" Label="Shared" />
|
2019-07-07 12:29:22 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Include="..\..\docs\technical\web.md" Link="web.md" />
|
|
|
|
|
</ItemGroup>
|
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>
|
2018-06-29 08:59:39 +08:00
|
|
|
|
<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>
|
2019-04-25 11:46:52 +08:00
|
|
|
|
<Content Update="wwwroot\SMAPI.metadata.json">
|
2018-06-29 08:59:39 +08:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
2017-08-14 05:44:00 +08:00
|
|
|
|
</Project>
|