-
Notifications
You must be signed in to change notification settings - Fork 525
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ignore DotNET 5.0 framework when TargetFramework 4 is specified - fixes
- Loading branch information
Showing
8 changed files
with
105 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<?xml version="1.0"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd"> | ||
<metadata> | ||
<id>FluentAssertions</id> | ||
<version>4.0.0</version> | ||
<title>Fluent Assertions</title> | ||
<authors>Dennis Doomen, Oren Novotny, Adam Voss</authors> | ||
<owners>Dennis Doomen</owners> | ||
<licenseUrl>https://github.com/dennisdoomen/FluentAssertions/blob/master/LICENSE</licenseUrl> | ||
<projectUrl>http://www.fluentassertions.com</projectUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>A very extensive set of extension methods that allow you to more naturally specify the expected outcome of a TDD or | ||
BDD-style unit test. Runs on 4.0 and 4.5 (Desktop and Windows Store), CoreCLR, Silverlight 5 and Windows Phone 8, 8.1 and 8.1 for Silverlight. Supports the unit test frameworks NUnit, XUnit, XUnit2, MBUnit, Gallio, MSpec, and NSpec.</description> | ||
<summary>Fluent methods for asserting the result of TDD/BDD specs for .NET 4.0/4.5 (Desktop and Windows Store), CoreCLR, SL5, WP8, WP8.1 and WPA8.1. Supports the unit test frameworks NUnit, XUnit, XUnit2, MBUnit, Gallio, MSpec, and NSpec.</summary> | ||
<releaseNotes>See https://github.com/dennisdoomen/fluentassertions/releases/</releaseNotes> | ||
<copyright>Copyright Dennis Doomen 2010-2014</copyright> | ||
<language>en-US</language> | ||
<tags>MSTest xUnit xUnit2 NUnit MSpec NSpec Gallio MbUnit TDD BDD Fluent Silverlight WinRT WP8 WP8.1 WPA8.1 CoreCLR</tags> | ||
<dependencies> | ||
<group targetFramework=".NETFramework4.0" /> | ||
<group targetFramework="Silverlight5.0" /> | ||
<group targetFramework="Windows8.0" /> | ||
<group targetFramework="WindowsPhone8.0" /> | ||
<group targetFramework="WindowsPhoneApp8.1" /> | ||
<group targetFramework="Xamarin.iOS0.0" /> | ||
<group targetFramework="MonoTouch0.0" /> | ||
<group targetFramework="MonoAndroid0.0" /> | ||
<group targetFramework=".NETPortable0.0-net40+sl5+win8+wp8+wpa81" /> | ||
<group targetFramework=".NETPlatform5.0"> | ||
<dependency id="System.Collections" version="4.0.10" /> | ||
<dependency id="System.Diagnostics.Debug" version="4.0.10" /> | ||
<dependency id="System.Globalization" version="4.0.10" /> | ||
<dependency id="System.Linq" version="4.0.0" /> | ||
<dependency id="System.Linq.Expressions" version="4.0.10" /> | ||
<dependency id="System.ObjectModel" version="4.0.10" /> | ||
<dependency id="System.Reflection" version="4.0.10" /> | ||
<dependency id="System.Reflection.Extensions" version="4.0.0" /> | ||
<dependency id="System.Reflection.Primitives" version="4.0.0" /> | ||
<dependency id="System.Reflection.TypeExtensions" version="4.0.0" /> | ||
<dependency id="System.Runtime" version="4.0.20" /> | ||
<dependency id="System.Runtime.Extensions" version="4.0.10" /> | ||
<dependency id="System.Text.RegularExpressions" version="4.0.10" /> | ||
<dependency id="System.Threading" version="4.0.10" /> | ||
<dependency id="System.Threading.Tasks" version="4.0.10" /> | ||
<dependency id="System.Xml.XDocument" version="4.0.10" /> | ||
</group> | ||
</dependencies> | ||
<frameworkAssemblies> | ||
<frameworkAssembly assemblyName="System.Xml" targetFramework=".NETPortable0.0-net45+monoandroid+xamarin.ios10+monotouch" /> | ||
<frameworkAssembly assemblyName="System.Xml.Linq" targetFramework=".NETPortable0.0-net45+monoandroid+xamarin.ios10+monotouch" /> | ||
</frameworkAssemblies> | ||
</metadata> | ||
</package> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters