Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/add picture service #161

Open
wants to merge 26 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 13 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
3d96327
Add Picture Service Code from Internal
DanielHabenicht Aug 9, 2019
82d3dbb
Make settings configurable in appsettings
DanielHabenicht Aug 12, 2019
0b19553
add wwwroot to git history
Aug 20, 2019
75ea5a3
Add backend to the workspace folders.
Aug 20, 2019
9b543ff
Refactored PurgeTask
Aug 20, 2019
891d119
Refactored PurgeTask
Aug 20, 2019
164eb40
Merge branch 'feat/add-picture-service' of https://github.com/T-Syste…
Aug 21, 2019
81ddcc7
Created List for valid content types and refactored a bit
Aug 22, 2019
4350bd0
Lists all support mime types now in the error message
Aug 22, 2019
15a6dc5
Build definition for PictureService
GentleJames Aug 26, 2019
93121cc
Changed license link, listed more common content types first in the l…
Aug 28, 2019
3d7b94f
Replaced a comment to a more fitting place
Aug 28, 2019
6e6af4b
Replaced wrong name
Aug 29, 2019
e594714
Unnecessary comment
GentleJames Aug 29, 2019
ec1d6c1
refactor helperthings
paule96 Sep 1, 2019
93cf6a5
add IIS errors and IIS support
paule96 Sep 12, 2019
a5942c9
Merge branch 'master' into feat/add-picture-service
DanielHabenicht Mar 9, 2020
b643243
Update .azure/pipelines/pr/Phonebook.Backend.PictureService.pr.yml
DanielHabenicht Mar 9, 2020
0f434a6
Merge remote-tracking branch 'origin/master' into feat/add-picture-se…
paule96 Apr 11, 2020
d270b91
update to 3.1 dotnet and dependencies
paule96 Apr 11, 2020
0b03465
remove the iis check from peoplesoft!
paule96 Apr 11, 2020
bd44672
use authorization again
paule96 Apr 11, 2020
86fc60f
revert old changes
paule96 Apr 11, 2020
72a7727
revert old changes
paule96 Apr 11, 2020
4588904
remove old work
paule96 Apr 11, 2020
5789240
add ws federation as nuget ref 🙄
paule96 Apr 12, 2020
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
23 changes: 23 additions & 0 deletions .azure/pipelines/pr/Phonebook.Backend.PictureService.pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Starter pipeline
GentleJames marked this conversation as resolved.
Show resolved Hide resolved
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml

trigger: none
pr:
branches:
include:
- master
paths:
include:
- /Phonebook.Phonebook.Backend.PictureService/*
DanielHabenicht marked this conversation as resolved.
Show resolved Hide resolved


pool:
vmImage: 'ubuntu-latest'

steps:
- task: DotNetCoreCLI@2
inputs:
command: 'build'
projects: '**/Phonebook.Backend.PictureService/*.csproj'
36 changes: 36 additions & 0 deletions Phonebook.Backend/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
// 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
"version": "0.2.0",
"configurations": [
{
"name": ".NET Core Launch (web)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/Phonebook.Backend.PictureService/Phonebook.Backend.PictureService/bin/Debug/netcoreapp2.2/Phonebook.Backend.PictureService.dll",
"args": [],
"cwd": "${workspaceFolder}/Phonebook.Backend.PictureService/Phonebook.Backend.PictureService",
"stopAtEntry": false,
// Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser
"serverReadyAction": {
"action": "openExternally",
"pattern": "^\\s*Now listening on:\\s+(https?://\\S+)"
},
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"sourceFileMap": {
"/Views": "${workspaceFolder}/Views"
}
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach",
"processId": "${command:pickProcess}"
}
]
}
42 changes: 42 additions & 0 deletions Phonebook.Backend/.vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/Phonebook.Backend.PictureService/Phonebook.Backend.PictureService/Phonebook.Backend.PictureService.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "publish",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/Phonebook.Backend.PictureService/Phonebook.Backend.PictureService/Phonebook.Backend.PictureService.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "watch",
"command": "dotnet",
"type": "process",
"args": [
"watch",
"run",
"${workspaceFolder}/Phonebook.Backend.PictureService/Phonebook.Backend.PictureService/Phonebook.Backend.PictureService.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
}
]
}
Loading