diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-09-25 18:18:43 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-09-25 18:18:43 -0400 |
commit | 4fd3fdc0d8367fdf0c454a1c728113c282df76b7 (patch) | |
tree | 1190f61b5a0164e65693ba693345e6854f657975 /src/StardewModdingAPI.Web | |
parent | da12f9137963e273a16da7e3ad7cb839216b96d2 (diff) | |
download | SMAPI-4fd3fdc0d8367fdf0c454a1c728113c282df76b7.tar.gz SMAPI-4fd3fdc0d8367fdf0c454a1c728113c282df76b7.tar.bz2 SMAPI-4fd3fdc0d8367fdf0c454a1c728113c282df76b7.zip |
use SMAPI version in web API (#336)
Diffstat (limited to 'src/StardewModdingAPI.Web')
-rw-r--r-- | src/StardewModdingAPI.Web/Properties/AssemblyInfo.cs | 4 | ||||
-rw-r--r-- | src/StardewModdingAPI.Web/StardewModdingAPI.Web.csproj | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/src/StardewModdingAPI.Web/Properties/AssemblyInfo.cs b/src/StardewModdingAPI.Web/Properties/AssemblyInfo.cs new file mode 100644 index 00000000..63f787a4 --- /dev/null +++ b/src/StardewModdingAPI.Web/Properties/AssemblyInfo.cs @@ -0,0 +1,4 @@ +using System.Reflection; + +[assembly: AssemblyTitle("StardewModdingAPI.Web")] +[assembly: AssemblyProduct("StardewModdingAPI.Web")] diff --git a/src/StardewModdingAPI.Web/StardewModdingAPI.Web.csproj b/src/StardewModdingAPI.Web/StardewModdingAPI.Web.csproj index bf67449b..746b1a69 100644 --- a/src/StardewModdingAPI.Web/StardewModdingAPI.Web.csproj +++ b/src/StardewModdingAPI.Web/StardewModdingAPI.Web.csproj @@ -2,9 +2,14 @@ <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" /> <PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.0.0" /> |