summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2019-07-06 21:10:00 -0400
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2019-09-14 18:46:41 -0400
commitf18ad1210cd813d6ddff665841ac712d62d18b1f (patch)
treeda6e47a602ed973f79df481efbf11f7fa981f560
parent9162f41462ad91e684260212141e1aeba0625933 (diff)
downloadSMAPI-f18ad1210cd813d6ddff665841ac712d62d18b1f.tar.gz
SMAPI-f18ad1210cd813d6ddff665841ac712d62d18b1f.tar.bz2
SMAPI-f18ad1210cd813d6ddff665841ac712d62d18b1f.zip
update project name
-rw-r--r--docs/technical/web.md4
-rw-r--r--src/SMAPI.Toolkit/Properties/AssemblyInfo.cs2
-rw-r--r--src/SMAPI.Web/SMAPI.Web.csproj1
3 files changed, 4 insertions, 3 deletions
diff --git a/docs/technical/web.md b/docs/technical/web.md
index c8888623..978114ef 100644
--- a/docs/technical/web.md
+++ b/docs/technical/web.md
@@ -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
diff --git a/src/SMAPI.Toolkit/Properties/AssemblyInfo.cs b/src/SMAPI.Toolkit/Properties/AssemblyInfo.cs
index 1bb19e8c..ec873f79 100644
--- a/src/SMAPI.Toolkit/Properties/AssemblyInfo.cs
+++ b/src/SMAPI.Toolkit/Properties/AssemblyInfo.cs
@@ -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")]
diff --git a/src/SMAPI.Web/SMAPI.Web.csproj b/src/SMAPI.Web/SMAPI.Web.csproj
index 1d8e41c6..b0aaa8a9 100644
--- a/src/SMAPI.Web/SMAPI.Web.csproj
+++ b/src/SMAPI.Web/SMAPI.Web.csproj
@@ -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>