Skip to content

Commit 4cf0474

Browse files
committed
first dotnetcore attempt
1 parent 1fd96b9 commit 4cf0474

File tree

7 files changed

+17819
-0
lines changed

7 files changed

+17819
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
using System;
2+
3+
namespace ConsoleApplication
4+
{
5+
public class Program
6+
{
7+
public static void Main(string[] args)
8+
{
9+
Console.WriteLine("Hello World!");
10+
}
11+
}
12+
}
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"version": "1.0.0-*",
3+
"buildOptions": {
4+
"emitEntryPoint": true
5+
},
6+
"dependencies": {
7+
"Microsoft.NETCore.App": {
8+
"type": "platform",
9+
"version": "1.0.0-rc2-3002702"
10+
}
11+
},
12+
"code": ["**/*.cs"],
13+
"frameworks": {
14+
"netcoreapp1.0": {
15+
"imports": "dnxcore50",
16+
"dependencies": {
17+
"System.Runtime": "4.1.0-rc2-24027",
18+
"System.Runtime.Serialization.Primitives": "4.1.1-rc2-24027",
19+
"System.ComponentModel.EventBasedAsync": "4.0.11-rc2-24027",
20+
"System.Xml.ReaderWriter": "4.0.11-rc2-24027",
21+
"System.Xml.XDocument": "4.0.11-rc2-24027",
22+
"System.Xml.XmlDocument": "4.0.1-rc2-24027",
23+
"System.Xml.XmlSerializer": "4.0.11-rc2-24027",
24+
"System.Net.Security": "4.0.0-rc2-24027",
25+
"System.Net.Sockets": "4.1.0-rc2-24027",
26+
"System.Threading": "4.0.11-rc2-24027",
27+
"System.Threading.Tasks": "4.0.11-rc2-24027"
28+
}
29+
}
30+
}
31+
}

0 commit comments

Comments
 (0)