|
4 | 4 | <Description>Fluent Assertions extensions for ASP.NET Core MVC.</Description>
|
5 | 5 | <Copyright>Copyright 2018</Copyright>
|
6 | 6 | <AssemblyTitle>Fluent Assertions extensions for ASP.NET Core MVC</AssemblyTitle>
|
7 |
| - <Title>Fluent Assertions for ASP.NET Core MVC</Title> |
8 |
| - <VersionPrefix>2.4.0</VersionPrefix> |
9 |
| - <Authors>Casey Burns;Kevin Kuszyk</Authors> |
10 |
| - <TargetFramework>netstandard2.0</TargetFramework> |
11 |
| - <AssemblyName>FluentAssertions.AspNetCore.Mvc</AssemblyName> |
12 |
| - <PackageId>FluentAssertions.AspNetCore.Mvc</PackageId> |
13 |
| - <PackageTags>TDD;TDD;Fluent;Mvc;AspNetMvc;aspnetcore;aspnetcoremvc</PackageTags> |
14 |
| - <PackageReleaseNotes>See https://github.com/fluentassertions/fluentassertions.aspnetcore.mvc/releases </PackageReleaseNotes> |
15 |
| - <PackageProjectUrl>https://github.com/fluentassertions/fluentassertions.aspnetcore.mvc</PackageProjectUrl> |
16 |
| - <PackageLicenseUrl>https://github.com/fluentassertions/fluentassertions.aspnetcore.mvc/blob/master/license.txt</PackageLicenseUrl> |
17 |
| - <GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute> |
18 |
| - <GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute> |
19 |
| - <GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> |
20 |
| - <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
21 |
| - </PropertyGroup> |
| 7 | + <Title>Fluent Assertions for ASP.NET Core MVC</Title> |
| 8 | + <VersionPrefix>2.4.0</VersionPrefix> |
| 9 | + <Authors>Casey Burns;Kevin Kuszyk</Authors> |
| 10 | + <TargetFrameworks>netstandard2.0;netcoreapp3.0</TargetFrameworks> |
| 11 | + <AssemblyName>FluentAssertions.AspNetCore.Mvc</AssemblyName> |
| 12 | + <PackageId>FluentAssertions.AspNetCore.Mvc</PackageId> |
| 13 | + <PackageTags>TDD;TDD;Fluent;Mvc;AspNetMvc;aspnetcore;aspnetcoremvc</PackageTags> |
| 14 | + <PackageReleaseNotes>See https://github.com/fluentassertions/fluentassertions.aspnetcore.mvc/releases </PackageReleaseNotes> |
| 15 | + <PackageProjectUrl>https://github.com/fluentassertions/fluentassertions.aspnetcore.mvc</PackageProjectUrl> |
| 16 | + <PackageLicenseUrl>https://github.com/fluentassertions/fluentassertions.aspnetcore.mvc/blob/master/license.txt</PackageLicenseUrl> |
| 17 | + <GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute> |
| 18 | + <GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute> |
| 19 | + <GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> |
| 20 | + <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
| 21 | + <OutputType>Library</OutputType> |
| 22 | + <DocumentationFile>bin\$(Configuration)\$(TargetFramework)\FluentAssertions.AspNetCore.Mvc.xml</DocumentationFile> |
| 23 | + </PropertyGroup> |
22 | 24 |
|
23 |
| - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
24 |
| - <OutputPath>bin\Debug\netstandard2.0\</OutputPath> |
25 |
| - <DocumentationFile>bin\Debug\netstandard2.0\FluentAssertions.AspNetCore.Mvc.xml</DocumentationFile> |
26 |
| - </PropertyGroup> |
| 25 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
| 26 | + <OutputPath>bin\Debug\netstandard2.0\</OutputPath> |
| 27 | + </PropertyGroup> |
27 | 28 |
|
28 |
| - <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> |
29 |
| - <DocumentationFile>bin\Release\netstandard2.0\FluentAssertions.AspNetCore.Mvc.xml</DocumentationFile> |
30 |
| - </PropertyGroup> |
| 29 | + <ItemGroup> |
| 30 | + <PackageReference Include="FluentAssertions" Version="5.0.0" /> |
| 31 | + </ItemGroup> |
31 | 32 |
|
32 |
| - <ItemGroup> |
33 |
| - <PackageReference Include="FluentAssertions" Version="5.0.0" /> |
34 |
| - <PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.0.0" /> |
35 |
| - </ItemGroup> |
36 |
| - |
37 |
| - <ItemGroup> |
38 |
| - <Compile Update="FailureMessages.Designer.cs"> |
39 |
| - <DesignTime>True</DesignTime> |
| 33 | + <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'"> |
| 34 | + <PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.0.0" /> |
| 35 | + </ItemGroup> |
| 36 | + |
| 37 | + <ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'"> |
| 38 | + <FrameworkReference Include="Microsoft.AspNetCore.App" /> |
| 39 | + </ItemGroup> |
| 40 | + |
| 41 | + <ItemGroup> |
| 42 | + <Compile Update="FailureMessages.Designer.cs"> |
| 43 | + <DesignTime>True</DesignTime> |
40 | 44 | <AutoGen>True</AutoGen>
|
41 | 45 | <DependentUpon>FailureMessages.resx</DependentUpon>
|
42 | 46 | </Compile>
|
|
50 | 54 | </ItemGroup>
|
51 | 55 |
|
52 | 56 | </Project>
|
| 57 | + |
0 commit comments