use SMAPI version in web API (#336)

This commit is contained in:
Jesse Plamondon-Willard 2017-09-25 18:18:43 -04:00
parent da12f91379
commit 4fd3fdc0d8
2 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,4 @@
using System.Reflection;
[assembly: AssemblyTitle("StardewModdingAPI.Web")]
[assembly: AssemblyProduct("StardewModdingAPI.Web")]

View File

@ -2,8 +2,13 @@
<PropertyGroup>
<TargetFramework>netcoreapp2.0</TargetFramework>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\GlobalAssemblyInfo.cs" Link="Properties\GlobalAssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="HtmlAgilityPack" Version="1.5.5" />
<PackageReference Include="Microsoft.AspNetCore" Version="2.0.0" />