-
Notifications
You must be signed in to change notification settings - Fork 10.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from henkmollema/projectjson
Target dotnet TFM's for class libraries
- Loading branch information
Showing
8 changed files
with
79 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,10 @@ | ||
.vs | ||
*.xproj.user | ||
[Oo]bj/ | ||
[Bb]in/ | ||
packages/ | ||
artifacts/ | ||
*.user | ||
*.suo | ||
node_modules | ||
project.lock.json | ||
.vs/ | ||
npm-debug.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,33 @@ | ||
{ | ||
"version": "1.0.0-alpha7", | ||
"description": "Microsoft.AspNet.NodeServices", | ||
"authors": [ | ||
"Microsoft" | ||
], | ||
"tags": [ | ||
"" | ||
], | ||
"projectUrl": "", | ||
"licenseUrl": "", | ||
"description": "Invoke Node.js modules at runtime in ASP.NET 5 applications.", | ||
"authors": [ "Microsoft" ], | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/aspnet/nodeservices" | ||
}, | ||
"dependencies": { | ||
"System.Net.Http": "4.0.1-beta-*", | ||
"Newtonsoft.Json": "8.0.1-beta3", | ||
"Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc1-final", | ||
"Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final" | ||
"Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc1-final", | ||
"Newtonsoft.Json": "8.0.1-beta3", | ||
"System.Net.Http": "4.0.1-beta-*" | ||
}, | ||
"frameworks": { | ||
"dnx451": {}, | ||
"dnxcore50": { | ||
"net451": { }, | ||
"dotnet5.4": { | ||
"dependencies": { | ||
"Microsoft.CSharp": "4.0.1-beta-*", | ||
"System.Collections": "4.0.11-beta-*", | ||
"System.Linq": "4.0.1-beta-*", | ||
"System.Threading": "4.0.11-beta-*", | ||
"System.Text.RegularExpressions": "4.0.11-beta-*", | ||
"System.Console": "4.0.0-beta-*", | ||
"System.Diagnostics.Process": "4.1.0-beta-*", | ||
"System.IO.FileSystem": "4.0.1-beta-*", | ||
"System.Console": "4.0.0-beta-*" | ||
"System.Linq": "4.0.1-beta-*", | ||
"System.Text.RegularExpressions": "4.0.11-beta-*", | ||
"System.Threading": "4.0.11-beta-*" | ||
} | ||
} | ||
}, | ||
"resource": [ | ||
"Content/**/*" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
Microsoft.AspNet.SpaServices/Microsoft.AspNet.SpaServices.xproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="14.0.23107" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">14.0.23107</VisualStudioVersion> | ||
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath> | ||
</PropertyGroup> | ||
<Import Project="$(VSToolsPath)\DNX\Microsoft.DNX.Props" Condition="'$(VSToolsPath)' != ''" /> | ||
<PropertyGroup Label="Globals"> | ||
<ProjectGuid>4624f728-6dff-44b6-93b5-3c7d9c94bf3f</ProjectGuid> | ||
<RootNamespace>Microsoft.AspNet.SpaServices</RootNamespace> | ||
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">..\artifacts\obj\$(MSBuildProjectName)</BaseIntermediateOutputPath> | ||
<OutputPath Condition="'$(OutputPath)'=='' ">..\artifacts\bin\$(MSBuildProjectName)\</OutputPath> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<SchemaVersion>2.0</SchemaVersion> | ||
</PropertyGroup> | ||
<Import Project="$(VSToolsPath)\DNX\Microsoft.DNX.targets" Condition="'$(VSToolsPath)' != ''" /> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters