standardise project name (#336)

This commit is contained in:
Jesse Plamondon-Willard 2017-09-21 23:39:12 -04:00
parent 9791de306c
commit cddcd9a8cf
11 changed files with 14 additions and 14 deletions

View File

@ -1,12 +1,12 @@
using System;
using System.Net.Http;
using Microsoft.AspNetCore.Mvc;
using System.Threading.Tasks;
using Newtonsoft.Json;
using System.Collections.Generic;
using Dewdrop.Models;
using System.Net.Http;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Newtonsoft.Json;
using StardewModdingAPI.Web.Models;
namespace Dewdrop.Controllers
namespace StardewModdingAPI.Web.Controllers
{
/// <summary>Provides an API to perform mod update checks.</summary>
[Produces("application/json")]
@ -63,4 +63,4 @@ namespace Dewdrop.Controllers
}
}
}
}
}

View File

@ -1,4 +1,4 @@
namespace Dewdrop.Models
namespace StardewModdingAPI.Web.Models
{
/// <summary>A mod metadata response which provides a method to extract generic info.</summary>
internal interface IModModel

View File

@ -1,4 +1,4 @@
namespace Dewdrop.Models
namespace StardewModdingAPI.Web.Models
{
/// <summary>Generic metadata about a mod.</summary>
public class ModGenericModel

View File

@ -1,6 +1,6 @@
using Newtonsoft.Json;
using Newtonsoft.Json;
namespace Dewdrop.Models
namespace StardewModdingAPI.Web.Models
{
/// <summary>A mod metadata response from Nexus Mods.</summary>
public class NexusResponseModel : IModModel

View File

@ -1,7 +1,7 @@
using System.IO;
using Microsoft.AspNetCore.Hosting;
namespace Dewdrop
namespace StardewModdingAPI.Web
{
/// <summary>The main app entry point.</summary>
public class Program

View File

@ -4,7 +4,7 @@ using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
namespace Dewdrop
namespace StardewModdingAPI.Web
{
/// <summary>The web app startup configuration.</summary>
public class Startup

View File

@ -29,7 +29,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StardewModdingAPI.Installer
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StardewModdingAPI.Tests", "StardewModdingAPI.Tests\StardewModdingAPI.Tests.csproj", "{36CCB19E-92EB-48C7-9615-98EEFD45109B}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Dewdrop", "..\Dewdrop\Dewdrop.csproj", "{A308F679-51A3-4006-92D5-BAEC7EBD01A1}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "StardewModdingAPI.Web", "StardewModdingAPI.Web\StardewModdingAPI.Web.csproj", "{A308F679-51A3-4006-92D5-BAEC7EBD01A1}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution