Skip to content

Commit

Permalink
Back-revved to Autofac 3.3.1 as previous. Verified tests still pass u…
Browse files Browse the repository at this point in the history
…sing Autofac 4 and binding redirects.
  • Loading branch information
tillig committed Sep 11, 2015
1 parent 63db0ab commit 19f83ff
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/Autofac.Integration.Mef/Autofac.Integration.Mef.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="Autofac, Version=4.0.0.0, Culture=neutral, PublicKeyToken=17863af14b0044da, processorArchitecture=MSIL">
<HintPath>..\..\packages\Autofac.4.0.0-beta7-130\lib\net45\Autofac.dll</HintPath>
<Reference Include="Autofac, Version=3.3.0.0, Culture=neutral, PublicKeyToken=17863af14b0044da, processorArchitecture=MSIL">
<HintPath>..\..\packages\Autofac.3.3.1\lib\net40\Autofac.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
Expand Down
2 changes: 1 addition & 1 deletion src/Autofac.Integration.Mef/Autofac.Integration.Mef.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<projectUrl>http://autofac.org</projectUrl>
<iconUrl>http://code.google.com/p/autofac/logo</iconUrl>
<dependencies>
<dependency id="Autofac" version="[4.0.0-beta7,5.0.0)" />
<dependency id="Autofac" version="[3.3.1,5.0.0)" />
</dependencies>
</metadata>
</package>
2 changes: 1 addition & 1 deletion src/Autofac.Integration.Mef/packages.config
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Autofac" version="4.0.0-beta7-130" targetFramework="net45" />
<package id="Autofac" version="3.3.1" targetFramework="net45" />
</packages>
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="Autofac, Version=4.0.0.0, Culture=neutral, PublicKeyToken=17863af14b0044da, processorArchitecture=MSIL">
<HintPath>..\..\packages\Autofac.4.0.0-beta7-130\lib\net45\Autofac.dll</HintPath>
<Reference Include="Autofac, Version=3.3.0.0, Culture=neutral, PublicKeyToken=17863af14b0044da, processorArchitecture=MSIL">
<HintPath>..\..\packages\Autofac.3.3.1\lib\net40\Autofac.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
Expand Down
3 changes: 2 additions & 1 deletion test/Autofac.Integration.Mef.Test/packages.config
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Autofac" version="4.0.0-beta7-130" targetFramework="net45" />
<package id="Autofac" version="3.3.1" targetFramework="net45" />
<package id="xunit" version="2.0.0" targetFramework="net45" />
<package id="xunit.abstractions" version="2.0.0" targetFramework="net45" />
<package id="xunit.assert" version="2.0.0" targetFramework="net45" />
<package id="xunit.core" version="2.0.0" targetFramework="net45" />
<package id="xunit.extensibility.core" version="2.0.0" targetFramework="net45" />
<package id="xunit.runner.console" version="2.0.0" targetFramework="net45" />
<package id="xunit.runner.visualstudio" version="2.0.1" targetFramework="net45" />
</packages>

4 comments on commit 19f83ff

@wildshane
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Has there been any attempt at using latest Autofac in this library (since attempting with beta)?

@tillig
Copy link
Member Author

@tillig tillig commented on 19f83ff Jul 31, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@wildshane
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I seem to be having an issue with Mef at startup looking for AF 3.3.1 after upgrading to AF 3.5.2

@tillig
Copy link
Member Author

@tillig tillig commented on 19f83ff Aug 14, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@wildshane add assembly binding redirect to your app.config.

Please sign in to comment.