update project name

This commit is contained in:
Jesse Plamondon-Willard 2019-07-06 21:10:00 -04:00
parent 9162f41462
commit f18ad1210c
No known key found for this signature in database
GPG Key ID: CF8B1456B3E29F49
3 changed files with 4 additions and 3 deletions

View File

@ -12,7 +12,7 @@ and update check API.
* [Deploying to Amazon Beanstalk](#deploying-to-amazon-beanstalk)
## Overview
The `StardewModdingAPI.Web` project provides an API and web UI hosted at `*.smapi.io`.
The `SMAPI.Web` project provides an API and web UI hosted at `*.smapi.io`.
### Log parser
The log parser provides a web UI for uploading, parsing, and sharing SMAPI logs. The logs are
@ -83,7 +83,7 @@ For example:
## For SMAPI developers
### Local development
`StardewModdingAPI.Web` is a regular ASP.NET MVC Core app, so you can just launch it from within
`SMAPI.Web` is a regular ASP.NET MVC Core app, so you can just launch it from within
Visual Studio to run a local version.
There are two differences when it's run locally: all endpoints use HTTP instead of HTTPS, and the

View File

@ -4,4 +4,4 @@ using System.Runtime.CompilerServices;
[assembly: AssemblyTitle("SMAPI.Toolkit")]
[assembly: AssemblyDescription("A library which encapsulates mod-handling logic for mod managers and tools. Not intended for use by mods.")]
[assembly: InternalsVisibleTo("StardewModdingAPI")]
[assembly: InternalsVisibleTo("StardewModdingAPI.Web")]
[assembly: InternalsVisibleTo("SMAPI.Web")]

View File

@ -1,6 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<RootNamespace>StardewModdingAPI.Web</RootNamespace>
<TargetFramework>netcoreapp2.0</TargetFramework>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<LangVersion>latest</LangVersion>