Die (Windows) Software von Garmin gibt es hier zum downloaden (~60MB): https://www8.garmin.com/support/download_details.jsp?id=4435
"Alps" umfasst den ganzen Alpenbogen und ist ca 1.8 GB groß "Austria" umfasst nur Österreich und ist ca. 0.4 GB groß
2020-01-23T11:27:49.033982919Z Issue Sample App | |
2020-01-23T11:27:55.445397366Z [40m[32minfo[39m[22m[49m: Sample.Web.Startup[101] | |
2020-01-23T11:27:55.445436966Z Application started | |
2020-01-23T11:27:55.464208069Z Hosting environment: Production | |
2020-01-23T11:27:55.464294170Z Content root path: /app | |
2020-01-23T11:27:55.481498556Z Now listening on: http://[::]:80 | |
2020-01-23T11:27:55.481954061Z Application started. Press Ctrl+C to shut down. | |
2020-01-23T11:31:32.324679042Z Issue Sample App | |
2020-01-23T11:31:33.939620199Z [40m[32minfo[39m[22m[49m: Sample.Web.Startup[101] |
{ | |
"RunMigrationsAtStartup": true, | |
"CloudStorageEnabled": false, | |
"CloudStorageRootContainerName": "uploads", | |
"FileSystemBlobServiceRootDirectory": "%LOCALAPPDATA%\\trail365\\localblob", | |
"FileSystemBlobServiceRequestPath": "/localblob", | |
"CloudStorageMaxAgeSeconds": -1, |
{ | |
"Timestamp": null, | |
"EventId": 0, | |
"LogLevel": "Error", | |
"Category": "category", | |
"Message": "mystate", | |
"Exception": { | |
"Message": "Root", | |
"Type": "System.Exception", | |
"StackTrace": [ |
Die (Windows) Software von Garmin gibt es hier zum downloaden (~60MB): https://www8.garmin.com/support/download_details.jsp?id=4435
"Alps" umfasst den ganzen Alpenbogen und ist ca 1.8 GB groß "Austria" umfasst nur Österreich und ist ca. 0.4 GB groß
// Licensed to the .NET Foundation under one or more agreements. | |
// The .NET Foundation licenses this file to you under the MIT license. | |
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
namespace Microsoft.Extensions.Configuration.EnvironmentVariables | |
{ |
var builder = Host.CreateDefaultBuilder(args) | |
.ConfigureWebHostDefaults( | |
webBuilder => | |
{ | |
webBuilder | |
.UseStartup<Startup>() | |
.ConfigureAppConfiguration(app => | |
{ | |
var finding = app.Sources.Where(s => s is EnvironmentVariablesConfigurationSource).SingleOrDefault() as EnvironmentVariablesConfigurationSource; | |
if (finding != null) |