Updated namespace

This commit is contained in:
Martin Berg Alstad 2023-05-16 09:41:57 +02:00
parent 66d54eee07
commit 4ebce58f76
4 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
using Microsoft.AspNetCore.Mvc;
namespace pac_man_board_game.Controllers;
namespace pacMan.Controllers;
[ApiController]
[Route("api/[controller]")]

View File

@ -1,6 +1,6 @@
using Microsoft.AspNetCore.Mvc;
namespace pac_man_board_game.Controllers;
namespace pacMan.Controllers;
[ApiController]
[Route("api/[controller]")]

View File

@ -1,4 +1,4 @@
namespace pac_man_board_game;
namespace pacMan;
public class WeatherForecast
{

View File

@ -10,7 +10,7 @@
<DefaultItemExcludes>$(DefaultItemExcludes);$(SpaRoot)node_modules\**</DefaultItemExcludes>
<SpaProxyServerUrl>https://localhost:3000</SpaProxyServerUrl>
<SpaProxyLaunchCommand>npm run dev</SpaProxyLaunchCommand>
<RootNamespace>pac_man_board_game</RootNamespace>
<RootNamespace>pacMan</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>