big commit
This commit is contained in:
@ -1,5 +1,8 @@
|
||||
include ../common.mk
|
||||
|
||||
MSBUILD=msbuild
|
||||
|
||||
|
||||
all: build
|
||||
|
||||
build: project.lock.json
|
||||
@ -8,7 +11,10 @@ build: project.lock.json
|
||||
restore:
|
||||
touch project.json
|
||||
dnu restore
|
||||
|
||||
|
||||
msbuild-restore:
|
||||
$(MSBUILD) cli.csproj /t:Restore
|
||||
|
||||
project.lock.json: project.json
|
||||
dnu restore
|
||||
|
||||
|
@ -1,18 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project
|
||||
xmlns="http://schemas.microsoft.com/developer/msbuild/2003" Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
|
||||
Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0" >
|
||||
<PropertyGroup>
|
||||
<MinimumVisualStudioVersion>10.0</MinimumVisualStudioVersion>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{E7C9D6BF-54DC-4E18-8F25-C4BD4BE71ACC}</ProjectGuid>
|
||||
<OutputType>Exe</OutputType>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>cli</RootNamespace>
|
||||
<AssemblyName>cli</AssemblyName>
|
||||
<TargetFramework>netcoreapp2.0</TargetFramework>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||
<NuGetPackageImportStamp></NuGetPackageImportStamp>
|
||||
<EnableDefaultCompileItems>true</EnableDefaultCompileItems>
|
||||
</PropertyGroup>
|
||||
@ -63,31 +57,14 @@
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Transactions" />
|
||||
<Reference Include="EntityFramework7.Npgsql">
|
||||
<HintPath>..\packages\EntityFramework7.Npgsql.3.1.0-rc1-3\lib\net451\EntityFramework7.Npgsql.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="EntityFramework.Core">
|
||||
<HintPath>..\packages\EntityFramework.Core.7.0.0-rc1-final\lib\net451\EntityFramework.Core.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Yavsc.Server">
|
||||
<HintPath>..\packages\Yavsc.Server.1.0.5-rc9\lib\portable-net45+win8+wp8+wpa81+Xamarin.Mac+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Yavsc.Server.dll</HintPath>
|
||||
</Reference>
|
||||
</Reference>
|
||||
<Reference Include="Yavsc.Abstract">
|
||||
<HintPath>..\packages\Yavsc.Abstract.1.0.5-rc9\lib\portable-net45+win8+wp8+wpa81+Xamarin.Mac+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Yavsc.Abstract.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System.Interactive.Async">
|
||||
<HintPath>..\packages\Ix-Async.1.2.5\lib\net45\System.Interactive.Async.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="CommandLine">
|
||||
<HintPath>..\packages\Machine.Specifications.Runner.Console.0.9.0\tools\CommandLine.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Machine.Specifications.Reporting">
|
||||
<HintPath>..\packages\Machine.Specifications.Runner.Console.0.9.0\tools\Machine.Specifications.Reporting.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Machine.Specifications.Reporting.Templates">
|
||||
<HintPath>..\packages\Machine.Specifications.Runner.Console.0.9.0\tools\Machine.Specifications.Reporting.Templates.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Machine.Specifications.Runner.Utility">
|
||||
<HintPath>..\packages\Machine.Specifications.Runner.Console.0.9.0\tools\Machine.Specifications.Runner.Utility.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
@ -95,6 +72,7 @@
|
||||
<PackageReference Include="EntityFramework.Relational" Version="7.0.0-rc1-final"/>
|
||||
<PackageReference Include="EntityFramework.Relational.Design" Version="7.0.0-rc1-final" />
|
||||
<PackageReference Include="Microsoft.AspNet.Mvc.Localization" Version="6.0.0-rc1-final"/>
|
||||
<PackageReference Include="Microsoft.AspNet.Hosting" Version="1.0.0-rc1-final"/>
|
||||
<PackageReference Include="Microsoft.AspNet.Hosting.Abstractions" Version="1.0.0-rc1-final"/>
|
||||
<PackageReference Include="Microsoft.AspNet.Server.Kestrel" Version="1.0.0-rc1-final" />
|
||||
<PackageReference Include="Microsoft.AspNet.Mvc.Razor.Host" Version="6.0.0-rc1-final" />
|
||||
@ -129,9 +107,9 @@
|
||||
<PackageReference Include="Microsoft.Dnx.Compilation.Abstractions" Version="1.0.0-rc1-final" />
|
||||
<PackageReference Include="Microsoft.Dnx.Compilation.CSharp.Abstractions" Version="1.0.0-rc1-final" />
|
||||
<PackageReference Include="Microsoft.Dnx.Compilation.CSharp.Common" Version="1.0.0-rc1-final" />
|
||||
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Folder Include="Services\" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" ></Import>
|
||||
</Project>
|
||||
|
@ -56,4 +56,4 @@
|
||||
"frameworks": {
|
||||
"dnx451": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -7165,51 +7165,59 @@
|
||||
},
|
||||
"Microsoft.Extensions.CodeGeneration/1.0.0-rc1-final": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "Mkld1xqSkU1CuMtMlbKMPwzoXMXBzC/SdOiRLutd632mGrQCDwhBgrxiBDfFDD63OxWt24TjMZkqlxmRRTm7zQ==",
|
||||
"files": [
|
||||
"lib/dnx451/Microsoft.Extensions.CodeGeneration.dll",
|
||||
"lib/dnx451/Microsoft.Extensions.CodeGeneration.xml",
|
||||
"lib/dnxcore50/Microsoft.Extensions.CodeGeneration.dll",
|
||||
"lib/dnxcore50/Microsoft.Extensions.CodeGeneration.xml",
|
||||
"microsoft.extensions.codegeneration.1.0.0-rc1-final.nupkg.sha512",
|
||||
"microsoft.extensions.codegeneration.nuspec"
|
||||
"Microsoft.Extensions.CodeGeneration.1.0.0-rc1-final.nupkg",
|
||||
"Microsoft.Extensions.CodeGeneration.1.0.0-rc1-final.nupkg.sha512",
|
||||
"Microsoft.Extensions.CodeGeneration.nuspec"
|
||||
]
|
||||
},
|
||||
"Microsoft.Extensions.CodeGeneration.Core/1.0.0-rc1-final": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "uQe19xMM4ymoC9uU/rLZTkbSH8n/CVKEjw4jbLfoFq179+LH4IxDRqPqidEMQUF6ON4jYVwhexuAMPJdQ5ewjQ==",
|
||||
"files": [
|
||||
"lib/dnx451/Microsoft.Extensions.CodeGeneration.Core.dll",
|
||||
"lib/dnx451/Microsoft.Extensions.CodeGeneration.Core.xml",
|
||||
"lib/dnxcore50/Microsoft.Extensions.CodeGeneration.Core.dll",
|
||||
"lib/dnxcore50/Microsoft.Extensions.CodeGeneration.Core.xml",
|
||||
"microsoft.extensions.codegeneration.core.1.0.0-rc1-final.nupkg.sha512",
|
||||
"microsoft.extensions.codegeneration.core.nuspec"
|
||||
"Microsoft.Extensions.CodeGeneration.Core.1.0.0-rc1-final.nupkg",
|
||||
"Microsoft.Extensions.CodeGeneration.Core.1.0.0-rc1-final.nupkg.sha512",
|
||||
"Microsoft.Extensions.CodeGeneration.Core.nuspec"
|
||||
]
|
||||
},
|
||||
"Microsoft.Extensions.CodeGeneration.EntityFramework/1.0.0-rc1-final": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "Bs5bPxbPlTYAB5d1+bPjnAZqQyQMueg0orED8boIlwb66he5pFO7LuQ3Q+BNTUB4x3M1q1U7L1L469tllVtGZg==",
|
||||
"files": [
|
||||
"lib/dnx451/Microsoft.Extensions.CodeGeneration.EntityFramework.dll",
|
||||
"lib/dnx451/Microsoft.Extensions.CodeGeneration.EntityFramework.xml",
|
||||
"lib/dnxcore50/Microsoft.Extensions.CodeGeneration.EntityFramework.dll",
|
||||
"lib/dnxcore50/Microsoft.Extensions.CodeGeneration.EntityFramework.xml",
|
||||
"microsoft.extensions.codegeneration.entityframework.1.0.0-rc1-final.nupkg.sha512",
|
||||
"microsoft.extensions.codegeneration.entityframework.nuspec",
|
||||
"Microsoft.Extensions.CodeGeneration.EntityFramework.1.0.0-rc1-final.nupkg",
|
||||
"Microsoft.Extensions.CodeGeneration.EntityFramework.1.0.0-rc1-final.nupkg.sha512",
|
||||
"Microsoft.Extensions.CodeGeneration.EntityFramework.nuspec",
|
||||
"Templates/DbContext/NewLocalDbContext.cshtml"
|
||||
]
|
||||
},
|
||||
"Microsoft.Extensions.CodeGeneration.Templating/1.0.0-rc1-final": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "d20Suo15M+sNS5QBYMfJpBgSUFclVSeIU06Y/snnmKdNjAiQfbKkW0bG8ryBw8zn29KXHcK39DwUpkrFvphQIg==",
|
||||
"files": [
|
||||
"lib/dnx451/Microsoft.Extensions.CodeGeneration.Templating.dll",
|
||||
"lib/dnx451/Microsoft.Extensions.CodeGeneration.Templating.xml",
|
||||
"lib/dnxcore50/Microsoft.Extensions.CodeGeneration.Templating.dll",
|
||||
"lib/dnxcore50/Microsoft.Extensions.CodeGeneration.Templating.xml",
|
||||
"microsoft.extensions.codegeneration.templating.1.0.0-rc1-final.nupkg.sha512",
|
||||
"microsoft.extensions.codegeneration.templating.nuspec"
|
||||
"Microsoft.Extensions.CodeGeneration.Templating.1.0.0-rc1-final.nupkg",
|
||||
"Microsoft.Extensions.CodeGeneration.Templating.1.0.0-rc1-final.nupkg.sha512",
|
||||
"Microsoft.Extensions.CodeGeneration.Templating.nuspec"
|
||||
]
|
||||
},
|
||||
"Microsoft.Extensions.Configuration/1.0.0-rc1-final": {
|
||||
|
Reference in New Issue
Block a user