Skip to content

Instantly share code, notes, and snippets.

@lambertj
lambertj / readme.md
Created July 28, 2021 21:32 — forked from ZacharyPatten/readme.md
C# GitHub Repository Guide

GitHub Repository Checklist (C#)

Have a repository on GitHub? Planning on making a repository on GitHub? This checklist is intended to introduce you to various features that may help you make the most of your GitHub repository with specific recommendations for C# repsoitories.

Checklist

These are only recommendations.
They may not be appropriate for all repositories.
They are in no particular order.
Click each item to expand for more information.

@lambertj
lambertj / Example1.cs
Created January 8, 2018 12:34 — forked from davidfowl/Example1.cs
How .NET Standard relates to .NET Platforms
namespace Analogy
{
/// <summary>
/// This example shows that a library that needs access to target .NET Standard 1.3
/// can only access APIs available in that .NET Standard. Even though similar the APIs exist on .NET
/// Framework 4.5, it implements a version of .NET Standard that isn't compatible with the library.
/// </summary>INetCoreApp10
class Example1
{
public void Net45Application(INetFramework45 platform)