This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file shows how to setup the template for your projects | |
include: | |
- project: 'templates' | |
file: 'gitlab-templates/dotnet-framework.v1.gitlab-ci.yml' | |
variables: | |
ENABLE_UNITTESTS: 'true' | |
DEFAULT_IIS_SITENAME: "my-awesome-deployment.nl" # For dev deploys this gets prefixed with 'development.', for prod it gets prefixed with 'www.' | |
DEFAULT_DEVELOPMENT_URL: "https://my-awesome-deployment.devserver.nl/" | |
DEFAULT_PRODUCTION_URL: "https://www.my-awesome-deployment.nl/" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DECLARE @Object AS INT; | |
DECLARE @ResponseText AS VARCHAR(8000); | |
DECLARE @Body AS VARCHAR(8000) = | |
'{ | |
"what": 1, | |
"ever": "you", | |
"need": "to send as the body" | |
}' | |
EXEC sp_OACreate 'MSXML2.XMLHTTP', @Object OUT; |