├── FAQ.md ├── NETFrameworkToNetStandard.md ├── NETStandard2.0WithNuGet.md ├── PclToNetStandard.md ├── RC1ToRC2.md ├── README.md ├── XProjNetStandard.md ├── examples.cs ├── packages ├── aspnet.json └── corefx.json └── platforms.cs /FAQ.md: -------------------------------------------------------------------------------- 1 | # Frequently Asked Questions 2 | -------------------------------------------------------------------------------- /NETFrameworkToNetStandard.md: -------------------------------------------------------------------------------- 1 | # Converting a .NET Framework class library to NETStandard 2 | -------------------------------------------------------------------------------- /NETStandard2.0WithNuGet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidfowl/NetStandard/HEAD/NETStandard2.0WithNuGet.md -------------------------------------------------------------------------------- /PclToNetStandard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidfowl/NetStandard/HEAD/PclToNetStandard.md -------------------------------------------------------------------------------- /RC1ToRC2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidfowl/NetStandard/HEAD/RC1ToRC2.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidfowl/NetStandard/HEAD/README.md -------------------------------------------------------------------------------- /XProjNetStandard.md: -------------------------------------------------------------------------------- 1 | # Creating Netstandard packages with xproj and the .NET CLI 2 | -------------------------------------------------------------------------------- /examples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidfowl/NetStandard/HEAD/examples.cs -------------------------------------------------------------------------------- /packages/aspnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidfowl/NetStandard/HEAD/packages/aspnet.json -------------------------------------------------------------------------------- /packages/corefx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidfowl/NetStandard/HEAD/packages/corefx.json -------------------------------------------------------------------------------- /platforms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidfowl/NetStandard/HEAD/platforms.cs --------------------------------------------------------------------------------