Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'external')
-rw-r--r--external/test-runtime/Configurations.props9
-rw-r--r--external/test-runtime/XUnit.Runtime.depproj43
-rw-r--r--external/test-runtime/project.json7
3 files changed, 45 insertions, 14 deletions
diff --git a/external/test-runtime/Configurations.props b/external/test-runtime/Configurations.props
new file mode 100644
index 0000000000..d9777d8275
--- /dev/null
+++ b/external/test-runtime/Configurations.props
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <PropertyGroup>
+ <BuildConfigurations>
+ netstandard;
+ netfx;
+ </BuildConfigurations>
+ </PropertyGroup>
+</Project> \ No newline at end of file
diff --git a/external/test-runtime/XUnit.Runtime.depproj b/external/test-runtime/XUnit.Runtime.depproj
index 70e52b2d37..5db9b20baf 100644
--- a/external/test-runtime/XUnit.Runtime.depproj
+++ b/external/test-runtime/XUnit.Runtime.depproj
@@ -2,31 +2,48 @@
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
<PropertyGroup>
- <NuGetTargetMoniker>.NETStandard,Version=v2.0</NuGetTargetMoniker>
<IsRuntimeAssembly>false</IsRuntimeAssembly>
<!-- Given that xunit packages bring with them part of the framework, we need to specify a runtime in order to get the assets
This RID value doesn't really matter, since the assets we are copying are not RID specific, so defaulting to Windows here
-->
<NugetRuntimeIdentifier>win7-x64</NugetRuntimeIdentifier>
<OutputPath>$(RuntimePath)</OutputPath>
+ <XUnitConsoleRunnerVersion>2.2.0-beta2-build3300</XUnitConsoleRunnerVersion>
</PropertyGroup>
<ItemGroup>
<None Include="project.json" />
</ItemGroup>
+ <ItemGroup>
+ <PackageToInclude Include="xunit.abstractions"/>
+ <PackageToInclude Include="xunit.assert"/>
+ <PackageToInclude Include="xunit.extensibility.core"/>
+ <PackageToInclude Include="xunit.extensibility.execution"/>
+ <PackageToInclude Include="xunit.runner.utility"/>
+ <PackageToInclude Include="Microsoft.xunit.netcore.extensions"/>
+ <PackageToInclude Include="Microsoft.DotNet.xunit.performance.run.core"/>
+ <PackageToInclude Include="Newtonsoft.Json"/>
+ </ItemGroup>
+
+ <ItemGroup Condition="'$(TargetGroup)' != 'netfx'">
+ <PackageToInclude Include="xunit.console.netcore"/>
+ </ItemGroup>
+
+ <ItemGroup Condition="'$(TargetGroup)' == 'netfx'">
+ <PackageToInclude Include="xunit.runner.console"/>
+ </ItemGroup>
+
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
- <Target Name="FilterNugetPackage" AfterTargets="ResolveNuGetPackages">
- <!-- Filter down to just xunit assets -->
+
+ <Target Name="AddXunitConsoleRunner" BeforeTargets="ResolveReferences" Condition="'$(TargetGroup)' == 'netfx'">
+ <Error Condition="!Exists('$(PackagesDir)xunit.runner.console\$(XUnitConsoleRunnerVersion)\tools\xunit.console.exe')"
+ Text="Error: looks the package $(PackagesDir)xunit.runner.console\$(XUnitConsoleRunnerVersion) not restored or missing xunit.console.exe."
+ />
<ItemGroup>
- <ReferenceCopyLocalPaths Remove="@(ReferenceCopyLocalPaths)" Condition="'%(ReferenceCopyLocalPaths.NuGetPackageId)'!='xunit.abstractions' And
- '%(ReferenceCopyLocalPaths.NuGetPackageId)'!='xunit.assert' And
- '%(ReferenceCopyLocalPaths.NuGetPackageId)'!='xunit.extensibility.core' And
- '%(ReferenceCopyLocalPaths.NuGetPackageId)'!='xunit.extensibility.execution' And
- '%(ReferenceCopyLocalPaths.NuGetPackageId)'!='xunit.console.netcore' And
- '%(ReferenceCopyLocalPaths.NuGetPackageId)'!='xunit.runner.utility' And
- '%(ReferenceCopyLocalPaths.NuGetPackageId)'!='Microsoft.xunit.netcore.extensions' And
- '%(ReferenceCopyLocalPaths.NuGetPackageId)'!='Microsoft.DotNet.xunit.performance.run.core' And
- '%(ReferenceCopyLocalPaths.NuGetPackageId)'!='Newtonsoft.Json'
- " />
+ <ReferenceCopyLocalPaths Include="$(PackagesDir)xunit.runner.console\$(XUnitConsoleRunnerVersion)\tools\*.*">
+ <Private>false</Private>
+ <NuGetPackageId>xunit.runner.console</NuGetPackageId>
+ <NuGetPackageVersion>$(XUnitConsoleRunnerVersion)</NuGetPackageVersion>
+ </ReferenceCopyLocalPaths>
</ItemGroup>
</Target>
</Project>
diff --git a/external/test-runtime/project.json b/external/test-runtime/project.json
index db44e26c29..219c45a00a 100644
--- a/external/test-runtime/project.json
+++ b/external/test-runtime/project.json
@@ -19,7 +19,12 @@
"System.Net.TestData": "1.0.0-prerelease"
},
"frameworks": {
- "netstandard2.0": {}
+ "netstandard2.0": {},
+ "net463": {
+ "dependencies": {
+ "xunit.runner.console": "2.2.0-beta2-build3300"
+ }
+ }
},
"runtimes": {
"win7-x64": {}