-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathAssertMessage.csproj
More file actions
22 lines (22 loc) · 1.23 KB
/
Copy pathAssertMessage.csproj
File metadata and controls
22 lines (22 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net452;netstandard1.0</TargetFrameworks>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>key.snk</AssemblyOriginatorKeyFile>
<Authors>Rafał Jasica, Simon Cropp</Authors>
<Description>Adds 'message' parameter to Assertions. It is generated from source code. Nunit, Mstest, Xunit is supported.</Description>
<PackageTags>Assert, message, Fody, Cecil, Nunit, Xunit, mstest</PackageTags>
<PackageOutputPath>$(SolutionDir)nugets</PackageOutputPath>
<PackageIconUrl>https://raw.githubusercontent.com/Fody/AssertMessage/master/package_icon.png</PackageIconUrl>
<PackageProjectUrl>https://github.com/Fody/AssertMessage</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<Using Remove="System.Net.Http" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
<PackageReference Include="Fody" Version="6.8.0" PrivateAssets="none" />
<PackageReference Include="FodyPackaging" Version="6.8.0" PrivateAssets="All" />
</ItemGroup>
</Project>