Skip to content
This repository has been archived by the owner on Apr 8, 2020. It is now read-only.

Commit

Permalink
For project.json-based projects, fix Kudu deployment by adding a .dep…
Browse files Browse the repository at this point in the history
…loyment file at the root
  • Loading branch information
SteveSandersonMS committed Jan 7, 2017
1 parent 2a1435d commit c377e6c
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 1 deletion.
2 changes: 2 additions & 0 deletions templates/Angular2Spa/.deployment
@@ -0,0 +1,2 @@
[config]
SCM_SCRIPT_GENERATOR_ARGS=--aspNetCore project.json
2 changes: 2 additions & 0 deletions templates/AureliaSpa/.deployment
@@ -0,0 +1,2 @@
[config]
SCM_SCRIPT_GENERATOR_ARGS=--aspNetCore project.json
2 changes: 2 additions & 0 deletions templates/KnockoutSpa/.deployment
@@ -0,0 +1,2 @@
[config]
SCM_SCRIPT_GENERATOR_ARGS=--aspNetCore project.json
2 changes: 2 additions & 0 deletions templates/ReactReduxSpa/.deployment
@@ -0,0 +1,2 @@
[config]
SCM_SCRIPT_GENERATOR_ARGS=--aspNetCore project.json
2 changes: 2 additions & 0 deletions templates/ReactSpa/.deployment
@@ -0,0 +1,2 @@
[config]
SCM_SCRIPT_GENERATOR_ARGS=--aspNetCore project.json
2 changes: 1 addition & 1 deletion templates/package-builder/src/yeoman/app/index.ts
Expand Up @@ -50,7 +50,7 @@ const templates = [
const sdkChoices = [{
value: '1.0.0-preview2-1-003177', // Current released version
name: 'project.json' + chalk.gray(' (compatible with .NET Core tooling preview 2 and Visual Studio 2015)'),
includeFiles: [/^project.json$/, /\.xproj$/, /_placeholder.txt$/]
includeFiles: [/^project.json$/, /\.xproj$/, /_placeholder.txt$/, /\.deployment$/]
}, {
value: '1.0.0-preview3-004056', // Version that ships with VS2017RC
name: '.csproj' + chalk.gray(' (compatible with .NET Core tooling preview 3 and Visual Studio 2017)'),
Expand Down

0 comments on commit c377e6c

Please sign in to comment.