This file contains hidden or 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
function read_solution() { | |
echo "Parsing solution $1" | |
while IFS='' read -r line || [[ -n "$line" ]]; do | |
if [[ $line =~ \"([^\"]*.csproj)\" ]]; then | |
project="${BASH_REMATCH[1]}" | |
read_project "$(echo "$project"|tr '\\' '/')" | |
fi | |
done < "$1" |
This file contains hidden or 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
global using FastEndpoints; | |
using System.Reflection; | |
using FastEndpoints.Swagger; | |
using FluentMigrator.Runner; | |
using OpenTelemetry.Instrumentation.AspNetCore; | |
using Microsoft.Extensions.Caching.Distributed; | |
using Microsoft.Extensions.Caching.StackExchangeRedis; | |
using QuickI18N.API.Caching; |
This file contains hidden or 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
import Ajv from 'ajv/dist/2020'; | |
import { | |
ValidationArguments, | |
ValidatorConstraint, | |
ValidatorConstraintInterface, | |
ValidatorOptions, | |
registerDecorator, | |
} from 'class-validator'; |
OlderNewer