Skip to content

Commit

Permalink
Add new dotnet proj
Browse files Browse the repository at this point in the history
  • Loading branch information
vicancy committed Jun 12, 2017
1 parent f7634bd commit e60ac89
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{
"src": [
{
"files": [ "**/*.sln" ],
"files": [ "**/*.sln", "src/DotnetNew/*.csproj" ],
"exclude": [ "**/bin/**", "**/obj/**" ],
"cwd": "src"
}
Expand Down
8 changes: 8 additions & 0 deletions src/DotnetNew/Class1.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
using System;

namespace DotnetNew
{
public class Class1
{
}
}
7 changes: 7 additions & 0 deletions src/DotnetNew/DotnetNew.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard1.4</TargetFramework>
</PropertyGroup>

</Project>

0 comments on commit e60ac89

Please sign in to comment.