- TS application listening port: 7777
|-- dist
|-- src
|-- .dockerignore
|-- Dockerfile
| version: '3.4' | |
| services: | |
| db: | |
| image: postgres:13.0 | |
| container_name: postgresql-13 | |
| restart: always | |
| environment: | |
| POSTGRES_USER: promo | |
| POSTGRES_PASSWORD: Str0ngPassword! |
| <?xml version="1.0" encoding="utf-8"?> | |
| <Project> | |
| <PropertyGroup> | |
| <Description>An implementation of StyleCop rules using the .NET Compiler Platform</Description> | |
| <Product>StyleCop.Analyzers</Product> | |
| <Company>Tunnel Vision Laboratories, LLC</Company> | |
| <Copyright>Copyright © Tunnel Vision Laboratories, LLC 2015</Copyright> | |
| <NeutralLanguage>en-US</NeutralLanguage> |
| /// <summary> | |
| /// Get https://localhost:5001/home/StringEqualsTest | |
| /// </summary> | |
| public async Task<IActionResult> StringEqualsTest() | |
| { | |
| (string post1, bool isCacheHit1) = await GetValuesLower("post1"); | |
| (string post2, bool isCacheHit2) = await GetValuesLower("post2"); | |
| (string post1_1, bool isCacheHit1_1) = await GetValuesLower("post1"); |