-
-
Save szul/fc48f6f32764d88960582eebc1cef8ed to your computer and use it in GitHub Desktop.
Project.json comparison with XML equivalent
This file contains hidden or 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
{ | |
"authors": [ | |
"Sam Saffron", | |
"Marc Gravell", | |
"Nick Craver" | |
], | |
"owners": [ | |
"marc.gravell", | |
"nick.craver" | |
], | |
"projectUrl": "https://github.com/StackExchange/dapper-dot-net", | |
"licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0", | |
"summary": "A high performance Micro-ORM", | |
"description": "A high performance Micro-ORM supporting SQL Server, MySQL, Sqlite, SqlCE, Firebird etc..", | |
"version": "1.50-beta9", | |
"title": "Dapper dot net", | |
"tags": [ | |
"orm", | |
"sql", | |
"micro-orm" | |
], | |
"copyright": "2015 Stack Exchange, Inc.", | |
"dependencies": {}, | |
"releaseNotes": "http://stackexchange.github.io/dapper-dot-net/", | |
"compilationOptions": { | |
"warningsAsErrors": true | |
}, | |
"frameworks": { | |
"net40": { | |
"frameworkAssemblies": { | |
"System.Data": "4.0.0.0", | |
"System.Xml": "4.0.0.0", | |
"System.Xml.Linq": "4.0.0.0" | |
} | |
}, | |
"net45": { | |
"compilationOptions": { | |
"define": [ | |
"ASYNC" | |
] | |
}, | |
"frameworkAssemblies": { | |
"System.Data": "4.0.0.0", | |
"System.Xml": "4.0.0.0", | |
"System.Xml.Linq": "4.0.0.0" | |
} | |
}, | |
"net451": { | |
"frameworkAssemblies": { | |
"System.Data": "4.0.0.0", | |
"System.Xml": "4.0.0.0", | |
"System.Xml.Linq": "4.0.0.0" | |
}, | |
"compilationOptions": { | |
"define": [ | |
"ASYNC" | |
] | |
} | |
}, | |
"netstandard1.3": { | |
"compilationOptions": { | |
"define": [ | |
"ASYNC", | |
"COREFX" | |
] | |
}, | |
"dependencies": { | |
"NETStandard.Library": "1.5.0-rc2-24015", | |
"System.Data.SqlClient": "4.1.0-rc2-24015", | |
"System.Dynamic.Runtime": "4.0.11-rc2-24015", | |
"System.Reflection.Emit": "4.0.1-rc2-24015", | |
"System.Reflection.Emit.Lightweight": "4.0.1-rc2-24015", | |
"System.Xml.XmlDocument": "4.0.1-rc2-24015", | |
"System.Collections.NonGeneric": "4.0.1-rc2-24015", | |
"System.Reflection.TypeExtensions": "4.1.0-rc2-24015" | |
} | |
} | |
} | |
} |
This file contains hidden or 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
<project | |
authors="Sam Saffron, Marc Gravell, Nick Craver" | |
owners="marc.gravell, nick.craver" | |
projectUrl="https://github.com/StackExchange/dapper-dot-net" | |
licenseUrl="http://www.apache.org/licenses/LICENSE-2.0" | |
summary="A high performance Micro-ORM" | |
description="A high performance Micro-ORM supporting SQL Server, MySQL, Sqlite, SqlCE, Firebird etc.." | |
version= "1.50-beta9" | |
title= "Dapper dot net" | |
tags= "orm,sql,micro-orm" | |
copyright= "2015 Stack Exchange, Inc." | |
> | |
<releaseNotes>http://stackexchange.github.io/dapper-dot-net/</releaseNotes> | |
<compilationOptions warningsAsErrors="true"/> | |
<framework moniker="net40"> | |
<assembly name="System.Data" version="4.0.0.0"/> | |
<assembly name="System.Xml" version="4.0.0.0"/> | |
<assembly name="System.Xml.Linq" version="4.0.0.0"/> | |
</framework> | |
<framework moniker="net45"> | |
<compilationOptions define="ASYNC"/> | |
<assembly name="System.Data" version="4.0.0.0"/> | |
<assembly name="System.Xml" version="4.0.0.0"/> | |
<assembly name="System.Xml.Linq" version="4.0.0.0"/> | |
</framework> | |
<framework moniker="net451"> | |
<compilationOptions define="ASYNC"/> | |
<assembly name="System.Data" version="4.0.0.0"/> | |
<assembly name="System.Xml" version="4.0.0.0"/> | |
<assembly name="System.Xml.Linq" version="4.0.0.0"/> | |
</framework> | |
<framework moniker="netstandard1.3"> | |
<compilationOptions define="ASYNC,COREFX"/> | |
<dependency name="NETStandard.Library" version="1.5.0-rc2-24015"/> | |
<dependency name="System.Data.SqlClient" version="4.1.0-rc2-24015"/> | |
<dependency name="System.Dynamic.Runtime" version="4.0.11-rc2-24015"/> | |
<dependency name="System.Reflection.Emit" version="4.0.1-rc2-24015"/> | |
<dependency name="System.Reflection.Emit.Lightweight" version="4.0.1-rc2-24015"/> | |
<dependency name="System.Xml.XmlDocument" version="4.0.1-rc2-24015"/> | |
<dependency name="System.Collections.NonGeneric" version="4.0.1-rc2-24015"/> | |
<dependency name="System.Reflection.TypeExtensions" version="4.0.1-rc2-24015"/> | |
</framework> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment