NETStandard 1.3 support
See original GitHub issueHi @SimonCropp!
There seems to be an issue with NETStandard 1.3. When I create an empty class library targeting this NETStandard version, add PropertyChanged.Fody and build it using dotnet build, I get the following output:
Restoring packages for C:\Projects\ClassLibrary2\ClassLibrary2\ClassLibrary2.csproj...
Generating MSBuild file C:\Projects\ClassLibrary2\ClassLibrary2\obj\ClassLibrary2.csproj.nuget.g.props.
Restore completed in 301,7 ms for C:\Projects\ClassLibrary2\ClassLibrary2\ClassLibrary2.csproj.
Fody: Fody (version 1.0.0.0) Executing
MSBUILD : error : Fody: Could not find 'System.Collections.Generic.EqualityComparer`1'. [C:\Projects\ClassLibrary2\ClassLibrary2\ClassLibrary2.csproj]
Fody: Finished Fody 332ms.
Build failed.
MSBUILD : error : Fody: Could not find 'System.Collections.Generic.EqualityComparer`1'. [C:\Projects\ClassLibrary2\ClassLibrary2\ClassLibrary2.csproj]
Project setup:
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard1.3</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="PropertyChanged.Fody" Version="2.2.5" />
</ItemGroup>
</Project>
If I change project target framework version to NETStandard 2.0, the error goes away. So does this mean, that lower standard versions are no longer supported?
Thanks.
UPD: The same thing happens to NETStandard 1.0, 1.1, …, 1.6
Issue Analytics
- State:
- Created 6 years ago
- Comments:11 (7 by maintainers)
Top Results From Across the Web
NET Standard
Learn about .NET Standard, its versions, and the .NET implementations that support it. ... 1.0; 1.1; 1.2; 1.3; 1.4; 1.5; 1.6; 2.0; 2.1....
Read more >Migrating from .NET Standard 1.3
NET Core 1.0 and .NET Core 1.1 versions. Following this announcement, AWS ended support for .NET Standard 1.3 on the AWS SDK for...
Read more >NETStandard 1.3 compatibility with NetCoreApp1.0
but I want to interpret the implementation support table so that netstandard 1.3 is supported under netcoreapp1.0. Is this supposed to work, ...
Read more >NETStandard 1.3 support dropped in NUnit 3.10 #2887
Hello, The support for .NET Standard 1.3 seems to be dropped in NUnit 3.10, and now the lowest .NET Standard is 1.6, which...
Read more >.NET Standard Compatibility - Documentation - Devart
NET Standard 1.3 compatible assemblies (compatible with .NET Core 1.0 and higher and .NET Framework 4.6 and higher) .NET Standard 2.0 compatible assemblies ......
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Here it is: https://github.com/worldbeater/PropertyChanged_312_repro Hope this helps.
can someone upload a repro solution