Add launchSettings.json to worker template (#7550)

* Add launchSettings.json to worker template #7545
* Switch back to the Web SDK
This commit is contained in:
Chris Ross 2019-02-13 15:54:15 -08:00 committed by GitHub
parent 519e6bbb7c
commit d1aa53721b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 1 deletions

2
src/ProjectTemplates/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
#launchSettings.json files are required for the templates.
!launchSettings.json

View File

@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>

View File

@ -0,0 +1,10 @@
{
"profiles": {
"Company.Application1": {
"commandName": "Project",
"environmentVariables": {
"DOTNET_ENVIRONMENT": "Development"
}
}
}
}