Skip to content

Commit

Permalink
Add the Openchain project
Browse files Browse the repository at this point in the history
  • Loading branch information
Flavien committed Jan 7, 2016
1 parent 84b7c4a commit 51172c4
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Openchain.sln
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Openchain.Infrastructure.Te
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Openchain.Anchoring.Blockchain", "src\Openchain.Anchoring.Blockchain\Openchain.Anchoring.Blockchain.xproj", "{B392C570-EFCC-4684-B7D8-0A645B49EAED}"
EndProject
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Openchain", "src\Openchain\Openchain.xproj", "{5F5B4FED-56A4-4F1C-ABE6-983C17405FFD}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -100,6 +102,10 @@ Global
{B392C570-EFCC-4684-B7D8-0A645B49EAED}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B392C570-EFCC-4684-B7D8-0A645B49EAED}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B392C570-EFCC-4684-B7D8-0A645B49EAED}.Release|Any CPU.Build.0 = Release|Any CPU
{5F5B4FED-56A4-4F1C-ABE6-983C17405FFD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5F5B4FED-56A4-4F1C-ABE6-983C17405FFD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5F5B4FED-56A4-4F1C-ABE6-983C17405FFD}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5F5B4FED-56A4-4F1C-ABE6-983C17405FFD}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand All @@ -118,5 +124,6 @@ Global
{F348FDBD-8D12-4CD7-B55B-2E52FCFA8C71} = {69F65B5A-AA9C-4D9B-8F70-0D0D33052D87}
{91B5C8B9-602C-4843-A2BE-DA82B3F7449B} = {62976C02-9AC7-450D-8634-FB01F357F47B}
{B392C570-EFCC-4684-B7D8-0A645B49EAED} = {69F65B5A-AA9C-4D9B-8F70-0D0D33052D87}
{5F5B4FED-56A4-4F1C-ABE6-983C17405FFD} = {69F65B5A-AA9C-4D9B-8F70-0D0D33052D87}
EndGlobalSection
EndGlobal
20 changes: 20 additions & 0 deletions src/Openchain/Openchain.xproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?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>5f5b4fed-56a4-4f1c-abe6-983c17405ffd</ProjectGuid>
<RootNamespace>Openchain</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>
28 changes: 28 additions & 0 deletions src/Openchain/project.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"entryPoint": "Openchain.Server",

"dependencies": {
"Openchain.Server": "0.5.0-rc1",

"Openchain.Sqlite": "0.5.0-rc1",
"Openchain.Validation.PermissionBased": "0.5.0-rc1",
"Openchain.Anchoring.Blockchain": "0.5.0-rc1"
},

"userSecretsId": "Openchain.Server",

"commands": {
"start": "Microsoft.AspNet.Hosting --webroot \"Webroot\" --server Microsoft.AspNet.Server.Kestrel --server.urls http://localhost:8080"
},

"frameworks": {
"dnxcore50": { },
"dnx451": { }
},

"publishExclude": [
"**.xproj",
"**.user",
"**.vspscc"
]
}

0 comments on commit 51172c4

Please sign in to comment.