Fix non-windows builds of Microsoft.NETCore.App.
Fix all test project.jsons to be portable apps.
This commit is contained in:
parent
99371436f3
commit
6ae044e5e1
27 changed files with 151 additions and 52 deletions
|
@ -116,7 +116,7 @@ else
|
||||||
init_distro_name
|
init_distro_name
|
||||||
fi
|
fi
|
||||||
|
|
||||||
__common_parameters="/p:Platform=$__build_arch /p:DotNetHostBinDir=$__dotnet_host_bin_dir /p:$__targets_param /p:DistroName=$__distro_name /p:HostVersion=$__host_ver /p:HostResolverVersion=$__fxr_ver /p:HostPolicyVersion=$__policy_ver /p:BuildNumberMajor=$__build_major /p:PreReleaseLabel=$__version_tag /verbosity:minimal"
|
__common_parameters="/p:Platform=$__build_arch /p:DotNetHostBinDir=$__dotnet_host_bin_dir /p:$__targets_param /p:DistroName=$__distro_name /p:HostVersion=$__host_ver /p:HostResolverVersion=$__fxr_ver /p:HostPolicyVersion=$__policy_ver /p:BuildNumberMajor=$__build_major /p:PreReleaseLabel=$__version_tag /p:CLIBuildVersion=$__build_major /verbosity:minimal"
|
||||||
|
|
||||||
$__corerun $__msbuild $__project_dir/projects/packages.builds $__common_parameters || exit 1
|
$__corerun $__msbuild $__project_dir/projects/packages.builds $__common_parameters || exit 1
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Project Condition="'$(TargetsWindows)' == 'true' and '$(Platform)' == 'x64'" Include="Microsoft.NETCore.App.pkgproj" />
|
<Project Include="Microsoft.NETCore.App.pkgproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.traversal.targets))\dir.traversal.targets" />
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.traversal.targets))\dir.traversal.targets" />
|
||||||
|
|
|
@ -98,7 +98,7 @@ namespace Microsoft.DotNet.Cli.Build
|
||||||
public static BuildTargetResult UpdateTemplateVersions(BuildTargetContext c)
|
public static BuildTargetResult UpdateTemplateVersions(BuildTargetContext c)
|
||||||
{
|
{
|
||||||
IEnumerable<string> templateFiles = Directory.GetFiles(
|
IEnumerable<string> templateFiles = Directory.GetFiles(
|
||||||
Path.Combine(Dirs.RepoRoot, @"src\dotnet\commands\dotnet-new"),
|
Path.Combine(Dirs.RepoRoot, "src", "dotnet", "commands", "dotnet-new"),
|
||||||
"project.json.pretemplate",
|
"project.json.pretemplate",
|
||||||
SearchOption.AllDirectories);
|
SearchOption.AllDirectories);
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,10 @@
|
||||||
"emitEntryPoint": true
|
"emitEntryPoint": true
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.NETCore.App": "1.0.0-rc2-*",
|
"Microsoft.NETCore.App": {
|
||||||
|
"type": "platform",
|
||||||
|
"version": "1.0.0-rc2-*"
|
||||||
|
},
|
||||||
"System.Runtime.Serialization.Primitives": "4.1.1-rc2-24008",
|
"System.Runtime.Serialization.Primitives": "4.1.1-rc2-24008",
|
||||||
"Microsoft.DotNet.ProjectModel": {
|
"Microsoft.DotNet.ProjectModel": {
|
||||||
"target": "project"
|
"target": "project"
|
||||||
|
@ -19,8 +22,9 @@
|
||||||
"dotnet-test-xunit": "1.0.0-dev-128011-22"
|
"dotnet-test-xunit": "1.0.0-dev-128011-22"
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"netstandardapp1.5": {
|
"netcoreapp1.0": {
|
||||||
"imports": [
|
"imports": [
|
||||||
|
"netstandardapp1.5",
|
||||||
"dnxcore50",
|
"dnxcore50",
|
||||||
"portable-net45+win8"
|
"portable-net45+win8"
|
||||||
]
|
]
|
||||||
|
@ -28,6 +32,6 @@
|
||||||
},
|
},
|
||||||
"testRunner": "xunit",
|
"testRunner": "xunit",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"precompile": "dotnet publish ../ArgumentsReflector/project.json --framework netstandardapp1.5 --runtime %compile:RuntimeIdentifier% --output %compile:RuntimeOutputDir%"
|
"precompile": "dotnet publish ../ArgumentsReflector/project.json --framework netcoreapp1.0 --runtime %compile:RuntimeIdentifier% --output %compile:RuntimeOutputDir%"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,11 +4,17 @@
|
||||||
"emitEntryPoint": true
|
"emitEntryPoint": true
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.NETCore.App": "1.0.0-rc2-*"
|
"Microsoft.NETCore.App": {
|
||||||
|
"type": "platform",
|
||||||
|
"version": "1.0.0-rc2-*"
|
||||||
|
},
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"netstandardapp1.5": {
|
"netcoreapp1.0": {
|
||||||
"imports": "dnxcore50"
|
"imports": [
|
||||||
|
"netstandardapp1.5",
|
||||||
|
"dnxcore50"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"content": [
|
"content": [
|
||||||
|
|
|
@ -4,7 +4,10 @@
|
||||||
"emitEntryPoint": true
|
"emitEntryPoint": true
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.NETCore.App": "1.0.0-rc2-*",
|
"Microsoft.NETCore.App": {
|
||||||
|
"type": "platform",
|
||||||
|
"version": "1.0.0-rc2-*"
|
||||||
|
},
|
||||||
"System.Runtime.Serialization.Primitives": "4.1.1-rc2-24008",
|
"System.Runtime.Serialization.Primitives": "4.1.1-rc2-24008",
|
||||||
"Microsoft.DotNet.ProjectModel": {
|
"Microsoft.DotNet.ProjectModel": {
|
||||||
"target": "project"
|
"target": "project"
|
||||||
|
@ -20,8 +23,9 @@
|
||||||
"dotnet-test-xunit": "1.0.0-dev-128011-22"
|
"dotnet-test-xunit": "1.0.0-dev-128011-22"
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"netstandardapp1.5": {
|
"netcoreapp1.0": {
|
||||||
"imports": [
|
"imports": [
|
||||||
|
"netstandardapp1.5",
|
||||||
"dnxcore50",
|
"dnxcore50",
|
||||||
"portable-net45+win8"
|
"portable-net45+win8"
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
{
|
{
|
||||||
"version": "1.0.0-*",
|
"version": "1.0.0-*",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.NETCore.App": "1.0.0-rc2-24008",
|
"Microsoft.NETCore.App": {
|
||||||
|
"type": "platform",
|
||||||
|
"version": "1.0.0-rc2-*"
|
||||||
|
},
|
||||||
"System.Runtime.Serialization.Primitives": "4.1.1-rc2-24008",
|
"System.Runtime.Serialization.Primitives": "4.1.1-rc2-24008",
|
||||||
"Microsoft.DotNet.Tools.Tests.Utilities": {
|
"Microsoft.DotNet.Tools.Tests.Utilities": {
|
||||||
"target": "project"
|
"target": "project"
|
||||||
|
@ -13,8 +16,9 @@
|
||||||
"dotnet-test-xunit": "1.0.0-dev-128011-22"
|
"dotnet-test-xunit": "1.0.0-dev-128011-22"
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"netstandardapp1.5": {
|
"netcoreapp1.0": {
|
||||||
"imports": [
|
"imports": [
|
||||||
|
"netstandardapp1.5",
|
||||||
"dnxcore50",
|
"dnxcore50",
|
||||||
"portable-net45+win8"
|
"portable-net45+win8"
|
||||||
]
|
]
|
||||||
|
|
|
@ -4,7 +4,10 @@
|
||||||
"emitEntryPoint": true
|
"emitEntryPoint": true
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.NETCore.App": "1.0.0-rc2-*",
|
"Microsoft.NETCore.App": {
|
||||||
|
"type": "platform",
|
||||||
|
"version": "1.0.0-rc2-*"
|
||||||
|
},
|
||||||
"System.Runtime.Serialization.Primitives": "4.1.1-rc2-24008",
|
"System.Runtime.Serialization.Primitives": "4.1.1-rc2-24008",
|
||||||
"NuGet.Versioning": "3.5.0-beta-1130",
|
"NuGet.Versioning": "3.5.0-beta-1130",
|
||||||
"NuGet.Packaging": "3.5.0-beta-1130",
|
"NuGet.Packaging": "3.5.0-beta-1130",
|
||||||
|
@ -24,8 +27,9 @@
|
||||||
"dotnet-test-xunit": "1.0.0-dev-128011-22"
|
"dotnet-test-xunit": "1.0.0-dev-128011-22"
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"netstandardapp1.5": {
|
"netcoreapp1.0": {
|
||||||
"imports": [
|
"imports": [
|
||||||
|
"netstandardapp1.5",
|
||||||
"dnxcore50",
|
"dnxcore50",
|
||||||
"portable-net45+win8"
|
"portable-net45+win8"
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
{
|
{
|
||||||
"version": "1.0.0-*",
|
"version": "1.0.0-*",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.NETCore.App": "1.0.0-rc2-*",
|
"Microsoft.NETCore.App": {
|
||||||
|
"type": "platform",
|
||||||
|
"version": "1.0.0-rc2-*"
|
||||||
|
},
|
||||||
"System.Runtime.Serialization.Primitives": "4.1.1-rc2-24008",
|
"System.Runtime.Serialization.Primitives": "4.1.1-rc2-24008",
|
||||||
"Microsoft.DotNet.Tools.Tests.Utilities": {
|
"Microsoft.DotNet.Tools.Tests.Utilities": {
|
||||||
"target": "project"
|
"target": "project"
|
||||||
|
@ -16,8 +19,9 @@
|
||||||
"dotnet-test-xunit": "1.0.0-dev-128011-22"
|
"dotnet-test-xunit": "1.0.0-dev-128011-22"
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"netstandardapp1.5": {
|
"netcoreapp1.0": {
|
||||||
"imports": [
|
"imports": [
|
||||||
|
"netstandardapp1.5",
|
||||||
"dnxcore50",
|
"dnxcore50",
|
||||||
"portable-net45+win8"
|
"portable-net45+win8"
|
||||||
]
|
]
|
||||||
|
|
|
@ -4,7 +4,10 @@
|
||||||
"keyFile": "../../tools/test_key.snk"
|
"keyFile": "../../tools/test_key.snk"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.NETCore.App": "1.0.0-rc2-*",
|
"Microsoft.NETCore.App": {
|
||||||
|
"type": "platform",
|
||||||
|
"version": "1.0.0-rc2-*"
|
||||||
|
},
|
||||||
"System.Runtime.Serialization.Primitives": "4.1.1-rc2-24008",
|
"System.Runtime.Serialization.Primitives": "4.1.1-rc2-24008",
|
||||||
"Microsoft.DotNet.ProjectModel": {
|
"Microsoft.DotNet.ProjectModel": {
|
||||||
"target": "project"
|
"target": "project"
|
||||||
|
@ -16,8 +19,9 @@
|
||||||
"dotnet-test-xunit": "1.0.0-dev-128011-22"
|
"dotnet-test-xunit": "1.0.0-dev-128011-22"
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"netstandardapp1.5": {
|
"netcoreapp1.0": {
|
||||||
"imports": [
|
"imports": [
|
||||||
|
"netstandardapp1.5",
|
||||||
"dnxcore50",
|
"dnxcore50",
|
||||||
"portable-net45+win8"
|
"portable-net45+win8"
|
||||||
]
|
]
|
||||||
|
|
|
@ -5,7 +5,10 @@
|
||||||
"keyFile": "../../tools/Key.snk"
|
"keyFile": "../../tools/Key.snk"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.NETCore.App": "1.0.0-rc2-*",
|
"Microsoft.NETCore.App": {
|
||||||
|
"type": "platform",
|
||||||
|
"version": "1.0.0-rc2-*"
|
||||||
|
},
|
||||||
"System.Runtime.Serialization.Primitives": "4.1.1-rc2-24008",
|
"System.Runtime.Serialization.Primitives": "4.1.1-rc2-24008",
|
||||||
"System.Collections.Immutable": "1.2.0-rc2-24008",
|
"System.Collections.Immutable": "1.2.0-rc2-24008",
|
||||||
"System.Net.NetworkInformation": "4.1.0-rc2-24008",
|
"System.Net.NetworkInformation": "4.1.0-rc2-24008",
|
||||||
|
@ -22,8 +25,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"netstandardapp1.5": {
|
"netcoreapp1.0": {
|
||||||
"imports": [
|
"imports": [
|
||||||
|
"netstandardapp1.5",
|
||||||
"dnxcore50",
|
"dnxcore50",
|
||||||
"portable-net45+win8"
|
"portable-net45+win8"
|
||||||
]
|
]
|
||||||
|
|
|
@ -5,7 +5,10 @@
|
||||||
"keyFile": "../../tools/Key.snk"
|
"keyFile": "../../tools/Key.snk"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.NETCore.App": "1.0.0-rc2-*",
|
"Microsoft.NETCore.App": {
|
||||||
|
"type": "platform",
|
||||||
|
"version": "1.0.0-rc2-*"
|
||||||
|
},
|
||||||
"Microsoft.DotNet.Tools.Tests.Utilities": {
|
"Microsoft.DotNet.Tools.Tests.Utilities": {
|
||||||
"target": "project"
|
"target": "project"
|
||||||
},
|
},
|
||||||
|
@ -18,8 +21,9 @@
|
||||||
"dotnet-test-xunit": "1.0.0-dev-128011-22"
|
"dotnet-test-xunit": "1.0.0-dev-128011-22"
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"netstandardapp1.5": {
|
"netcoreapp1.0": {
|
||||||
"imports": [
|
"imports": [
|
||||||
|
"netstandardapp1.5",
|
||||||
"dnxcore50",
|
"dnxcore50",
|
||||||
"portable-net45+win8"
|
"portable-net45+win8"
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
{
|
{
|
||||||
"version": "1.0.0-*",
|
"version": "1.0.0-*",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.NETCore.App": "1.0.0-rc2-*",
|
"Microsoft.NETCore.App": {
|
||||||
|
"type": "platform",
|
||||||
|
"version": "1.0.0-rc2-*"
|
||||||
|
},
|
||||||
"Microsoft.DotNet.ProjectModel": {
|
"Microsoft.DotNet.ProjectModel": {
|
||||||
"target": "project"
|
"target": "project"
|
||||||
},
|
},
|
||||||
|
@ -15,8 +18,9 @@
|
||||||
"dotnet-test-xunit": "1.0.0-dev-128011-22"
|
"dotnet-test-xunit": "1.0.0-dev-128011-22"
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"netstandardapp1.5": {
|
"netcoreapp1.0": {
|
||||||
"imports": [
|
"imports": [
|
||||||
|
"netstandardapp1.5",
|
||||||
"dnxcore50",
|
"dnxcore50",
|
||||||
"portable-net45+win8"
|
"portable-net45+win8"
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
{
|
{
|
||||||
"version": "1.0.0-*",
|
"version": "1.0.0-*",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"NETStandard.Library": "1.5.0-rc2-24008",
|
"Microsoft.NETCore.App": {
|
||||||
|
"type": "platform",
|
||||||
|
"version": "1.0.0-rc2-*"
|
||||||
|
},
|
||||||
"Microsoft.Extensions.Testing.Abstractions": {
|
"Microsoft.Extensions.Testing.Abstractions": {
|
||||||
"target": "project"
|
"target": "project"
|
||||||
},
|
},
|
||||||
|
@ -20,8 +23,9 @@
|
||||||
"FluentAssertions": "4.2.2"
|
"FluentAssertions": "4.2.2"
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"netstandardapp1.5": {
|
"netcoreapp1.0": {
|
||||||
"imports": [
|
"imports": [
|
||||||
|
"netstandardapp1.5",
|
||||||
"dnxcore50",
|
"dnxcore50",
|
||||||
"netstandard1.3",
|
"netstandard1.3",
|
||||||
"portable-net45+win8"
|
"portable-net45+win8"
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
{
|
{
|
||||||
"version": "1.0.0-*",
|
"version": "1.0.0-*",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"NETStandard.Library": "1.5.0-rc2-24008",
|
"Microsoft.NETCore.App": {
|
||||||
|
"type": "platform",
|
||||||
|
"version": "1.0.0-rc2-*"
|
||||||
|
},
|
||||||
"Microsoft.Extensions.Testing.Abstractions": {
|
"Microsoft.Extensions.Testing.Abstractions": {
|
||||||
"target": "project"
|
"target": "project"
|
||||||
},
|
},
|
||||||
|
@ -16,8 +19,9 @@
|
||||||
"moq.netcore": "4.4.0-beta8"
|
"moq.netcore": "4.4.0-beta8"
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"netstandardapp1.5": {
|
"netcoreapp1.0": {
|
||||||
"imports": [
|
"imports": [
|
||||||
|
"netstandardapp1.5",
|
||||||
"dnxcore50",
|
"dnxcore50",
|
||||||
"netstandard1.3",
|
"netstandard1.3",
|
||||||
"portable-net45+win8"
|
"portable-net45+win8"
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
{
|
{
|
||||||
"version": "1.0.0-*",
|
"version": "1.0.0-*",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.NETCore.App": "1.0.0-rc2-*",
|
"Microsoft.NETCore.App": {
|
||||||
|
"type": "platform",
|
||||||
|
"version": "1.0.0-rc2-*"
|
||||||
|
},
|
||||||
"System.Runtime.Serialization.Primitives": "4.1.1-rc2-24008",
|
"System.Runtime.Serialization.Primitives": "4.1.1-rc2-24008",
|
||||||
"Microsoft.DotNet.Tools.Tests.Utilities": {
|
"Microsoft.DotNet.Tools.Tests.Utilities": {
|
||||||
"target": "project"
|
"target": "project"
|
||||||
|
@ -14,8 +17,9 @@
|
||||||
"dotnet-test-xunit": "1.0.0-dev-128011-22"
|
"dotnet-test-xunit": "1.0.0-dev-128011-22"
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"netstandardapp1.5": {
|
"netcoreapp1.0": {
|
||||||
"imports": [
|
"imports": [
|
||||||
|
"netstandardapp1.5",
|
||||||
"dnxcore50",
|
"dnxcore50",
|
||||||
"portable-net451+win8"
|
"portable-net451+win8"
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
{
|
{
|
||||||
"version": "1.0.0-*",
|
"version": "1.0.0-*",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"NETStandard.Library": "1.5.0-rc2-24008",
|
"Microsoft.NETCore.App": {
|
||||||
|
"type": "platform",
|
||||||
|
"version": "1.0.0-rc2-*"
|
||||||
|
},
|
||||||
"Microsoft.DotNet.Tools.Tests.Utilities": {
|
"Microsoft.DotNet.Tools.Tests.Utilities": {
|
||||||
"target": "project"
|
"target": "project"
|
||||||
},
|
},
|
||||||
|
@ -12,8 +15,9 @@
|
||||||
"dotnet-test-xunit": "1.0.0-dev-128011-22"
|
"dotnet-test-xunit": "1.0.0-dev-128011-22"
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"netstandardapp1.5": {
|
"netcoreapp1.0": {
|
||||||
"imports": [
|
"imports": [
|
||||||
|
"netstandardapp1.5",
|
||||||
"dnxcore50",
|
"dnxcore50",
|
||||||
"portable-net451+win8"
|
"portable-net451+win8"
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
{
|
{
|
||||||
"version": "1.0.0-*",
|
"version": "1.0.0-*",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.NETCore.App": "1.0.0-rc2-*",
|
"Microsoft.NETCore.App": {
|
||||||
|
"type": "platform",
|
||||||
|
"version": "1.0.0-rc2-*"
|
||||||
|
},
|
||||||
"System.Runtime.Serialization.Primitives": "4.1.1-rc2-24008",
|
"System.Runtime.Serialization.Primitives": "4.1.1-rc2-24008",
|
||||||
"Microsoft.DotNet.Tools.Tests.Utilities": {
|
"Microsoft.DotNet.Tools.Tests.Utilities": {
|
||||||
"target": "project"
|
"target": "project"
|
||||||
|
@ -13,8 +16,9 @@
|
||||||
"dotnet-test-xunit": "1.0.0-dev-128011-22"
|
"dotnet-test-xunit": "1.0.0-dev-128011-22"
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"netstandardapp1.5": {
|
"netcoreapp1.0": {
|
||||||
"imports": [
|
"imports": [
|
||||||
|
"netstandardapp1.5",
|
||||||
"dnxcore50",
|
"dnxcore50",
|
||||||
"portable-net451+win8"
|
"portable-net451+win8"
|
||||||
]
|
]
|
||||||
|
|
|
@ -4,6 +4,10 @@
|
||||||
"keyFile": "../../tools/Key.snk"
|
"keyFile": "../../tools/Key.snk"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"Microsoft.NETCore.App": {
|
||||||
|
"type": "platform",
|
||||||
|
"version": "1.0.0-rc2-*"
|
||||||
|
},
|
||||||
"Microsoft.DotNet.Cli.Utils": {
|
"Microsoft.DotNet.Cli.Utils": {
|
||||||
"target": "project"
|
"target": "project"
|
||||||
},
|
},
|
||||||
|
@ -26,8 +30,9 @@
|
||||||
"FluentAssertions": "4.2.2"
|
"FluentAssertions": "4.2.2"
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"netstandardapp1.5": {
|
"netcoreapp1.0": {
|
||||||
"imports": [
|
"imports": [
|
||||||
|
"netstandardapp1.5",
|
||||||
"dnxcore50",
|
"dnxcore50",
|
||||||
"portable-net451+win8"
|
"portable-net451+win8"
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
{
|
{
|
||||||
"version": "1.0.0-*",
|
"version": "1.0.0-*",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.NETCore.App": "1.0.0-rc2-*",
|
"Microsoft.NETCore.App": {
|
||||||
|
"type": "platform",
|
||||||
|
"version": "1.0.0-rc2-*"
|
||||||
|
},
|
||||||
"System.Runtime.Serialization.Primitives": "4.1.1-rc2-24008",
|
"System.Runtime.Serialization.Primitives": "4.1.1-rc2-24008",
|
||||||
"System.IO.Compression.ZipFile": "4.0.1-rc2-24008",
|
"System.IO.Compression.ZipFile": "4.0.1-rc2-24008",
|
||||||
"Microsoft.DotNet.Tools.Tests.Utilities": {
|
"Microsoft.DotNet.Tools.Tests.Utilities": {
|
||||||
|
@ -14,8 +17,9 @@
|
||||||
"dotnet-test-xunit": "1.0.0-dev-128011-22"
|
"dotnet-test-xunit": "1.0.0-dev-128011-22"
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"netstandardapp1.5": {
|
"netcoreapp1.0": {
|
||||||
"imports": [
|
"imports": [
|
||||||
|
"netstandardapp1.5",
|
||||||
"dnxcore50",
|
"dnxcore50",
|
||||||
"portable-net451+win8"
|
"portable-net451+win8"
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,6 +1,9 @@
|
||||||
{
|
{
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.NETCore.App": "1.0.0-rc2-*",
|
"Microsoft.NETCore.App": {
|
||||||
|
"type": "platform",
|
||||||
|
"version": "1.0.0-rc2-*"
|
||||||
|
},
|
||||||
"dotnet": {
|
"dotnet": {
|
||||||
"target": "project"
|
"target": "project"
|
||||||
},
|
},
|
||||||
|
@ -19,8 +22,9 @@
|
||||||
"System.Net.NameResolution": "4.0.0-rc2-24008"
|
"System.Net.NameResolution": "4.0.0-rc2-24008"
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"netstandardapp1.5": {
|
"netcoreapp1.0": {
|
||||||
"imports": [
|
"imports": [
|
||||||
|
"netstandardapp1.5",
|
||||||
"dnxcore50",
|
"dnxcore50",
|
||||||
"portable-net45+win8"
|
"portable-net45+win8"
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
{
|
{
|
||||||
"version": "1.0.0-*",
|
"version": "1.0.0-*",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.NETCore.App": "1.0.0-rc2-*",
|
"Microsoft.NETCore.App": {
|
||||||
|
"type": "platform",
|
||||||
|
"version": "1.0.0-rc2-*"
|
||||||
|
},
|
||||||
"System.Runtime.Serialization.Primitives": "4.1.1-rc2-24008",
|
"System.Runtime.Serialization.Primitives": "4.1.1-rc2-24008",
|
||||||
"Microsoft.DotNet.TestFramework": "1.0.0-*",
|
"Microsoft.DotNet.TestFramework": "1.0.0-*",
|
||||||
"Microsoft.DotNet.Tools.Tests.Utilities": {
|
"Microsoft.DotNet.Tools.Tests.Utilities": {
|
||||||
|
@ -15,8 +18,9 @@
|
||||||
"dotnet-test-xunit": "1.0.0-dev-128011-22"
|
"dotnet-test-xunit": "1.0.0-dev-128011-22"
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"netstandardapp1.5": {
|
"netcoreapp1.0": {
|
||||||
"imports": [
|
"imports": [
|
||||||
|
"netstandardapp1.5",
|
||||||
"dnxcore50",
|
"dnxcore50",
|
||||||
"portable-net45+win8"
|
"portable-net45+win8"
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
{
|
{
|
||||||
"version": "1.0.0-*",
|
"version": "1.0.0-*",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.NETCore.App": "1.0.0-rc2-*",
|
"Microsoft.NETCore.App": {
|
||||||
|
"type": "platform",
|
||||||
|
"version": "1.0.0-rc2-*"
|
||||||
|
},
|
||||||
"System.Runtime.Serialization.Primitives": "4.1.1-rc2-24008",
|
"System.Runtime.Serialization.Primitives": "4.1.1-rc2-24008",
|
||||||
"Microsoft.DotNet.Tools.Tests.Utilities": {
|
"Microsoft.DotNet.Tools.Tests.Utilities": {
|
||||||
"target": "project"
|
"target": "project"
|
||||||
|
@ -14,8 +17,9 @@
|
||||||
"dotnet-test-xunit": "1.0.0-dev-128011-22"
|
"dotnet-test-xunit": "1.0.0-dev-128011-22"
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"netstandardapp1.5": {
|
"netcoreapp1.0": {
|
||||||
"imports": [
|
"imports": [
|
||||||
|
"netstandardapp1.5",
|
||||||
"dnxcore50",
|
"dnxcore50",
|
||||||
"portable-net45+win8"
|
"portable-net45+win8"
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
{
|
{
|
||||||
"version": "1.0.0-*",
|
"version": "1.0.0-*",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.NETCore.App": "1.0.0-rc2-*",
|
"Microsoft.NETCore.App": {
|
||||||
|
"type": "platform",
|
||||||
|
"version": "1.0.0-rc2-*"
|
||||||
|
},
|
||||||
"System.Runtime.Serialization.Primitives": "4.1.1-rc2-24008",
|
"System.Runtime.Serialization.Primitives": "4.1.1-rc2-24008",
|
||||||
"Microsoft.DotNet.Tools.Tests.Utilities": {
|
"Microsoft.DotNet.Tools.Tests.Utilities": {
|
||||||
"target": "project"
|
"target": "project"
|
||||||
|
@ -13,8 +16,9 @@
|
||||||
"dotnet-test-xunit": "1.0.0-dev-128011-22"
|
"dotnet-test-xunit": "1.0.0-dev-128011-22"
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"netstandardapp1.5": {
|
"netcoreapp1.0": {
|
||||||
"imports": [
|
"imports": [
|
||||||
|
"netstandardapp1.5",
|
||||||
"dnxcore50",
|
"dnxcore50",
|
||||||
"portable-net45+win8"
|
"portable-net45+win8"
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
{
|
{
|
||||||
"version": "1.0.0-*",
|
"version": "1.0.0-*",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.NETCore.App": "1.0.0-rc2-*",
|
"Microsoft.NETCore.App": {
|
||||||
|
"type": "platform",
|
||||||
|
"version": "1.0.0-rc2-*"
|
||||||
|
},
|
||||||
"Newtonsoft.Json": "7.0.1",
|
"Newtonsoft.Json": "7.0.1",
|
||||||
"Microsoft.DotNet.Tools.Tests.Utilities": {
|
"Microsoft.DotNet.Tools.Tests.Utilities": {
|
||||||
"target": "project"
|
"target": "project"
|
||||||
|
@ -19,8 +22,9 @@
|
||||||
"dotnet-test-xunit": "1.0.0-dev-128011-22"
|
"dotnet-test-xunit": "1.0.0-dev-128011-22"
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"netstandardapp1.5": {
|
"netcoreapp1.0": {
|
||||||
"imports": [
|
"imports": [
|
||||||
|
"netstandardapp1.5",
|
||||||
"dnxcore50",
|
"dnxcore50",
|
||||||
"portable-net45+win8"
|
"portable-net45+win8"
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
{
|
{
|
||||||
"version": "1.0.0-*",
|
"version": "1.0.0-*",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.NETCore.App": "1.0.0-rc2-*",
|
"Microsoft.NETCore.App": {
|
||||||
|
"type": "platform",
|
||||||
|
"version": "1.0.0-rc2-*"
|
||||||
|
},
|
||||||
"Newtonsoft.Json": "7.0.1",
|
"Newtonsoft.Json": "7.0.1",
|
||||||
"dotnet": {
|
"dotnet": {
|
||||||
"target": "project"
|
"target": "project"
|
||||||
|
@ -16,8 +19,9 @@
|
||||||
"FluentAssertions": "4.2.2"
|
"FluentAssertions": "4.2.2"
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"netstandardapp1.5": {
|
"netcoreapp1.0": {
|
||||||
"imports": [
|
"imports": [
|
||||||
|
"netstandardapp1.5",
|
||||||
"dnxcore50",
|
"dnxcore50",
|
||||||
"portable-net45+win8"
|
"portable-net45+win8"
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
{
|
{
|
||||||
"version": "1.0.0-*",
|
"version": "1.0.0-*",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.NETCore.App": "1.0.0-rc2-*",
|
"Microsoft.NETCore.App": {
|
||||||
|
"type": "platform",
|
||||||
|
"version": "1.0.0-rc2-*"
|
||||||
|
},
|
||||||
"System.Runtime.Serialization.Primitives": "4.1.1-rc2-24008",
|
"System.Runtime.Serialization.Primitives": "4.1.1-rc2-24008",
|
||||||
"Microsoft.DotNet.Tools.Tests.Utilities": {
|
"Microsoft.DotNet.Tools.Tests.Utilities": {
|
||||||
"target": "project"
|
"target": "project"
|
||||||
|
@ -17,8 +20,9 @@
|
||||||
"dotnet-test-xunit": "1.0.0-dev-128011-22"
|
"dotnet-test-xunit": "1.0.0-dev-128011-22"
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"netstandardapp1.5": {
|
"netcoreapp1.0": {
|
||||||
"imports": [
|
"imports": [
|
||||||
|
"netstandardapp1.5",
|
||||||
"dnxcore50",
|
"dnxcore50",
|
||||||
"portable-net45+win8"
|
"portable-net45+win8"
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in a new issue