-
Notifications
You must be signed in to change notification settings - Fork 349
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support for FakeItEasy 8 (#1415)
* Added support for FakeItEasy 8 * Added .NET Framework v4.6.2 target for AutoFakeItEasy
- Loading branch information
Showing
2 changed files
with
43 additions
and
2 deletions.
There are no files selected for viewing
40 changes: 40 additions & 0 deletions
40
Src/AutoFakeItEasy.FakeItEasy8UnitTest/AutoFakeItEasy.FakeItEasy8UnitTest.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Import Project="..\Common.props" /> | ||
<Import Project="..\Common.Test.props" /> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net462;netcoreapp2.1</TargetFrameworks> | ||
<AssemblyTitle>AutoFakeItEasy.FakeItEasy8.UnitTest</AssemblyTitle> | ||
<AssemblyName>AutoFixture.AutoFakeItEasy.FakeItEasy8UnitTest</AssemblyName> | ||
<RootNamespace>AutoFixture.AutoFakeItEasy.UnitTest</RootNamespace> | ||
|
||
<DefineConstants>$(DefineConstants);CAN_FAKE_DELEGATES;HAS_A_CALL_TO_SET_SPECIFIER</DefineConstants> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="xunit" Version="2.4.1" /> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
|
||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" /> | ||
<PackageReference Include="FakeItEasy" Version="[8.0.0]" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Compile Include="..\AutoFakeItEasyUnitTest\**\*.cs" Link="%(RecursiveDir)%(Filename)%(Extension)" /> | ||
<Compile Remove="..\AutoFakeItEasyUnitTest\obj\**" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\AutoFakeItEasy\AutoFakeItEasy.csproj" /> | ||
<ProjectReference Include="..\AutoFixture\AutoFixture.csproj" /> | ||
<ProjectReference Include="..\TestTypeFoundation\TestTypeFoundation.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters