Browse Source

[SL.Core] Fixed version numbers

pull/1087/head
Dirk Lemstra 9 years ago
parent
commit
1e43e5096c
  1. 6
      src/SixLabors.Core/Properties/AssemblyInfo.cs
  2. 2
      src/SixLabors.Core/SixLabors.Core.csproj

6
src/SixLabors.Core/Properties/AssemblyInfo.cs

@ -30,9 +30,9 @@ using System.Runtime.CompilerServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0.0")]
[assembly: AssemblyVersion("0.1.0")]
[assembly: AssemblyFileVersion("0.1.0")]
[assembly: AssemblyInformationalVersion("0.1.0-alpha02")]
// Ensure the internals can be tested.
[assembly: InternalsVisibleTo("SixLabors.Core.Tests")]

2
src/SixLabors.Core/SixLabors.Core.csproj

@ -3,7 +3,7 @@
<PropertyGroup>
<Description>Low level primitives for use across Six Labors projects..</Description>
<VersionPrefix Condition="$(packageversion) != ''">$(packageversion)</VersionPrefix>
<VersionPrefix Condition="$(packageversion) == ''">0.1.0-alpha1</VersionPrefix>
<VersionPrefix Condition="$(packageversion) == ''">0.1.0-alpha2</VersionPrefix>
<Authors>Six Labors</Authors>
<TargetFramework>netstandard1.1</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>

Loading…
Cancel
Save