Skip to content

Commit b267c0f

Browse files
committed
Merge pull request #2 from dotnet/master
Merging in latest with fork
2 parents fec1a4a + 2003a4b commit b267c0f

File tree

3 files changed

+28
-0
lines changed

3 files changed

+28
-0
lines changed

samples/README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# .NET Core Samples
2+
3+
The code samples here are simple, buildable projects which augment the .NET Core Documentation with demonstrative code snippets. These samples are directly embedded into documentation.
4+
5+
If you wish to add a code sample:
6+
7+
1. Your sample **must be part of a buildable project**
8+
2. Your sample **cannot be a Visual Studio Project**
9+
10+
- We do not want Windows and Visual Studio to be a dependency for people building these on their own.
11+
12+
We will eventually have a CI system in place to build these projects.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
using System;
2+
using System.Linq;
3+
4+
namespace Restriction
5+
{
6+
// TODO write some code
7+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"dependencies": {
3+
"System.Runtime":"4.0.0-rc1-*",
4+
"System.Linq":"4.0.0-rc1-*"
5+
},
6+
"frameworks": {
7+
"dotnet":{}
8+
}
9+
}

0 commit comments

Comments
 (0)