Skip to content

Instantly share code, notes, and snippets.

@XerShade
XerShade / project-template.csproj
Created August 20, 2023 17:59
The .csproj file template that I use for most of my C# projects.
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0-windows</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<BaseOutputPath>$(SolutionDir)bin\$(AssemblyName)</BaseOutputPath>
@kuju63
kuju63 / Dockerfile
Created November 21, 2019 15:30
Running redmine under the NGINX reverse proxy on Docker.
FROM redmine:4.0.5-alpine
COPY --chown=redmine:redmine config.ru config.ru