Match launchSettings variable to sourceName in template.json (#354)

Addresses #346
This commit is contained in:
Jass Bagga 2018-03-13 09:52:20 -07:00 committed by GitHub
parent 0879dbd082
commit dbc5e38d04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
62 changed files with 78 additions and 78 deletions

View File

@ -3,7 +3,7 @@
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
<PropertyGroup Label="Package Versions">
<InternalAspNetCoreSdkPackageVersion>2.1.0-preview2-15735</InternalAspNetCoreSdkPackageVersion>
<InternalAspNetCoreSdkPackageVersion>2.1.0-preview2-15736</InternalAspNetCoreSdkPackageVersion>
<MicrosoftAspNetCoreAllPackageVersion>2.1.0-preview2-30285</MicrosoftAspNetCoreAllPackageVersion>
<MicrosoftAspNetCoreAuthenticationCookiesPackageVersion>2.1.0-preview2-30285</MicrosoftAspNetCoreAuthenticationCookiesPackageVersion>
<MicrosoftAspNetCoreAuthenticationJwtBearerPackageVersion>2.1.0-preview2-30285</MicrosoftAspNetCoreAuthenticationJwtBearerPackageVersion>

View File

@ -1,2 +1,2 @@
version:2.1.0-preview2-15735
commithash:e1c2a4b79748d853196318c6e2e52151846070bd
version:2.1.0-preview2-15736
commithash:36ec5cebaad48f278fd9420fe459d7d0640ec80f

View File

@ -22,13 +22,13 @@
</PropertyGroup>
<ItemGroup>
<GeneratedContent Include="Aurelia-CSharp.csproj.in" OutputPath="content/Aurelia-CSharp/AureliaSpa.csproj">
<GeneratedContent Include="Aurelia-CSharp.csproj.in" OutputPath="content/Aurelia-CSharp/Company.WebApplication1.csproj">
<Properties>$(GeneratedContentProperties)</Properties>
</GeneratedContent>
<GeneratedContent Include="Knockout-CSharp.csproj.in" OutputPath="content/Knockout-CSharp/KnockoutSpa.csproj">
<GeneratedContent Include="Knockout-CSharp.csproj.in" OutputPath="content/Knockout-CSharp/Company.WebApplication1.csproj">
<Properties>$(GeneratedContentProperties)</Properties>
</GeneratedContent>
<GeneratedContent Include="Vue-CSharp.csproj.in" OutputPath="content/Vue-CSharp/VueSpa.csproj">
<GeneratedContent Include="Vue-CSharp.csproj.in" OutputPath="content/Vue-CSharp/Company.WebApplication1.csproj">
<Properties>$(GeneratedContentProperties)</Properties>
</GeneratedContent>
</ItemGroup>

View File

@ -11,11 +11,11 @@
"preferNameDirectory": true,
"primaryOutputs": [
{
"path": "AureliaSpa.csproj"
"path": "Company.WebApplication1.csproj"
}
],
"shortName": "aurelia",
"sourceName": "AureliaSpa",
"sourceName": "Company.WebApplication1",
"sources": [
{
"source": "./",

View File

@ -5,7 +5,7 @@ export class App {
router: Router;
configureRouter(config: RouterConfiguration, router: Router) {
config.title = 'AureliaSpa';
config.title = 'Company.WebApplication1';
config.map([{
route: [ '', 'home' ],
name: 'home',

View File

@ -9,7 +9,7 @@
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#/home">AureliaSpa</a>
<a class="navbar-brand" href="#/home">Company.WebApplication1</a>
</div>
<div class="clearfix"></div>
<div class="navbar-collapse collapse">

View File

@ -5,7 +5,7 @@ using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
namespace AureliaSpa.Controllers
namespace Company.WebApplication1.Controllers
{
public class HomeController : Controller
{

View File

@ -4,7 +4,7 @@ using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
namespace AureliaSpa.Controllers
namespace Company.WebApplication1.Controllers
{
[Route("api/[controller]")]
public class SampleDataController : Controller

View File

@ -8,7 +8,7 @@ using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging;
namespace AureliaSpa
namespace Company.WebApplication1
{
public class Program
{

View File

@ -10,7 +10,7 @@ using Microsoft.AspNetCore.SpaServices.Webpack;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
namespace AureliaSpa
namespace Company.WebApplication1
{
public class Startup
{

View File

@ -1,9 +1,9 @@
<!DOCTYPE html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>@ViewData["Title"] - AureliaSpa</title>
<title>@ViewData["Title"] - Company.WebApplication1</title>
<base href="~/" />
<link rel="stylesheet" href="~/dist/vendor.css" asp-append-version="true" />

View File

@ -1,3 +1,3 @@
@using AureliaSpa
@using Company.WebApplication1
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
@addTagHelper *, Microsoft.AspNetCore.SpaServices

View File

@ -1,5 +1,5 @@
{
"name": "AureliaSpa",
"name": "Company.WebApplication1",
"version": "0.0.0",
"dependencies": {
"@types/webpack-env": {

View File

@ -1,5 +1,5 @@
{
"name": "AureliaSpa",
"name": "Company.WebApplication1",
"private": true,
"version": "0.0.0",
"devDependencies": {

View File

@ -11,11 +11,11 @@
"preferNameDirectory": true,
"primaryOutputs": [
{
"path": "KnockoutSpa.csproj"
"path": "Company.WebApplication1.csproj"
}
],
"shortName": "knockout",
"sourceName": "KnockoutSpa",
"sourceName": "Company.WebApplication1",
"sources": [
{
"source": "./",

View File

@ -7,7 +7,7 @@
<span class='icon-bar'></span>
<span class='icon-bar'></span>
</button>
<a class='navbar-brand' href='/'>KnockoutSpa</a>
<a class='navbar-brand' href='/'>Company.WebApplication1</a>
</div>
<div class='clearfix'></div>
<div class='navbar-collapse collapse'>

View File

@ -5,7 +5,7 @@ using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
namespace KnockoutSpa.Controllers
namespace Company.WebApplication1.Controllers
{
public class HomeController : Controller
{

View File

@ -4,7 +4,7 @@ using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
namespace KnockoutSpa.Controllers
namespace Company.WebApplication1.Controllers
{
[Route("api/[controller]")]
public class SampleDataController : Controller

View File

@ -8,7 +8,7 @@ using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging;
namespace KnockoutSpa
namespace Company.WebApplication1
{
public class Program
{

View File

@ -10,7 +10,7 @@ using Microsoft.AspNetCore.SpaServices.Webpack;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
namespace KnockoutSpa
namespace Company.WebApplication1
{
public class Startup
{

View File

@ -1,9 +1,9 @@
<!DOCTYPE html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>@ViewData["Title"] - KnockoutSpa</title>
<title>@ViewData["Title"] - Company.WebApplication1</title>
<base href="~/" />
<link rel="stylesheet" href="~/dist/vendor.css" asp-append-version="true" />

View File

@ -1,3 +1,3 @@
@using KnockoutSpa
@using Company.WebApplication1
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
@addTagHelper *, Microsoft.AspNetCore.SpaServices

View File

@ -1,5 +1,5 @@
{
"name": "KnockoutSpa",
"name": "Company.WebApplication1",
"version": "0.0.0",
"dependencies": {
"@types/core-js": {

View File

@ -1,5 +1,5 @@
{
"name": "KnockoutSpa",
"name": "Company.WebApplication1",
"private": true,
"version": "0.0.0",
"devDependencies": {

View File

@ -11,11 +11,11 @@
"preferNameDirectory": true,
"primaryOutputs": [
{
"path": "VueSpa.csproj"
"path": "Company.WebApplication1.csproj"
}
],
"shortName": "vue",
"sourceName": "VueSpa",
"sourceName": "Company.WebApplication1",
"sources": [
{
"source": "./",

View File

@ -8,7 +8,7 @@
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">VueSpa</a>
<a class="navbar-brand" href="/">Company.WebApplication1</a>
</div>
<div class="clearfix"></div>
<div class="navbar-collapse collapse">

View File

@ -5,7 +5,7 @@ using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
namespace VueSpa.Controllers
namespace Company.WebApplication1.Controllers
{
public class HomeController : Controller
{

View File

@ -4,7 +4,7 @@ using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
namespace VueSpa.Controllers
namespace Company.WebApplication1.Controllers
{
[Route("api/[controller]")]
public class SampleDataController : Controller

View File

@ -8,7 +8,7 @@ using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging;
namespace VueSpa
namespace Company.WebApplication1
{
public class Program
{

View File

@ -10,7 +10,7 @@ using Microsoft.AspNetCore.SpaServices.Webpack;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
namespace VueSpa
namespace Company.WebApplication1
{
public class Startup
{

View File

@ -1,9 +1,9 @@
<!DOCTYPE html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>@ViewData["Title"] - VueSpa</title>
<title>@ViewData["Title"] - Company.WebApplication1</title>
<base href="~/" />
<link rel="stylesheet" href="~/dist/vendor.css" asp-append-version="true" />

View File

@ -1,3 +1,3 @@
@using VueSpa
@using Company.WebApplication1
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
@addTagHelper *, Microsoft.AspNetCore.SpaServices

View File

@ -1,5 +1,5 @@
{
"name": "VueSpa",
"name": "Company.WebApplication1",
"version": "0.0.0",
"dependencies": {
"@types/webpack-env": {

View File

@ -1,5 +1,5 @@
{
"name": "VueSpa",
"name": "Company.WebApplication1",
"private": true,
"version": "0.0.0",
"devDependencies": {

View File

@ -24,13 +24,13 @@
</PropertyGroup>
<ItemGroup>
<GeneratedContent Include="Angular-CSharp.csproj.in" OutputPath="content/Angular-CSharp/AngularSpa.csproj">
<GeneratedContent Include="Angular-CSharp.csproj.in" OutputPath="content/Angular-CSharp/Company.WebApplication1.csproj">
<Properties>$(GeneratedContentProperties)</Properties>
</GeneratedContent>
<GeneratedContent Include="React-CSharp.csproj.in" OutputPath="content/React-CSharp/ReactSpa.csproj">
<GeneratedContent Include="React-CSharp.csproj.in" OutputPath="content/React-CSharp/Company.WebApplication1.csproj">
<Properties>$(GeneratedContentProperties)</Properties>
</GeneratedContent>
<GeneratedContent Include="ReactRedux-CSharp.csproj.in" OutputPath="content/ReactRedux-CSharp/ReactReduxSpa.csproj">
<GeneratedContent Include="ReactRedux-CSharp.csproj.in" OutputPath="content/ReactRedux-CSharp/Company.WebApplication1.csproj">
<Properties>$(GeneratedContentProperties)</Properties>
</GeneratedContent>
</ItemGroup>

View File

@ -11,11 +11,11 @@
"preferNameDirectory": true,
"primaryOutputs": [
{
"path": "AngularSpa.csproj"
"path": "Company.WebApplication1.csproj"
}
],
"shortName": "angular",
"sourceName": "AngularSpa",
"sourceName": "Company.WebApplication1",
"sources": [
{
"source": "./",

View File

@ -1,7 +1,7 @@
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"project": {
"name": "AngularSpa"
"name": "Company.WebApplication1"
},
"apps": [
{

View File

@ -1,5 +1,5 @@
{
"name": "AngularSpa",
"name": "Company.WebApplication1",
"version": "0.0.0",
"lockfileVersion": 1,
"requires": true,

View File

@ -1,5 +1,5 @@
{
"name": "AngularSpa",
"name": "Company.WebApplication1",
"version": "0.0.0",
"license": "MIT",
"scripts": {

View File

@ -7,7 +7,7 @@
<span class='icon-bar'></span>
<span class='icon-bar'></span>
</button>
<a class='navbar-brand' [routerLink]='["/"]'>AngularSpa</a>
<a class='navbar-brand' [routerLink]='["/"]'>Company.WebApplication1</a>
</div>
<div class='clearfix'></div>
<div class='navbar-collapse collapse' [ngClass]='{ "in": isExpanded }'>

View File

@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="utf-8">
<title>AngularSpa</title>
<title>Company.WebApplication1</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">

View File

@ -4,7 +4,7 @@ using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
namespace AngularSpa.Controllers
namespace Company.WebApplication1.Controllers
{
[Route("api/[controller]")]
public class SampleDataController : Controller

View File

@ -8,7 +8,7 @@ using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging;
namespace AngularSpa
namespace Company.WebApplication1
{
public class Program
{

View File

@ -5,7 +5,7 @@ using Microsoft.AspNetCore.SpaServices.AngularCli;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
namespace AngularSpa
namespace Company.WebApplication1
{
public class Startup
{

View File

@ -11,11 +11,11 @@
"preferNameDirectory": true,
"primaryOutputs": [
{
"path": "ReactSpa.csproj"
"path": "Company.WebApplication1.csproj"
}
],
"shortName": "react",
"sourceName": "ReactSpa",
"sourceName": "Company.WebApplication1",
"sources": [
{
"source": "./",

View File

@ -1,5 +1,5 @@
{
"name": "ReactSpa",
"name": "Company.WebApplication1",
"version": "0.1.0",
"lockfileVersion": 1,
"requires": true,

View File

@ -1,5 +1,5 @@
{
"name": "ReactSpa",
"name": "Company.WebApplication1",
"version": "0.1.0",
"private": true,
"dependencies": {

View File

@ -20,7 +20,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>ReactSpa</title>
<title>Company.WebApplication1</title>
</head>
<body>
<noscript>

View File

@ -1,6 +1,6 @@
{
"short_name": "ReactSpa",
"name": "ReactSpa",
"short_name": "Company.WebApplication1",
"name": "Company.WebApplication1",
"icons": [
{
"src": "favicon.ico",

View File

@ -12,7 +12,7 @@ export class NavMenu extends Component {
<Navbar inverse fixedTop fluid collapseOnSelect>
<Navbar.Header>
<Navbar.Brand>
<Link to={'/'}>ReactSpa</Link>
<Link to={'/'}>Company.WebApplication1</Link>
</Navbar.Brand>
<Navbar.Toggle />
</Navbar.Header>

View File

@ -4,7 +4,7 @@ using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
namespace ReactSpa.Controllers
namespace Company.WebApplication1.Controllers
{
[Route("api/[controller]")]
public class SampleDataController : Controller

View File

@ -8,7 +8,7 @@ using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging;
namespace ReactSpa
namespace Company.WebApplication1
{
public class Program
{

View File

@ -6,7 +6,7 @@ using Microsoft.AspNetCore.SpaServices.ReactDevelopmentServer;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
namespace ReactSpa
namespace Company.WebApplication1
{
public class Startup
{

View File

@ -11,11 +11,11 @@
"preferNameDirectory": true,
"primaryOutputs": [
{
"path": "ReactReduxSpa.csproj"
"path": "Company.WebApplication1.csproj"
}
],
"shortName": "reactredux",
"sourceName": "ReactReduxSpa",
"sourceName": "Company.WebApplication1",
"sources": [
{
"source": "./",

View File

@ -1,5 +1,5 @@
{
"name": "ReactReduxSpa",
"name": "Company.WebApplication1",
"version": "0.1.0",
"lockfileVersion": 1,
"requires": true,

View File

@ -1,5 +1,5 @@
{
"name": "ReactReduxSpa",
"name": "Company.WebApplication1",
"version": "0.1.0",
"private": true,
"dependencies": {

View File

@ -20,7 +20,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>ReactReduxSpa</title>
<title>Company.WebApplication1</title>
</head>
<body>
<noscript>

View File

@ -1,6 +1,6 @@
{
"short_name": "ReactReduxSpa",
"name": "ReactReduxSpa",
"short_name": "Company.WebApplication1",
"name": "Company.WebApplication1",
"icons": [
{
"src": "favicon.ico",

View File

@ -8,7 +8,7 @@ export default props => (
<Navbar inverse fixedTop fluid collapseOnSelect>
<Navbar.Header>
<Navbar.Brand>
<Link to={'/'}>ReactReduxSpa</Link>
<Link to={'/'}>Company.WebApplication1</Link>
</Navbar.Brand>
<Navbar.Toggle />
</Navbar.Header>

View File

@ -4,7 +4,7 @@ using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
namespace ReactReduxSpa.Controllers
namespace Company.WebApplication1.Controllers
{
[Route("api/[controller]")]
public class SampleDataController : Controller

View File

@ -8,7 +8,7 @@ using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging;
namespace ReactReduxSpa
namespace Company.WebApplication1
{
public class Program
{

View File

@ -6,7 +6,7 @@ using Microsoft.AspNetCore.SpaServices.ReactDevelopmentServer;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
namespace ReactReduxSpa
namespace Company.WebApplication1
{
public class Startup
{