Skip to content

Commit

Permalink
Updated test assembly name. Targeting .NET 4.5.1. Switched from NUnit…
Browse files Browse the repository at this point in the history
… to XUnit.
  • Loading branch information
Travis Illig committed Jun 30, 2016
1 parent 8478253 commit b23d3a1
Show file tree
Hide file tree
Showing 9 changed files with 376 additions and 341 deletions.
2 changes: 1 addition & 1 deletion Autofac.Extras.FakeItEasy.sln
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ VisualStudioVersion = 12.0.31101.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Autofac.Extras.FakeItEasy", "src\Autofac.Extras.FakeItEasy\Autofac.Extras.FakeItEasy.csproj", "{2BFDBAB2-E2DA-4588-AE2D-133896FF8861}"
EndProject
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}"
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}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
Expand All @@ -13,10 +13,11 @@
<FileAlignment>512</FileAlignment>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\..\Autofac.snk</AssemblyOriginatorKeyFile>
<TargetFrameworkVersion Condition="$(TargetFrameworkVersion)==''">v4.0</TargetFrameworkVersion>
<TargetFrameworkVersion Condition="$(TargetFrameworkVersion)==''">v4.5.1</TargetFrameworkVersion>
<TargetFrameworkProfile Condition="$(TargetFrameworkVersion)==''">Client</TargetFrameworkProfile>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\..\</SolutionDir>
<RestorePackages>true</RestorePackages>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand All @@ -29,6 +30,7 @@
<CodeAnalysisRuleSet>..\..\Full.ruleset</CodeAnalysisRuleSet>
<RunCodeAnalysis>true</RunCodeAnalysis>
<DocumentationFile>bin\Debug\Autofac.Extras.FakeItEasy.xml</DocumentationFile>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
Expand All @@ -40,6 +42,7 @@
<CodeAnalysisRuleSet>..\..\Full.ruleset</CodeAnalysisRuleSet>
<RunCodeAnalysis>true</RunCodeAnalysis>
<DocumentationFile>bin\Release\Autofac.Extras.FakeItEasy.xml</DocumentationFile>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="Autofac, Version=3.3.0.0, Culture=neutral, PublicKeyToken=17863af14b0044da, processorArchitecture=MSIL">
Expand Down
2 changes: 1 addition & 1 deletion src/Autofac.Extras.FakeItEasy/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
[assembly: AssemblyInformationalVersion("0.0.0")]
[assembly: AssemblyConfiguration("Release")]
[assembly: AssemblyCopyright("Copyright © 2014 Autofac Contributors")]
[assembly: AssemblyDescription("FakeItEasy auto mocking integration for Autofac IoC")]
[assembly: AssemblyDescription("FakeItEasy auto mocking integration for Autofac IoC.")]
Loading

0 comments on commit b23d3a1

Please sign in to comment.