Skip to content

Commit e5f4262

Browse files
committed
Client dependencies updated,
namespace changed to respect C# naming conventions
1 parent e449679 commit e5f4262

File tree

9 files changed

+1129
-895
lines changed

9 files changed

+1129
-895
lines changed

asp-net-core-vue-starter.csproj renamed to AspNetCoreVueStarter.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
<Company>Software Ateliers</Company>
1212
<Description>ASP.NET Core + Vue.js starter project</Description>
1313
<Copyright>MIT 2018 Software Ateliers</Copyright>
14+
<AssemblyName>AspNetCoreVueStarter</AssemblyName>
15+
<RootNamespace>AspNetCoreVueStarter</RootNamespace>
1416
</PropertyGroup>
1517

1618
<ItemGroup>

asp-net-core-vue-starter.sln renamed to AspNetCoreVueStarter.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 15
44
VisualStudioVersion = 15.0.28010.2003
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "asp-net-core-vue-starter", "asp-net-core-vue-starter.csproj", "{D1A4B196-FA92-4822-8C25-07D53A2903EF}"
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AspNetCoreVueStarter", "AspNetCoreVueStarter.csproj", "{D1A4B196-FA92-4822-8C25-07D53A2903EF}"
77
EndProject
88
Global
99
GlobalSection(SolutionConfigurationPlatforms) = preSolution

ClientApp/package-lock.json

Lines changed: 1114 additions & 882 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ClientApp/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@
1313
"vue-class-component": "^6.2.0",
1414
"vue-property-decorator": "^7.0.0",
1515
"vue-router": "^3.0.1",
16-
"vuetify": "^1.2.2",
16+
"vuetify": "^1.2.3",
1717
"vuex": "^3.0.1",
1818
"vuex-class": "^0.3.1"
1919
},
2020
"devDependencies": {
2121
"@babel/polyfill": "^7.0.0",
22-
"@vue/cli-plugin-babel": "^3.0.1",
23-
"@vue/cli-plugin-pwa": "^3.0.1",
24-
"@vue/cli-plugin-typescript": "^3.0.1",
25-
"@vue/cli-service": "^3.0.1",
22+
"@vue/cli-plugin-babel": "^3.0.3",
23+
"@vue/cli-plugin-pwa": "^3.0.3",
24+
"@vue/cli-plugin-typescript": "^3.0.3",
25+
"@vue/cli-service": "^3.0.3",
2626
"axios": "^0.18.0",
27-
"babel-plugin-transform-imports": "^1.5.0",
27+
"babel-plugin-transform-imports": "^1.5.1",
2828
"stylus": "^0.54.5",
2929
"stylus-loader": "^3.0.2",
3030
"typescript": "^3.0.3",

Controllers/SampleDataController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Threading.Tasks;
55
using Microsoft.AspNetCore.Mvc;
66

7-
namespace asp_net_core_vue_starter.Controllers
7+
namespace AspNetCoreVueStarter.Controllers
88
{
99
[Route("api/[controller]")]
1010
public class SampleDataController : Controller

Pages/Error.cshtml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using Microsoft.AspNetCore.Mvc;
77
using Microsoft.AspNetCore.Mvc.RazorPages;
88

9-
namespace asp_net_core_vue_starter.Pages
9+
namespace AspNetCoreVueStarter.Pages
1010
{
1111
public class ErrorModel : PageModel
1212
{

Pages/_ViewImports.cshtml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
@using asp_net_core_vue_starter
2-
@namespace asp_net_core_vue_starter.Pages
1+
@using AspNetCoreVueStarter
2+
@namespace AspNetCoreVueStarter.Pages
33
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers

Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
using Microsoft.Extensions.Configuration;
99
using Microsoft.Extensions.Logging;
1010

11-
namespace asp_net_core_vue_starter
11+
namespace AspNetCoreVueStarter
1212
{
1313
public class Program
1414
{

Startup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using Microsoft.Extensions.Configuration;
55
using Microsoft.Extensions.DependencyInjection;
66

7-
namespace asp_net_core_vue_starter
7+
namespace AspNetCoreVueStarter
88
{
99
public class Startup
1010
{

0 commit comments

Comments
 (0)