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
<Window xmlns="https://github.com/avaloniaui" | |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
Title="AvaloniaApplication"> | |
<Window.Styles> | |
<Style Selector="TextBlock.b"> | |
<Setter Property="FontWeight" Value="Bold"/> | |
</Style> | |
</Window.Styles> | |
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
version: '2' | |
services: | |
postgres: | |
image: postgres:latest | |
volumes: | |
- /srv/postgresql/data:/var/lib/postgresql/data | |
environment: | |
- POSTGRES_PASSWORD=<your-password> | |
- POSTGRES_USER=teamcity |
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
public class NuGetDemo | |
{ | |
private readonly ILogger _logger; | |
public NuGetDemo() | |
{ | |
_logger = new NuGetLogger(); | |
} |