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
@echo off | |
if "%1"=="" goto help | |
:: Put the work dir here | |
set "workdir=%1 | |
set "workdir=%workdir:\=\\%" | |
setlocal enableDelayedExpansion | |
for /f "usebackq tokens=* delims=" %%a in (` |
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
using Microsoft.OpenApi.Models; | |
using Swashbuckle.AspNetCore.Swagger; | |
using Swashbuckle.AspNetCore.SwaggerGen; | |
using System.Collections.Generic; | |
namespace BoundedContext.Web.Swagger | |
{ | |
/// <summary> | |
/// This class orginally was created by https://gist.github.com/smaglio81 and modified version used in this project you can find here | |
/// https://gist.github.com/rafalkasa/01d5e3b265e5aa075678e0adfd54e23f |