Rename to trainav (cont)

This commit is contained in:
Laura Hausmann 2022-04-29 16:48:22 +02:00
parent bcfd9b6a13
commit ec16ec5def
Signed by: zotan
GPG key ID: D044E84C5BE01605
3 changed files with 4 additions and 12 deletions

View file

@ -1,14 +1,6 @@
{ {
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:25266",
"sslPort": 44319
}
},
"profiles": { "profiles": {
"bahnplan.web": { "trainav.web": {
"commandName": "Project", "commandName": "Project",
"launchBrowser": false, "launchBrowser": false,
"applicationUrl": "https://localhost:5001;http://localhost:5000", "applicationUrl": "https://localhost:5001;http://localhost:5000",

View file

@ -24,14 +24,14 @@ namespace trainav.web {
services.AddControllers(); services.AddControllers();
services.AddStackExchangeRedisCache(options => { services.AddStackExchangeRedisCache(options => {
options.Configuration = "localhost"; options.Configuration = "localhost";
options.InstanceName = "bahnplan_development"; options.InstanceName = "trainav_development";
}); });
#else #else
services.AddControllers(); services.AddControllers();
services.AddStackExchangeRedisCache(options => services.AddStackExchangeRedisCache(options =>
{ {
options.Configuration = "localhost"; options.Configuration = "localhost";
options.InstanceName = "bahnplan_production"; options.InstanceName = "trainav_production";
}); });
#endif #endif
} }

View file

@ -2,7 +2,7 @@
<PropertyGroup> <PropertyGroup>
<TargetFramework>net60</TargetFramework> <TargetFramework>net60</TargetFramework>
<RootNamespace>bahnplan.web</RootNamespace> <RootNamespace>trainav.web</RootNamespace>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>