Move xunit.abstractions over to the new shared project system.
This commit is contained in:
Родитель
9468532386
Коммит
da2ec3abd9
|
@ -0,0 +1,50 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory),xunit.sln))\tools\xunit.targets" />
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{53012549-D81B-4E40-B626-67C19265AA6F}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>Xunit.Abstractions</RootNamespace>
|
||||
<AssemblyName>xunit.abstractions</AssemblyName>
|
||||
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<SignAssembly>true</SignAssembly>
|
||||
<AssemblyOriginatorKeyFile>..\Signing.snk</AssemblyOriginatorKeyFile>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<CodeAnalysisRuleSet>..\xunit.ruleset</CodeAnalysisRuleSet>
|
||||
<Prefer32Bit>false</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<DocumentationFile>bin\Debug\xunit.abstractions.xml</DocumentationFile>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<DocumentationFile>bin\Release\xunit.abstractions.xml</DocumentationFile>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
</ItemGroup>
|
||||
<Import Project="..\xunit.abstractions\xunit.abstractions.projitems" Label="Shared" />
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
<Target Name="BeforeBuild">
|
||||
</Target>
|
||||
<Target Name="AfterBuild">
|
||||
</Target>
|
||||
-->
|
||||
</Project>
|
|
@ -16,8 +16,8 @@
|
|||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="xunit.abstractions\bin\Release\xunit.abstractions.dll" target="lib\net35\xunit.abstractions.dll" />
|
||||
<file src="xunit.abstractions\bin\Release\xunit.abstractions.xml" target="lib\net35\xunit.abstractions.xml" />
|
||||
<file src="xunit.abstractions.net35\bin\Release\xunit.abstractions.dll" target="lib\net35\xunit.abstractions.dll" />
|
||||
<file src="xunit.abstractions.net35\bin\Release\xunit.abstractions.xml" target="lib\net35\xunit.abstractions.xml" />
|
||||
<file src="xunit.abstractions.pcl\bin\Release\xunit.abstractions.dll" target="lib\portable-net45+win+wpa81+wp80\xunit.abstractions.dll" />
|
||||
<file src="xunit.abstractions.pcl\bin\Release\xunit.abstractions.xml" target="lib\portable-net45+win+wpa81+wp80\xunit.abstractions.xml" />
|
||||
</files>
|
||||
|
|
|
@ -36,14 +36,7 @@
|
|||
<DefineConstants>TRACE</DefineConstants>
|
||||
<DocumentationFile>bin\Release\xunit.abstractions.xml</DocumentationFile>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="..\xunit.abstractions\**\*.cs">
|
||||
<Link>%(RecursiveDir)%(Filename)%(Extension)</Link>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<CodeAnalysisDictionary Include="..\CodeAnalysisDictionary.xml" />
|
||||
</ItemGroup>
|
||||
<Import Project="..\xunit.abstractions\xunit.abstractions.projitems" Label="Shared" />
|
||||
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
|
|
|
@ -1,109 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory),xunit.sln))\tools\xunit.targets" />
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{53012549-D81B-4E40-B626-67C19265AA6F}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>Xunit.Abstractions</RootNamespace>
|
||||
<AssemblyName>xunit.abstractions</AssemblyName>
|
||||
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<SignAssembly>true</SignAssembly>
|
||||
<AssemblyOriginatorKeyFile>..\Signing.snk</AssemblyOriginatorKeyFile>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<CodeAnalysisRuleSet>..\xunit.ruleset</CodeAnalysisRuleSet>
|
||||
<Prefer32Bit>false</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<DocumentationFile>bin\Debug\xunit.abstractions.xml</DocumentationFile>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<DocumentationFile>bin\Release\xunit.abstractions.xml</DocumentationFile>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Frameworks\ISourceInformation.cs" />
|
||||
<Compile Include="Frameworks\ISourceInformationProvider.cs" />
|
||||
<Compile Include="Frameworks\ITestFramework.cs" />
|
||||
<Compile Include="Frameworks\ITestFrameworkDiscoverer.cs" />
|
||||
<Compile Include="Frameworks\ITestFrameworkExecutor.cs" />
|
||||
<Compile Include="Frameworks\ITestFrameworkOptions.cs" />
|
||||
<Compile Include="Messages\BaseInterfaces\ITestClassMessage.cs" />
|
||||
<Compile Include="Messages\BaseInterfaces\ITestMessage.cs" />
|
||||
<Compile Include="Messages\IAfterTestFinished.cs" />
|
||||
<Compile Include="Messages\IAfterTestStarting.cs" />
|
||||
<Compile Include="Messages\IBeforeTestFinished.cs" />
|
||||
<Compile Include="Messages\IBeforeTestStarting.cs" />
|
||||
<Compile Include="Messages\IErrorMessage.cs" />
|
||||
<Compile Include="Messages\BaseInterfaces\IFinishedMessage.cs" />
|
||||
<Compile Include="Messages\IFailureInformation.cs" />
|
||||
<Compile Include="Messages\ITestAssemblyFinished.cs" />
|
||||
<Compile Include="Messages\ITestAssemblyStarting.cs" />
|
||||
<Compile Include="Messages\ITestCaseFinished.cs" />
|
||||
<Compile Include="Messages\BaseInterfaces\ITestCaseMessage.cs" />
|
||||
<Compile Include="Messages\ITestCaseStarting.cs" />
|
||||
<Compile Include="Messages\ITestClassConstructionFinished.cs" />
|
||||
<Compile Include="Messages\ITestClassConstructionStarting.cs" />
|
||||
<Compile Include="Messages\ITestClassDisposeFinished.cs" />
|
||||
<Compile Include="Messages\ITestClassDisposeStarting.cs" />
|
||||
<Compile Include="Messages\ITestClassFinished.cs" />
|
||||
<Compile Include="Messages\ITestClassStarting.cs" />
|
||||
<Compile Include="Messages\ITestCollectionFinished.cs" />
|
||||
<Compile Include="Messages\BaseInterfaces\ITestCollectionMessage.cs" />
|
||||
<Compile Include="Messages\ITestCollectionStarting.cs" />
|
||||
<Compile Include="Messages\ITestFailed.cs" />
|
||||
<Compile Include="Messages\ITestFinished.cs" />
|
||||
<Compile Include="Messages\ITestMethodFinished.cs" />
|
||||
<Compile Include="Messages\ITestMethodStarting.cs" />
|
||||
<Compile Include="Messages\ITestPassed.cs" />
|
||||
<Compile Include="Messages\BaseInterfaces\ITestResultMessage.cs" />
|
||||
<Compile Include="Messages\ITestSkipped.cs" />
|
||||
<Compile Include="Messages\ITestStarting.cs" />
|
||||
<Compile Include="Reflection\IParameterInfo.cs" />
|
||||
<Compile Include="Reflection\IReflectionParameterInfo.cs" />
|
||||
<Compile Include="Messages\IDiscoveryCompleteMessage.cs" />
|
||||
<Compile Include="Messages\BaseInterfaces\IMessageSink.cs" />
|
||||
<Compile Include="Messages\ITestCaseDiscoveryMessage.cs" />
|
||||
<Compile Include="Messages\BaseInterfaces\IMessageSinkMessage.cs" />
|
||||
<Compile Include="GlobalSuppressions.cs" />
|
||||
<Compile Include="Reflection\IAssemblyInfo.cs" />
|
||||
<Compile Include="Reflection\IAttributeInfo.cs" />
|
||||
<Compile Include="Reflection\IMethodInfo.cs" />
|
||||
<Compile Include="Reflection\IReflectionAssemblyInfo.cs" />
|
||||
<Compile Include="Reflection\IReflectionAttributeInfo.cs" />
|
||||
<Compile Include="Reflection\IReflectionMethodInfo.cs" />
|
||||
<Compile Include="Reflection\IReflectionTypeInfo.cs" />
|
||||
<Compile Include="TestCases\ITestCase.cs" />
|
||||
<Compile Include="TestCases\ITestCollection.cs" />
|
||||
<Compile Include="Reflection\ITypeInfo.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<CodeAnalysisDictionary Include="..\CodeAnalysisDictionary.xml" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
<Target Name="BeforeBuild">
|
||||
</Target>
|
||||
<Target Name="AfterBuild">
|
||||
</Target>
|
||||
-->
|
||||
</Project>
|
|
@ -0,0 +1,71 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||
<HasSharedItems>true</HasSharedItems>
|
||||
<SharedGUID>ef8381db-7aa0-41b8-99c5-7a69f1a61f18</SharedGUID>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Label="Configuration">
|
||||
<Import_RootNamespace>Xunit.Abstractions</Import_RootNamespace>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Frameworks\ISourceInformation.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Frameworks\ISourceInformationProvider.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Frameworks\ITestFramework.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Frameworks\ITestFrameworkDiscoverer.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Frameworks\ITestFrameworkExecutor.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Frameworks\ITestFrameworkOptions.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)GlobalSuppressions.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Messages\BaseInterfaces\IFinishedMessage.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Messages\BaseInterfaces\IMessageSink.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Messages\BaseInterfaces\IMessageSinkMessage.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Messages\BaseInterfaces\ITestCaseMessage.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Messages\BaseInterfaces\ITestClassMessage.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Messages\BaseInterfaces\ITestCollectionMessage.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Messages\BaseInterfaces\ITestMessage.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Messages\BaseInterfaces\ITestResultMessage.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Messages\IAfterTestFinished.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Messages\IAfterTestStarting.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Messages\IBeforeTestFinished.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Messages\IBeforeTestStarting.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Messages\IDiscoveryCompleteMessage.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Messages\IErrorMessage.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Messages\IFailureInformation.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Messages\ITestAssemblyFinished.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Messages\ITestAssemblyStarting.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Messages\ITestCaseDiscoveryMessage.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Messages\ITestCaseFinished.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Messages\ITestCaseStarting.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Messages\ITestClassConstructionFinished.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Messages\ITestClassConstructionStarting.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Messages\ITestClassDisposeFinished.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Messages\ITestClassDisposeStarting.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Messages\ITestClassFinished.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Messages\ITestClassStarting.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Messages\ITestCollectionFinished.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Messages\ITestCollectionStarting.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Messages\ITestFailed.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Messages\ITestFinished.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Messages\ITestMethodFinished.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Messages\ITestMethodStarting.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Messages\ITestPassed.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Messages\ITestSkipped.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Messages\ITestStarting.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Reflection\IAssemblyInfo.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Reflection\IAttributeInfo.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Reflection\IMethodInfo.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Reflection\IParameterInfo.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Reflection\IReflectionAssemblyInfo.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Reflection\IReflectionAttributeInfo.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Reflection\IReflectionMethodInfo.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Reflection\IReflectionParameterInfo.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Reflection\IReflectionTypeInfo.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Reflection\ITypeInfo.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)TestCases\ITestCase.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)TestCases\ITestCollection.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<CodeAnalysisDictionary Include="$(MSBuildThisFileDirectory)..\CodeAnalysisDictionary.xml" />
|
||||
</ItemGroup>
|
||||
</Project>
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>ef8381db-7aa0-41b8-99c5-7a69f1a61f18</ProjectGuid>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\CodeSharing\Microsoft.CodeSharing.Common.Default.props" />
|
||||
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\CodeSharing\Microsoft.CodeSharing.Common.props" />
|
||||
<PropertyGroup />
|
||||
<Import Project="xunit.abstractions.projitems" Label="Shared" />
|
||||
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\CodeSharing\Microsoft.CodeSharing.CSharp.targets" />
|
||||
</Project>
|
|
@ -100,9 +100,9 @@
|
|||
<None Include="App.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\xunit.abstractions\xunit.abstractions.csproj">
|
||||
<ProjectReference Include="..\xunit.abstractions.net35\xunit.abstractions.net35.csproj">
|
||||
<Project>{53012549-d81b-4e40-b626-67c19265aa6f}</Project>
|
||||
<Name>xunit.abstractions</Name>
|
||||
<Name>xunit.abstractions.net35</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\xunit.runner.utility\xunit.runner.utility.csproj">
|
||||
<Project>{2CE5D729-2E2A-4D36-8161-0F215B1C46AF}</Project>
|
||||
|
|
|
@ -146,9 +146,9 @@
|
|||
<CodeAnalysisDictionary Include="..\CodeAnalysisDictionary.xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\xunit.abstractions\xunit.abstractions.csproj">
|
||||
<ProjectReference Include="..\xunit.abstractions.net35\xunit.abstractions.net35.csproj">
|
||||
<Project>{53012549-d81b-4e40-b626-67c19265aa6f}</Project>
|
||||
<Name>xunit.abstractions</Name>
|
||||
<Name>xunit.abstractions.net35</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\xunit.core\xunit.core.csproj">
|
||||
<Project>{1b843c0f-8e08-4ba9-8c85-eeaf779a0774}</Project>
|
||||
|
|
|
@ -84,9 +84,9 @@
|
|||
</EmbeddedResource>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\xunit.abstractions\xunit.abstractions.csproj">
|
||||
<ProjectReference Include="..\xunit.abstractions.net35\xunit.abstractions.net35.csproj">
|
||||
<Project>{53012549-d81b-4e40-b626-67c19265aa6f}</Project>
|
||||
<Name>xunit.abstractions</Name>
|
||||
<Name>xunit.abstractions.net35</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\xunit.runner.utility\xunit.runner.utility.csproj">
|
||||
<Project>{efc3f529-3686-416b-9c67-36ec914c776a}</Project>
|
||||
|
|
|
@ -90,9 +90,9 @@
|
|||
</BootstrapperPackage>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\xunit.abstractions\xunit.abstractions.csproj">
|
||||
<ProjectReference Include="..\xunit.abstractions.net35\xunit.abstractions.net35.csproj">
|
||||
<Project>{53012549-d81b-4e40-b626-67c19265aa6f}</Project>
|
||||
<Name>xunit.abstractions</Name>
|
||||
<Name>xunit.abstractions.net35</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\xunit.runner.utility\xunit.runner.utility.csproj">
|
||||
<Project>{efc3f529-3686-416b-9c67-36ec914c776a}</Project>
|
||||
|
|
|
@ -183,9 +183,9 @@
|
|||
</CodeAnalysisDictionary>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\xunit.abstractions\xunit.abstractions.csproj">
|
||||
<ProjectReference Include="..\xunit.abstractions.net35\xunit.abstractions.net35.csproj">
|
||||
<Project>{53012549-d81b-4e40-b626-67c19265aa6f}</Project>
|
||||
<Name>xunit.abstractions</Name>
|
||||
<Name>xunit.abstractions.net35</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
||||
|
|
|
@ -71,9 +71,9 @@
|
|||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\xunit.abstractions\xunit.abstractions.csproj">
|
||||
<ProjectReference Include="..\xunit.abstractions.net35\xunit.abstractions.net35.csproj">
|
||||
<Project>{53012549-d81b-4e40-b626-67c19265aa6f}</Project>
|
||||
<Name>xunit.abstractions</Name>
|
||||
<Name>xunit.abstractions.net35</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\xunit.runner.utility\xunit.runner.utility.csproj">
|
||||
<Project>{efc3f529-3686-416b-9c67-36ec914c776a}</Project>
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
<file src="xunit.console\bin\Release\xunit.console.exe.config" target="tools\xunit.console.exe.config" />
|
||||
<file src="xunit.console\bin\Release.x86\xunit.console.x86.exe" target="tools\xunit.console.x86.exe" />
|
||||
<file src="xunit.console\bin\Release.x86\xunit.console.x86.exe.config" target="tools\xunit.console.x86.exe.config" />
|
||||
<file src="xunit.abstractions\bin\Release\xunit.abstractions.dll" target="tools\xunit.abstractions.dll" />
|
||||
<file src="xunit.abstractions.net35\bin\Release\xunit.abstractions.dll" target="tools\xunit.abstractions.dll" />
|
||||
<file src="xunit.runner.msbuild\bin\Release\xunit.runner.msbuild.dll" target="tools\xunit.runner.msbuild.dll" />
|
||||
<file src="xunit.runner.utility\bin\Release\xunit.runner.utility.dll" target="tools\xunit.runner.utility.dll" />
|
||||
<file src="xunit.runner.utility\bin\Release\xunit.runner.utility.xml" target="tools\xunit.runner.utility.xml" />
|
||||
|
|
|
@ -63,9 +63,9 @@
|
|||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\src\xunit.abstractions\xunit.abstractions.csproj">
|
||||
<ProjectReference Include="..\..\src\xunit.abstractions.net35\xunit.abstractions.net35.csproj">
|
||||
<Project>{53012549-d81b-4e40-b626-67c19265aa6f}</Project>
|
||||
<Name>xunit.abstractions</Name>
|
||||
<Name>xunit.abstractions.net35</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\src\xunit.runner.utility\xunit.runner.utility.csproj">
|
||||
<Project>{efc3f529-3686-416b-9c67-36ec914c776a}</Project>
|
||||
|
|
|
@ -66,9 +66,9 @@
|
|||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\src\xunit.abstractions\xunit.abstractions.csproj">
|
||||
<ProjectReference Include="..\..\src\xunit.abstractions.net35\xunit.abstractions.net35.csproj">
|
||||
<Project>{53012549-d81b-4e40-b626-67c19265aa6f}</Project>
|
||||
<Name>xunit.abstractions</Name>
|
||||
<Name>xunit.abstractions.net35</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\src\xunit.runner.tdnet\xunit.runner.tdnet.csproj">
|
||||
<Project>{c9b3978d-da2c-4f3b-8fc5-1e024ef2f6e8}</Project>
|
||||
|
|
|
@ -76,9 +76,9 @@
|
|||
<Compile Include="Utility\TransformFactoryFacts.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\src\xunit.abstractions\xunit.abstractions.csproj">
|
||||
<ProjectReference Include="..\..\src\xunit.abstractions.net35\xunit.abstractions.net35.csproj">
|
||||
<Project>{53012549-d81b-4e40-b626-67c19265aa6f}</Project>
|
||||
<Name>xunit.abstractions</Name>
|
||||
<Name>xunit.abstractions.net35</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\src\xunit.assert\xunit.assert.csproj">
|
||||
<Project>{80B04AFE-4331-4CDD-B247-864AC6482F7C}</Project>
|
||||
|
|
|
@ -101,9 +101,9 @@
|
|||
<Compile Include="SerializationTests.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\src\xunit.abstractions\xunit.abstractions.csproj">
|
||||
<ProjectReference Include="..\..\src\xunit.abstractions.net35\xunit.abstractions.net35.csproj">
|
||||
<Project>{53012549-d81b-4e40-b626-67c19265aa6f}</Project>
|
||||
<Name>xunit.abstractions</Name>
|
||||
<Name>xunit.abstractions.net35</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\src\xunit.runner.tdnet\xunit.runner.tdnet.csproj">
|
||||
<Project>{c9b3978d-da2c-4f3b-8fc5-1e024ef2f6e8}</Project>
|
||||
|
|
|
@ -58,9 +58,9 @@
|
|||
<Compile Include="xunitTests.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\src\xunit.abstractions\xunit.abstractions.csproj">
|
||||
<ProjectReference Include="..\..\src\xunit.abstractions.net35\xunit.abstractions.net35.csproj">
|
||||
<Project>{53012549-d81b-4e40-b626-67c19265aa6f}</Project>
|
||||
<Name>xunit.abstractions</Name>
|
||||
<Name>xunit.abstractions.net35</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\src\xunit.runner.msbuild\xunit.runner.msbuild.csproj">
|
||||
<Project>{785d4014-e42e-4e08-922f-3de40dc7d9a0}</Project>
|
||||
|
|
|
@ -47,9 +47,9 @@
|
|||
<Compile Include="Extensions\TestResultMessageExtensionsTests.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\src\xunit.abstractions\xunit.abstractions.csproj">
|
||||
<ProjectReference Include="..\..\src\xunit.abstractions.net35\xunit.abstractions.net35.csproj">
|
||||
<Project>{53012549-d81b-4e40-b626-67c19265aa6f}</Project>
|
||||
<Name>xunit.abstractions</Name>
|
||||
<Name>xunit.abstractions.net35</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\src\xunit.runner.tdnet\xunit.runner.tdnet.csproj">
|
||||
<Project>{c9b3978d-da2c-4f3b-8fc5-1e024ef2f6e8}</Project>
|
||||
|
|
|
@ -68,9 +68,9 @@
|
|||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\src\xunit.abstractions\xunit.abstractions.csproj">
|
||||
<ProjectReference Include="..\..\src\xunit.abstractions.net35\xunit.abstractions.net35.csproj">
|
||||
<Project>{53012549-d81b-4e40-b626-67c19265aa6f}</Project>
|
||||
<Name>xunit.abstractions</Name>
|
||||
<Name>xunit.abstractions.net35</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\src\xunit.runner.tdnet\xunit.runner.tdnet.csproj">
|
||||
<Project>{c9b3978d-da2c-4f3b-8fc5-1e024ef2f6e8}</Project>
|
||||
|
|
|
@ -53,9 +53,9 @@
|
|||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\src\xunit.abstractions\xunit.abstractions.csproj">
|
||||
<ProjectReference Include="..\..\src\xunit.abstractions.net35\xunit.abstractions.net35.csproj">
|
||||
<Project>{53012549-d81b-4e40-b626-67c19265aa6f}</Project>
|
||||
<Name>xunit.abstractions</Name>
|
||||
<Name>xunit.abstractions.net35</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\src\xunit.runner.tdnet\xunit.runner.tdnet.csproj">
|
||||
<Project>{c9b3978d-da2c-4f3b-8fc5-1e024ef2f6e8}</Project>
|
||||
|
|
75
xunit.sln
75
xunit.sln
|
@ -7,7 +7,9 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{DAED8494-AC8
|
|||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{D013AD79-A261-4476-93FC-9AF7E637CDB6}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "xunit.abstractions", "src\xunit.abstractions\xunit.abstractions.csproj", "{53012549-D81B-4E40-B626-67C19265AA6F}"
|
||||
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "xunit.abstractions", "src\xunit.abstractions\xunit.abstractions.shproj", "{EF8381DB-7AA0-41B8-99C5-7A69F1A61F18}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "xunit.abstractions.net35", "src\xunit.abstractions.net35\xunit.abstractions.net35.csproj", "{53012549-D81B-4E40-B626-67C19265AA6F}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "xunit.execution", "src\xunit.execution\xunit.execution.csproj", "{09EF9917-4B00-4646-8C3F-96EFACC8BF51}"
|
||||
EndProject
|
||||
|
@ -67,12 +69,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "NuGet", "NuGet", "{E4522B71
|
|||
src\xunit.runners.nuspec = src\xunit.runners.nuspec
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Test Collections", "Test Collections", "{F185A099-6725-4229-ADF1-8DB94AA6CD51}"
|
||||
ProjectSection(SolutionItems) = preProject
|
||||
xunit-debug.xunit = xunit-debug.xunit
|
||||
xunit-release.xunit = xunit-release.xunit
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Targets", "Targets", "{942F0424-C972-4983-8A66-B8EB64A28F23}"
|
||||
ProjectSection(SolutionItems) = preProject
|
||||
xunit.msbuild = xunit.msbuild
|
||||
|
@ -81,7 +77,24 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Targets", "Targets", "{942F
|
|||
tools\xunit.vsix.msbuild = tools\xunit.vsix.msbuild
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "abstractions", "abstractions", "{C987FBEE-4FE7-46CA-8175-9531F5DEBB29}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "runners", "runners", "{C11636E8-A3D7-4B0C-BC1E-2726B02A101F}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "runners", "runners", "{9D9F81DC-EE05-43B4-AF77-8EFE32024E82}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "core", "core", "{A727699B-E50A-4F83-8627-8BE64237582C}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "core", "core", "{AE42309B-BFBE-4253-8AD6-BBFD676152ED}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "v1", "v1", "{C86F3A8E-8D96-4B0C-AA02-0293F278F1B3}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SharedMSBuildProjectFiles) = preSolution
|
||||
src\xunit.abstractions\xunit.abstractions.projitems*{77743589-f177-4007-97b8-50b82a1c7044}*SharedItemsImports = 4
|
||||
src\xunit.abstractions\xunit.abstractions.projitems*{53012549-d81b-4e40-b626-67c19265aa6f}*SharedItemsImports = 4
|
||||
src\xunit.abstractions\xunit.abstractions.projitems*{ef8381db-7aa0-41b8-99c5-7a69f1a61f18}*SharedItemsImports = 13
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
|
@ -172,28 +185,34 @@ Global
|
|||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(NestedProjects) = preSolution
|
||||
{53012549-D81B-4E40-B626-67C19265AA6F} = {DAED8494-AC8A-4C67-A8F1-616D95ECC302}
|
||||
{09EF9917-4B00-4646-8C3F-96EFACC8BF51} = {DAED8494-AC8A-4C67-A8F1-616D95ECC302}
|
||||
{4FEC8604-E544-43C2-979C-F0815B5770E2} = {D013AD79-A261-4476-93FC-9AF7E637CDB6}
|
||||
{C32639C0-50EB-49AB-9681-C3334E5DEAE7} = {D013AD79-A261-4476-93FC-9AF7E637CDB6}
|
||||
{EFC3F529-3686-416B-9C67-36EC914C776A} = {DAED8494-AC8A-4C67-A8F1-616D95ECC302}
|
||||
{8CFA4522-D8B4-4BE9-A01A-A7F7124B5FCC} = {D013AD79-A261-4476-93FC-9AF7E637CDB6}
|
||||
{C9B3978D-DA2C-4F3B-8FC5-1E024EF2F6E8} = {DAED8494-AC8A-4C67-A8F1-616D95ECC302}
|
||||
{5DE631D1-860E-40CB-89D4-75D0F7F7D941} = {D013AD79-A261-4476-93FC-9AF7E637CDB6}
|
||||
{785D4014-E42E-4E08-922F-3DE40DC7D9A0} = {DAED8494-AC8A-4C67-A8F1-616D95ECC302}
|
||||
{E1A71E21-6AC8-40FF-A034-9963E890AB70} = {D013AD79-A261-4476-93FC-9AF7E637CDB6}
|
||||
{19C75545-5E0E-4E38-9995-511ED2DF6D30} = {DAED8494-AC8A-4C67-A8F1-616D95ECC302}
|
||||
{924678EB-03AF-4513-827F-8D311CAFDAD7} = {DAED8494-AC8A-4C67-A8F1-616D95ECC302}
|
||||
{05269B63-FD22-45DD-936E-FED6707113B5} = {D013AD79-A261-4476-93FC-9AF7E637CDB6}
|
||||
{61615231-0BD8-43FA-903E-27F5A5A5E3F6} = {D013AD79-A261-4476-93FC-9AF7E637CDB6}
|
||||
{7AFFADA0-8F38-4D95-841E-A224B87A0011} = {D013AD79-A261-4476-93FC-9AF7E637CDB6}
|
||||
{80B04AFE-4331-4CDD-B247-864AC6482F7C} = {DAED8494-AC8A-4C67-A8F1-616D95ECC302}
|
||||
{EBAB9937-2A6A-41EA-848B-3F7EDE2396CB} = {DAED8494-AC8A-4C67-A8F1-616D95ECC302}
|
||||
{B1875255-91B8-4B17-A6B3-7A96A49004D5} = {D013AD79-A261-4476-93FC-9AF7E637CDB6}
|
||||
{77743589-F177-4007-97B8-50B82A1C7044} = {DAED8494-AC8A-4C67-A8F1-616D95ECC302}
|
||||
{1B843C0F-8E08-4BA9-8C85-EEAF779A0774} = {DAED8494-AC8A-4C67-A8F1-616D95ECC302}
|
||||
{EF8381DB-7AA0-41B8-99C5-7A69F1A61F18} = {C987FBEE-4FE7-46CA-8175-9531F5DEBB29}
|
||||
{53012549-D81B-4E40-B626-67C19265AA6F} = {C987FBEE-4FE7-46CA-8175-9531F5DEBB29}
|
||||
{09EF9917-4B00-4646-8C3F-96EFACC8BF51} = {A727699B-E50A-4F83-8627-8BE64237582C}
|
||||
{4FEC8604-E544-43C2-979C-F0815B5770E2} = {AE42309B-BFBE-4253-8AD6-BBFD676152ED}
|
||||
{C32639C0-50EB-49AB-9681-C3334E5DEAE7} = {AE42309B-BFBE-4253-8AD6-BBFD676152ED}
|
||||
{EFC3F529-3686-416B-9C67-36EC914C776A} = {A727699B-E50A-4F83-8627-8BE64237582C}
|
||||
{8CFA4522-D8B4-4BE9-A01A-A7F7124B5FCC} = {AE42309B-BFBE-4253-8AD6-BBFD676152ED}
|
||||
{C9B3978D-DA2C-4F3B-8FC5-1E024EF2F6E8} = {C11636E8-A3D7-4B0C-BC1E-2726B02A101F}
|
||||
{5DE631D1-860E-40CB-89D4-75D0F7F7D941} = {9D9F81DC-EE05-43B4-AF77-8EFE32024E82}
|
||||
{785D4014-E42E-4E08-922F-3DE40DC7D9A0} = {C11636E8-A3D7-4B0C-BC1E-2726B02A101F}
|
||||
{E1A71E21-6AC8-40FF-A034-9963E890AB70} = {9D9F81DC-EE05-43B4-AF77-8EFE32024E82}
|
||||
{19C75545-5E0E-4E38-9995-511ED2DF6D30} = {C11636E8-A3D7-4B0C-BC1E-2726B02A101F}
|
||||
{924678EB-03AF-4513-827F-8D311CAFDAD7} = {C11636E8-A3D7-4B0C-BC1E-2726B02A101F}
|
||||
{05269B63-FD22-45DD-936E-FED6707113B5} = {9D9F81DC-EE05-43B4-AF77-8EFE32024E82}
|
||||
{61615231-0BD8-43FA-903E-27F5A5A5E3F6} = {C86F3A8E-8D96-4B0C-AA02-0293F278F1B3}
|
||||
{7AFFADA0-8F38-4D95-841E-A224B87A0011} = {9D9F81DC-EE05-43B4-AF77-8EFE32024E82}
|
||||
{80B04AFE-4331-4CDD-B247-864AC6482F7C} = {A727699B-E50A-4F83-8627-8BE64237582C}
|
||||
{EBAB9937-2A6A-41EA-848B-3F7EDE2396CB} = {C11636E8-A3D7-4B0C-BC1E-2726B02A101F}
|
||||
{B1875255-91B8-4B17-A6B3-7A96A49004D5} = {AE42309B-BFBE-4253-8AD6-BBFD676152ED}
|
||||
{77743589-F177-4007-97B8-50B82A1C7044} = {C987FBEE-4FE7-46CA-8175-9531F5DEBB29}
|
||||
{1B843C0F-8E08-4BA9-8C85-EEAF779A0774} = {A727699B-E50A-4F83-8627-8BE64237582C}
|
||||
{E4522B71-86C4-4214-B57A-3FF0C31F3876} = {3AD1513F-07B7-4C14-AB10-83682616ACE5}
|
||||
{F185A099-6725-4229-ADF1-8DB94AA6CD51} = {3AD1513F-07B7-4C14-AB10-83682616ACE5}
|
||||
{942F0424-C972-4983-8A66-B8EB64A28F23} = {3AD1513F-07B7-4C14-AB10-83682616ACE5}
|
||||
{C987FBEE-4FE7-46CA-8175-9531F5DEBB29} = {DAED8494-AC8A-4C67-A8F1-616D95ECC302}
|
||||
{C11636E8-A3D7-4B0C-BC1E-2726B02A101F} = {DAED8494-AC8A-4C67-A8F1-616D95ECC302}
|
||||
{9D9F81DC-EE05-43B4-AF77-8EFE32024E82} = {D013AD79-A261-4476-93FC-9AF7E637CDB6}
|
||||
{A727699B-E50A-4F83-8627-8BE64237582C} = {DAED8494-AC8A-4C67-A8F1-616D95ECC302}
|
||||
{AE42309B-BFBE-4253-8AD6-BBFD676152ED} = {D013AD79-A261-4476-93FC-9AF7E637CDB6}
|
||||
{C86F3A8E-8D96-4B0C-AA02-0293F278F1B3} = {D013AD79-A261-4476-93FC-9AF7E637CDB6}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
|
|
Загрузка…
Ссылка в новой задаче