Commit 1430282a authored by Marc Gravell's avatar Marc Gravell

Add Dapper.StrongName project to DNX build

parent 95f399c3
......@@ -8,9 +8,8 @@ EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Dapper.DNX.Tests", "Dapper.DNX.Tests\Dapper.DNX.Tests.xproj", "{2AD7E470-9AC1-4F0A-A8C6-F19EEA00593F}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{A34907DF-958A-4E4C-8491-84CF303FD13E}"
ProjectSection(SolutionItems) = preProject
Dapper.DNX.Tests\global.json = Dapper.DNX.Tests\global.json
EndProjectSection
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Dapper.StrongName", "Dapper.StrongName\Dapper.StrongName.xproj", "{6EF701B6-1611-47F1-8325-E9AE1489BD2B}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
......@@ -26,6 +25,10 @@ Global
{2AD7E470-9AC1-4F0A-A8C6-F19EEA00593F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2AD7E470-9AC1-4F0A-A8C6-F19EEA00593F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2AD7E470-9AC1-4F0A-A8C6-F19EEA00593F}.Release|Any CPU.Build.0 = Release|Any CPU
{6EF701B6-1611-47F1-8325-E9AE1489BD2B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6EF701B6-1611-47F1-8325-E9AE1489BD2B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6EF701B6-1611-47F1-8325-E9AE1489BD2B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6EF701B6-1611-47F1-8325-E9AE1489BD2B}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
......
<?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)\DNX\Microsoft.DNX.Props" Condition="'$(VSToolsPath)' != ''" />
<PropertyGroup Label="Globals">
<ProjectGuid>6ef701b6-1611-47f1-8325-e9ae1489bd2b</ProjectGuid>
<RootNamespace>Dapper</RootNamespace>
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">..\artifacts\obj\$(MSBuildProjectName)</BaseIntermediateOutputPath>
<OutputPath Condition="'$(OutputPath)'=='' ">..\artifacts\bin\$(MSBuildProjectName)\</OutputPath>
</PropertyGroup>
<PropertyGroup>
<SchemaVersion>2.0</SchemaVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<ProduceOutputsOnBuild>True</ProduceOutputsOnBuild>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<ProduceOutputsOnBuild>True</ProduceOutputsOnBuild>
</PropertyGroup>
<Import Project="$(VSToolsPath)\DNX\Microsoft.DNX.targets" Condition="'$(VSToolsPath)' != ''" />
</Project>
\ No newline at end of file
{
"sdk": {
"version": "1.0.0-beta8"
}
}
{
"authors": [ "Sam Saffron", "Marc Gravell" ],
"owners": [ "Sam Saffron", "Marc Gravell" ],
"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.43-beta1",
"title": "Dapper dot net",
"tags": [ "orm", "sql", "micro-orm" ],
"dependencies": { },
"compile": [
"../Dapper/**/*.cs"
],
"compilationOptions": {
"keyFile": "../Dapper.snk"
},
"frameworks": {
"net45": {
"compilationOptions": {
"define": [ "ASYNC" ],
"warningsAsErrors": true
},
"frameworkAssemblies": {
"System.Data": "4.0.0.0"
}
},
"net40": {
"compilationOptions": { "warningsAsErrors": true },
"frameworkAssemblies": {
"System.Data": "4.0.0.0"
}
},
"dnx451": {
"compilationOptions": {
"define": [ "ASYNC" ],
"warningsAsErrors": true
},
"frameworkAssemblies": {
"System.Data": "4.0.0.0"
}
},
"dnxcore50": {
"compilationOptions": {
"define": [ "ASYNC" ],
"warningsAsErrors": true
},
"dependencies": {
"Microsoft.CSharp": "4.0.1-beta-23409",
"System.Collections": "4.0.11-beta-23409",
"System.Collections.Concurrent": "4.0.11-beta-23409",
"System.Console": "4.0.0-beta-23409",
"System.Linq": "4.0.1-beta-23409",
"System.Threading": "4.0.11-beta-23409",
"System.Data.SqlClient": "4.0.0-beta-23409",
"System.Reflection.Emit.ILGeneration": "4.0.1-beta-23409",
"System.Reflection.Emit.Lightweight": "4.0.1-beta-23409",
"System.Reflection.TypeExtensions": "4.0.1-beta-23409",
"System.Text.RegularExpressions": "4.0.11-beta-23409"
}
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment