Skip to content

Commit

Permalink
dotnet core version was downgraded to 1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
force-net committed Dec 12, 2016
1 parent 799c08a commit 11202b8
Show file tree
Hide file tree
Showing 5 changed files with 50 additions and 593 deletions.
14 changes: 8 additions & 6 deletions Crc32.NET.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>
<id>Crc32.NET</id>
<title>Crc32 for .NET</title>
<version>1.0.1</version>
<version>1.0.2</version>
<authors>force</authors>
<owners>force</owners>
<licenseUrl>https://github.com/force-net/Crc32.NET/blob/develop/LICENSE</licenseUrl>
Expand All @@ -12,19 +12,21 @@
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Fast version of Crc32 algorithm for .NET. It is up to 3x-5x times better than other "fast" implemenations. Code based on Crc32C.NET library.</description>
<releaseNotes>
Small technical update. Added support for .NET Core
Downgraded .NET core version from 1.6 to 1.3 for better compatibility
</releaseNotes>
<copyright>Copyright by Force 2016</copyright>
<tags>crc32 crc-32 crc .NET</tags>
<dependencies>
<group targetFramework=".NETStandard1.6">
<dependency id="NETStandard.Library" version="[1.6.0, )" />
<group targetFramework="net20">
</group>
<group targetFramework=".NETStandard1.3">
<dependency id="NETStandard.Library" version="[1.3.0, )" />
</group>
</dependencies>
</metadata>
<files>
<file src="Crc32.NET\bin\Build\Crc32.NET.*" target="lib\net20" />
<file src="Crc32.NET\bin\BuildCore\Crc32.NET.dll" target="lib\netstandard1.6" />
<file src="Crc32.NET\bin\BuildCore\Crc32.NET.xml" target="lib\netstandard1.6" />
<file src="Crc32.NET\bin\BuildCore\Crc32.NET.dll" target="lib\netstandard1.3" />
<file src="Crc32.NET\bin\BuildCore\Crc32.NET.xml" target="lib\netstandard1.3" />
</files>
</package>
4 changes: 3 additions & 1 deletion Crc32.NET/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

#if !NETCORE
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("7006accd-896a-4966-add2-d881e72fbb4a")]
#endif

// Version information for an assembly consists of the following four values:
//
Expand All @@ -32,7 +34,7 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.1.1")]
[assembly: AssemblyFileVersion("1.0.2.2")]

#if BUILD
[assembly: AssemblyKeyFileAttribute("..\\public.snk")]
Expand Down
28 changes: 14 additions & 14 deletions Crc32.NET/project.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"version": "1.0.1-*",

"version": "1.0.2-*",
"dependencies": {
"NETStandard.Library": "1.6.0"
"NETStandard.Library": "1.3.0",
},

"frameworks": {
"netstandard1.6": {
"imports": "dnxcore50"
}
"netstandard1.3": {}
},
"buildOptions": {
"xmlDoc": true,
"keyFile": "../public.snk",
"delaySign": true,
"define": ["NETCORE"],
"optimize": true
"configurations": {
"BuildCore": {
"buildOptions": {
"xmlDoc": true,
"keyFile": "../public.snk",
"delaySign": true,
"define": ["NETCORE"],
"optimize": true
}
}
}
}
}
Loading

0 comments on commit 11202b8

Please sign in to comment.