Skip to content

Commit b23d3a1

Browse files
author
Travis Illig
committed
Updated test assembly name. Targeting .NET 4.5.1. Switched from NUnit to XUnit.
1 parent 8478253 commit b23d3a1

9 files changed

Lines changed: 376 additions & 341 deletions

File tree

Autofac.Extras.FakeItEasy.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ VisualStudioVersion = 12.0.31101.0
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Autofac.Extras.FakeItEasy", "src\Autofac.Extras.FakeItEasy\Autofac.Extras.FakeItEasy.csproj", "{2BFDBAB2-E2DA-4588-AE2D-133896FF8861}"
77
EndProject
8-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Autofac.Extras.Tests.FakeItEasy", "test\Autofac.Extras.Tests.FakeItEasy\Autofac.Extras.Tests.FakeItEasy.csproj", "{F8482A7A-CAA1-4D8B-BD67-1BB5FBD3A938}"
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Autofac.Extras.FakeItEasy.Test", "test\Autofac.Extras.FakeItEasy.Test\Autofac.Extras.FakeItEasy.Test.csproj", "{F8482A7A-CAA1-4D8B-BD67-1BB5FBD3A938}"
99
EndProject
1010
Global
1111
GlobalSection(SolutionConfigurationPlatforms) = preSolution

src/Autofac.Extras.FakeItEasy/Autofac.Extras.FakeItEasy.csproj

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
55
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@@ -13,10 +13,11 @@
1313
<FileAlignment>512</FileAlignment>
1414
<SignAssembly>true</SignAssembly>
1515
<AssemblyOriginatorKeyFile>..\..\Autofac.snk</AssemblyOriginatorKeyFile>
16-
<TargetFrameworkVersion Condition="$(TargetFrameworkVersion)==''">v4.0</TargetFrameworkVersion>
16+
<TargetFrameworkVersion Condition="$(TargetFrameworkVersion)==''">v4.5.1</TargetFrameworkVersion>
1717
<TargetFrameworkProfile Condition="$(TargetFrameworkVersion)==''">Client</TargetFrameworkProfile>
1818
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\..\</SolutionDir>
1919
<RestorePackages>true</RestorePackages>
20+
<TargetFrameworkProfile />
2021
</PropertyGroup>
2122
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2223
<DebugSymbols>true</DebugSymbols>
@@ -29,6 +30,7 @@
2930
<CodeAnalysisRuleSet>..\..\Full.ruleset</CodeAnalysisRuleSet>
3031
<RunCodeAnalysis>true</RunCodeAnalysis>
3132
<DocumentationFile>bin\Debug\Autofac.Extras.FakeItEasy.xml</DocumentationFile>
33+
<Prefer32Bit>false</Prefer32Bit>
3234
</PropertyGroup>
3335
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
3436
<DebugType>pdbonly</DebugType>
@@ -40,6 +42,7 @@
4042
<CodeAnalysisRuleSet>..\..\Full.ruleset</CodeAnalysisRuleSet>
4143
<RunCodeAnalysis>true</RunCodeAnalysis>
4244
<DocumentationFile>bin\Release\Autofac.Extras.FakeItEasy.xml</DocumentationFile>
45+
<Prefer32Bit>false</Prefer32Bit>
4346
</PropertyGroup>
4447
<ItemGroup>
4548
<Reference Include="Autofac, Version=3.3.0.0, Culture=neutral, PublicKeyToken=17863af14b0044da, processorArchitecture=MSIL">

src/Autofac.Extras.FakeItEasy/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
[assembly: AssemblyInformationalVersion("0.0.0")]
1919
[assembly: AssemblyConfiguration("Release")]
2020
[assembly: AssemblyCopyright("Copyright © 2014 Autofac Contributors")]
21-
[assembly: AssemblyDescription("FakeItEasy auto mocking integration for Autofac IoC")]
21+
[assembly: AssemblyDescription("FakeItEasy auto mocking integration for Autofac IoC.")]

0 commit comments

Comments
 (0)