standardise project name (#336)
This commit is contained in:
parent
9791de306c
commit
cddcd9a8cf
|
@ -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
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -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
|
|
@ -1,4 +1,4 @@
|
|||
namespace Dewdrop.Models
|
||||
namespace StardewModdingAPI.Web.Models
|
||||
{
|
||||
/// <summary>Generic metadata about a mod.</summary>
|
||||
public class ModGenericModel
|
|
@ -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
|
|
@ -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
|
|
@ -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
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue