Skip to content

Commit 5d7887f

Browse files
committed
Updated MVC4 project to .NET 4.5
1 parent ee3760b commit 5d7887f

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

src/FluentAssertions.Mvc4/FluentAssertions.Mvc4.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<AppDesignerFolder>Properties</AppDesignerFolder>
1212
<RootNamespace>FluentAssertions.Mvc</RootNamespace>
1313
<AssemblyName>FluentAssertions.Mvc4</AssemblyName>
14-
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
14+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
1515
<FileAlignment>512</FileAlignment>
1616
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
1717
<RestorePackages>true</RestorePackages>
@@ -39,11 +39,11 @@
3939
<ItemGroup>
4040
<Reference Include="FluentAssertions, Version=3.3.0.0, Culture=neutral, PublicKeyToken=33f2691a05b67b6a, processorArchitecture=MSIL">
4141
<SpecificVersion>False</SpecificVersion>
42-
<HintPath>..\..\packages\FluentAssertions.3.3.0\lib\net40\FluentAssertions.dll</HintPath>
42+
<HintPath>..\..\packages\FluentAssertions.3.3.0\lib\net45\FluentAssertions.dll</HintPath>
4343
</Reference>
4444
<Reference Include="FluentAssertions.Core, Version=3.3.0.0, Culture=neutral, PublicKeyToken=33f2691a05b67b6a, processorArchitecture=MSIL">
4545
<SpecificVersion>False</SpecificVersion>
46-
<HintPath>..\..\packages\FluentAssertions.3.3.0\lib\net40\FluentAssertions.Core.dll</HintPath>
46+
<HintPath>..\..\packages\FluentAssertions.3.3.0\lib\net45\FluentAssertions.Core.dll</HintPath>
4747
</Reference>
4848
<Reference Include="Microsoft.Web.Infrastructure">
4949
<HintPath>..\..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="FluentAssertions" version="3.3.0" targetFramework="net40" />
4-
<package id="Microsoft.AspNet.Mvc" version="4.0.30506.0" targetFramework="net40" />
5-
<package id="Microsoft.AspNet.Razor" version="2.0.20710.0" targetFramework="net40" />
6-
<package id="Microsoft.AspNet.WebPages" version="2.0.20710.0" targetFramework="net40" />
7-
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net40" />
3+
<package id="FluentAssertions" version="3.3.0" targetFramework="net45" />
4+
<package id="Microsoft.AspNet.Mvc" version="4.0.30506.0" targetFramework="net45" />
5+
<package id="Microsoft.AspNet.Razor" version="2.0.20710.0" targetFramework="net45" />
6+
<package id="Microsoft.AspNet.WebPages" version="2.0.20710.0" targetFramework="net45" />
7+
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net45" />
88
</packages>

tests/FluentAssertions.Mvc4.Tests/FluentAssertions.Mvc4.Tests.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<AppDesignerFolder>Properties</AppDesignerFolder>
1111
<RootNamespace>FluentAssertions.Mvc.Tests</RootNamespace>
1212
<AssemblyName>FluentAssertions.Mvc4.Tests</AssemblyName>
13-
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
13+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
1414
<FileAlignment>512</FileAlignment>
1515
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
1616
<RestorePackages>true</RestorePackages>
@@ -38,18 +38,18 @@
3838
<ItemGroup>
3939
<Reference Include="FluentAssertions, Version=3.3.0.0, Culture=neutral, PublicKeyToken=33f2691a05b67b6a, processorArchitecture=MSIL">
4040
<SpecificVersion>False</SpecificVersion>
41-
<HintPath>..\..\packages\FluentAssertions.3.3.0\lib\net40\FluentAssertions.dll</HintPath>
41+
<HintPath>..\..\packages\FluentAssertions.3.3.0\lib\net45\FluentAssertions.dll</HintPath>
4242
</Reference>
4343
<Reference Include="FluentAssertions.Core, Version=3.3.0.0, Culture=neutral, PublicKeyToken=33f2691a05b67b6a, processorArchitecture=MSIL">
4444
<SpecificVersion>False</SpecificVersion>
45-
<HintPath>..\..\packages\FluentAssertions.3.3.0\lib\net40\FluentAssertions.Core.dll</HintPath>
45+
<HintPath>..\..\packages\FluentAssertions.3.3.0\lib\net45\FluentAssertions.Core.dll</HintPath>
4646
</Reference>
4747
<Reference Include="Microsoft.Web.Infrastructure">
4848
<HintPath>..\..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
4949
<Private>True</Private>
5050
</Reference>
5151
<Reference Include="nunit.framework, Version=3.2.1.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
52-
<HintPath>..\..\packages\NUnit.3.2.1\lib\net40\nunit.framework.dll</HintPath>
52+
<HintPath>..\..\packages\NUnit.3.2.1\lib\net45\nunit.framework.dll</HintPath>
5353
<Private>True</Private>
5454
</Reference>
5555
<Reference Include="System" />
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="FluentAssertions" version="3.3.0" targetFramework="net40" />
4-
<package id="Microsoft.AspNet.Mvc" version="4.0.30506.0" targetFramework="net40" />
5-
<package id="Microsoft.AspNet.Razor" version="2.0.20710.0" targetFramework="net40" />
6-
<package id="Microsoft.AspNet.WebPages" version="2.0.20710.0" targetFramework="net40" />
7-
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net40" />
8-
<package id="NUnit" version="3.2.1" targetFramework="net40" />
3+
<package id="FluentAssertions" version="3.3.0" targetFramework="net45" />
4+
<package id="Microsoft.AspNet.Mvc" version="4.0.30506.0" targetFramework="net45" />
5+
<package id="Microsoft.AspNet.Razor" version="2.0.20710.0" targetFramework="net45" />
6+
<package id="Microsoft.AspNet.WebPages" version="2.0.20710.0" targetFramework="net45" />
7+
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net45" />
8+
<package id="NUnit" version="3.2.1" targetFramework="net45" />
99
</packages>

0 commit comments

Comments
 (0)