git reset --soft HEAD~1
It undoes the most recent commit whilst keeping the changes made in that commit to staging.
git checkout master
git merge development
FROM mcr.microsoft.com/dotnet/sdk:6.0.300-bullseye-slim | |
ENV EF_VERSION=7.0.0 | |
ENV user dotnetuser | |
ENV PATH=/opt/bin:${PATH} | |
RUN dotnet tool install dotnet-ef --tool-path /opt/bin --version ${EF_VERSION} | |
WORKDIR /src |
using System; | |
namespace Core.Interfaces | |
{ | |
/// <summary> | |
/// An helper to manage generated events after a set interval, due time | |
/// with an option to generate recurring events. | |
/// </summary> | |
public interface ITimerHelper | |
{ |
We can follow this document for CSharp coding standards.
Additionally our default editorconfig file must be update with below settings.
[*.cs]
indent_size = 4
end_of_line = crlf