Created
April 25, 2016 10:46
-
-
Save Ciantic/978def84735a173f14acf41d5bf9214c to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| <?xml version="1.0" encoding="utf-8"?> | |
| <configuration> | |
| <packageSources> | |
| <!--To inherit the global NuGet package sources remove the <clear/> line below --> | |
| <clear /> | |
| <add key="aspnetcirelease" value="https://www.myget.org/F/aspnetcirelease/api/v3/index.json" /> | |
| <add key="dotnet-core" value="https://www.myget.org/F/dotnet-core/api/v3/index.json" /> | |
| <add key="api.nuget.org" value="https://api.nuget.org/v3/index.json" /> | |
| </packageSources> | |
| </configuration> |
This file contains hidden or 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
| using System; | |
| namespace MyLib | |
| { | |
| public class Libbie | |
| { | |
| public static string MyLib() | |
| { | |
| return "Hello world"; | |
| } | |
| } | |
| } |
This file contains hidden or 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": "1.0.0-*", | |
| "dependencies": { | |
| "NETStandard.Library": "1.5.0-rc2-24022" | |
| }, | |
| "frameworks": { | |
| "netstandard1.2": {} | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment