1
0
mirror of https://github.com/bitwarden/server synced 2026-01-06 10:34:01 +00:00

Project configuration tune-up (#2994)

This commit is contained in:
Matt Bishop
2023-06-08 13:21:03 -04:00
committed by GitHub
parent cc4b6bb2fa
commit 6a9e7a1d0a
28 changed files with 95 additions and 59 deletions

View File

@@ -4,6 +4,8 @@
<UserSecretsId>bitwarden-Admin</UserSecretsId>
</PropertyGroup>
<PropertyGroup Condition=" '$(RunConfiguration)' == 'Admin' " />
<PropertyGroup Condition=" '$(RunConfiguration)' == 'Admin-SelfHost' " />
<ItemGroup>
<ProjectReference Include="..\..\util\MySqlMigrations\MySqlMigrations.csproj" />
<ProjectReference Include="..\..\util\PostgresMigrations\PostgresMigrations.csproj" />

View File

@@ -10,27 +10,24 @@
"profiles": {
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": false,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"Admin": {
"commandName": "Project",
"launchBrowser": false,
"applicationUrl": "http://localhost:62911/",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"applicationUrl": "http://localhost:62911/"
}
},
"Admin-SelfHost": {
"commandName": "Project",
"launchBrowser": false,
"applicationUrl": "http://localhost:62912/",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development",
"developSelfHosted": "true"
},
"applicationUrl": "http://localhost:62912/"
}
}
}
}