Skip to content

Commit

Permalink
Build for .NET Core; closes morelinq#194
Browse files Browse the repository at this point in the history
  • Loading branch information
MiffyLiye authored and atifaziz committed Sep 26, 2016
1 parent ae619b0 commit db8ebdf
Show file tree
Hide file tree
Showing 17 changed files with 255 additions and 965 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,7 @@ _ReSharper*/
!**/packages/build/

docs/

.vscode/
*.lock.json
tools/
140 changes: 0 additions & 140 deletions MoreLinq.Test/MoreLinq.Portable.Test.csproj

This file was deleted.

154 changes: 0 additions & 154 deletions MoreLinq.Test/MoreLinq.Test.csproj

This file was deleted.

19 changes: 19 additions & 0 deletions MoreLinq.Test/MoreLinq.Test.xproj
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" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">14.0</VisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
</PropertyGroup>
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.Props" Condition="'$(VSToolsPath)' != ''" />
<PropertyGroup Label="Globals">
<ProjectGuid>fe8ba6af-584f-44e0-9f80-2de800672a88</ProjectGuid>
<RootNamespace>MoreLinq.Test</RootNamespace>
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">.\obj</BaseIntermediateOutputPath>
<OutputPath Condition="'$(OutputPath)'=='' ">.\bin\</OutputPath>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup>
<SchemaVersion>2.0</SchemaVersion>
</PropertyGroup>
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.targets" Condition="'$(VSToolsPath)' != ''" />
</Project>
69 changes: 69 additions & 0 deletions MoreLinq.Test/project.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
{
"name": "MoreLinq.Test",
"title": "MoreLinq.Test",
"authors": [
"MoreLINQ Developers"
],
"packOptions": {
"tags": [
"linq",
"extensions"
]
},
"dependencies": {
"MoreLinq": {
"target": "project"
},
"NUnit": "2.*"
},
"version": "2.0.0-beta04",
"buildOptions": {
"debugType": "portable",
"emitEntryPoint": false,
"warningsAsErrors": true,
"xmlDoc": false
},
"configurations": {
"Debug": {
"buildOptions": {
"define": [
"TRACE",
"DEBUG"
],
"optimize": false
}
},
"Release": {
"buildOptions": {
"define": [
"TRACE"
],
"optimize": true
}
}
},
"frameworks": {
"net4": {
"frameworkAssemblies": {
"System.Data.DataSetExtensions": "4.0.0.0",
"System.Data": "4.0.0.0",
"System.Xml": "4.0.0.0",
"System.Xml.Linq": "4.0.0.0"
}
},
".NETFramework,Version=v4.0,Profile=Client": {
"buildOptions": {
"compile": {
"exclude": [
"ToDataTable.cs"
]
}
},
"frameworkAssemblies": {
"mscorlib": "",
"System": "",
"System.Core": ""
}
}
}
}
Loading

0 comments on commit db8ebdf

Please sign in to comment.