Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 0 additions & 26 deletions .github/workflows/dotnet-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,29 +55,3 @@ jobs:
Authentication__Cookie__Domain: localhost
DataProtection__ApplicationName: FunderMapsTest
ConnectionStrings__FunderMapsConnection: "Server=localhost;Database=fundermaps;User Id=fundermaps_webapp"

# - name: Testing Portal
# run: dotnet test --nologo --configuration ${{ env.BUILD_CONFIG }} --no-restore --filter FunderMaps.IntegrationTests.Portal
# env:
# ASPNETCORE_ENVIRONMENT: Production
# UseExternalServices: False
# Jwt__Issuer: "FunderMapsTest"
# Jwt__Audience: "FunderMapsTest"
# Jwt__TokenValidity: 10
# Jwt__SignatureKey: somelargetextstringusedinsignatures
# Incident__ClientId: 42
# Incident__Recipients__0: info@example.com
# ConnectionStrings__FunderMapsConnection: "Server=localhost;Database=fundermaps;User Id=fundermaps_portal"

# - name: Testing Webservice
# run: dotnet test --nologo --configuration ${{ env.BUILD_CONFIG }} --no-restore --filter FunderMaps.IntegrationTests.Webservice
# env:
# ASPNETCORE_ENVIRONMENT: Production
# UseExternalServices: False
# Jwt__Issuer: "FunderMapsTest"
# Jwt__Audience: "FunderMapsTest"
# Jwt__TokenValidity: 10
# Jwt__SignatureKey: somelargetextstringusedinsignatures
# Incident__ClientId: 42
# Incident__Recipients__0: info@example.com
# ConnectionStrings__FunderMapsConnection: "Server=localhost;Database=fundermaps;User Id=fundermaps_webservice"
23 changes: 2 additions & 21 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,6 @@
{
"version": "0.2.0",
"configurations": [
{
// Use IntelliSense to find out which attributes exist for C# debugging
// Use hover for the description of the existing attributes
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
"name": "FunderMaps.WsClient",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/src/FunderMaps.WsClient/bin/Debug/net8.0/FunderMaps.WsClient.dll",
"args": [],
"cwd": "${workspaceFolder}/src/FunderMaps.WsClient",
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
"console": "integratedTerminal",
"stopAtEntry": false,
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
{
// Use IntelliSense to find out which attributes exist for C# debugging
// Use hover for the description of the existing attributes
Expand All @@ -29,7 +10,7 @@
"request": "launch",
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/src/FunderMaps.Webservice/bin/Debug/net8.0/FunderMaps.Webservice.dll",
"program": "${workspaceFolder}/src/FunderMaps.Webservice/bin/Debug/net10.0/FunderMaps.Webservice.dll",
"args": [],
"cwd": "${workspaceFolder}/src/FunderMaps.Webservice",
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
Expand All @@ -48,7 +29,7 @@
"request": "launch",
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/src/FunderMaps.WebApi/bin/Debug/net8.0/FunderMaps.WebApi.dll",
"program": "${workspaceFolder}/src/FunderMaps.WebApi/bin/Debug/net10.0/FunderMaps.WebApi.dll",
"args": [],
"cwd": "${workspaceFolder}/src/FunderMaps.WebApi",
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ When using VS Code the 'debug' section should list all the applications. Just ru

## Configuration

See the `contrib/etc/_appsettings.{ENV}.json` directory for configuration files for each environment. You can copy these configuration files to the project source directory (`src/{project}`).
See `contrib/etc/` for the `_appsettings.{ENV}.json` configuration files for each environment. You can copy these configuration files to the project source directory (`src/{project}`).

## Using the application

Expand Down
Loading