forked from fluentassertions/fluentassertions.aspnetcore.mvc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFluentAssertions.AspNetCore.Mvc.csproj
56 lines (47 loc) · 2.55 KB
/
FluentAssertions.AspNetCore.Mvc.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<Project Sdk="MSBuild.Sdk.Extras">
<PropertyGroup>
<Description>Fluent Assertions extensions for ASP.NET Core MVC.</Description>
<Copyright>Copyright 2018</Copyright>
<AssemblyTitle>Fluent Assertions extensions for ASP.NET Core MVC</AssemblyTitle>
<Title>Fluent Assertions for ASP.NET Core MVC</Title>
<VersionPrefix>3.2.0</VersionPrefix>
<Authors>Casey Burns;Kevin Kuszyk</Authors>
<TargetFrameworks>netstandard2.0;netcoreapp3.0</TargetFrameworks>
<AssemblyName>FluentAssertions.AspNetCore.Mvc</AssemblyName>
<PackageId>FluentAssertions.AspNetCore.Mvc</PackageId>
<PackageTags>TDD;Fluent;Mvc;AspNetMvc;aspnetcore;aspnetcoremvc</PackageTags>
<PackageReleaseNotes>See https://github.com/fluentassertions/fluentassertions.aspnetcore.mvc/releases </PackageReleaseNotes>
<PackageProjectUrl>https://github.com/fluentassertions/fluentassertions.aspnetcore.mvc</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/fluentassertions/fluentassertions.aspnetcore.mvc/blob/master/license.txt</PackageLicenseUrl>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<OutputType>Library</OutputType>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\FluentAssertions.AspNetCore.Mvc.xml</DocumentationFile>
<OutputPath>bin\$(Configuration)\$(TargetFramework)\</OutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="FluentAssertions" Version="5.0.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.1.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'">
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup>
<ReferenceAssemblyProjectReference Include="..\FluentAssertions.AspNetCore.Mvc.Ref\FluentAssertions.AspNetCore.Mvc.Ref.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Update="FailureMessages.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>FailureMessages.resx</DependentUpon>
</Compile>
<EmbeddedResource Update="FailureMessages.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>FailureMessages.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>