Skip to content

Instantly share code, notes, and snippets.

@Ciantic
Created April 25, 2016 10:46
Show Gist options
  • Select an option

  • Save Ciantic/978def84735a173f14acf41d5bf9214c to your computer and use it in GitHub Desktop.

Select an option

Save Ciantic/978def84735a173f14acf41d5bf9214c to your computer and use it in GitHub Desktop.
<?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>
using System;
namespace MyLib
{
public class Libbie
{
public static string MyLib()
{
return "Hello world";
}
}
}
{
"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