Skip to content

Instantly share code, notes, and snippets.

@erlimar
Last active August 29, 2015 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save erlimar/5f6a117652a2f936888e to your computer and use it in GitHub Desktop.
Save erlimar/5f6a117652a2f936888e to your computer and use it in GitHub Desktop.
Artigo 2014-07-30 - .NET e ASP.NET vNext - Prepare-se para o futuro
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="AspNetVNext" value="https://www.myget.org/F/aspnetvnext/" />
<add key="NuGet.org" value="https://nuget.org/api/v2/" />
</packageSources>
</configuration>
using System;
public class Program
{
public static void Main()
{
Console.WriteLine("Hello World!");
}
}
{
"dependencies": {
"System.Console": "4.0.0.0"
},
"configurations": {
"net45": {},
"k10": {}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment