Skip to content

Commit

Permalink
The assembly versions were not correctly updated in the build. (#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
dennisdoomen authored Jun 13, 2017
1 parent 6e68f84 commit f61c3a8
Show file tree
Hide file tree
Showing 10 changed files with 47 additions and 21 deletions.
3 changes: 1 addition & 2 deletions LiquidProjections.sln
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.26403.7
VisualStudioVersion = 15.0.26430.13
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{27C8B175-6555-4591-87B1-177A2874FEA9}"
ProjectSection(SolutionItems) = preProject
NuGet.Config = NuGet.Config
SharedAssemblyInfo.cs = SharedAssemblyInfo.cs
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Src", "Src", "{AE89AB5E-BC68-4AA3-9183-A222AC81691C}"
Expand Down
8 changes: 4 additions & 4 deletions Samples/ExampleHost/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.4.2.0")]
[assembly: AssemblyVersion("1.4.2.0")]
[assembly: AssemblyFileVersion("1.4.2.0")]
// [assembly: AssemblyVersion("2.0.0.0")]
[assembly: AssemblyVersion("2.0.0.0")]
[assembly: AssemblyFileVersion("2.0.0.0")]

[assembly: AssemblyInformationalVersion("1.4.2+3.Branch.master.Sha.1e694c5542bd72d5185b031114d8e7927a91e97a")]
[assembly: AssemblyInformationalVersion("2.0.0+Branch.master.Sha.6e68f840c3303bac97b10c567815a3bfef3184d7")]
3 changes: 0 additions & 3 deletions SharedAssemblyInfo.cs

This file was deleted.

12 changes: 12 additions & 0 deletions Src/LiquidProjections.Abstractions/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
using System.Reflection;
using System.Runtime.InteropServices;

[assembly: AssemblyTitle("LiquidProjections.Abstractions")]
[assembly: AssemblyDescription("Defines an abstraction for an event store that supports a transactionally consist group of events.")]
[assembly: AssemblyCopyright("Copyright Dennis Doomen 2016-2017")]

[assembly: ComVisible(false)]

[assembly: AssemblyVersion("2.0.0.0")]
[assembly: AssemblyFileVersion("2.0.0.0")]
[assembly: AssemblyInformationalVersion("2.0.0+Branch.master.Sha.6e68f840c3303bac97b10c567815a3bfef3184d7")]
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

<PropertyGroup>
<TargetFramework>netstandard1.1</TargetFramework>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down
12 changes: 12 additions & 0 deletions Src/LiquidProjections.Testing/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
using System.Reflection;
using System.Runtime.InteropServices;

[assembly: AssemblyTitle("LiquidProjections.Testing")]
[assembly: AssemblyDescription("Helper classes to support testing projects based on LiquidProjections.")]
[assembly: AssemblyCopyright("Copyright Dennis Doomen 2016-2017")]

[assembly: ComVisible(false)]

[assembly: AssemblyVersion("2.0.0.0")]
[assembly: AssemblyFileVersion("2.0.0.0")]
[assembly: AssemblyInformationalVersion("2.0.0+Branch.master.Sha.6e68f840c3303bac97b10c567815a3bfef3184d7")]
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

<PropertyGroup>
<TargetFramework>netstandard1.1</TargetFramework>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand All @@ -18,10 +19,6 @@
<NoWarn>1701;1702;1705;1591</NoWarn>
</PropertyGroup>

<ItemGroup>
<Compile Include="..\..\SharedAssemblyInfo.cs" Link="SharedAssemblyInfo.cs" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\LiquidProjections.Abstractions\LiquidProjections.Abstractions.csproj" />
</ItemGroup>
Expand Down
12 changes: 12 additions & 0 deletions Src/LiquidProjections/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
using System.Reflection;
using System.Runtime.InteropServices;

[assembly: AssemblyTitle("LiquidProjections")]
[assembly: AssemblyDescription("Provides basic building blocks for creating asynchronous projectors that subscribe to an event store.")]
[assembly: AssemblyCopyright("Copyright Dennis Doomen 2016-2017")]

[assembly: ComVisible(false)]

[assembly: AssemblyVersion("2.0.0.0")]
[assembly: AssemblyFileVersion("2.0.0.0")]
[assembly: AssemblyInformationalVersion("2.0.0+Branch.master.Sha.6e68f840c3303bac97b10c567815a3bfef3184d7")]
4 changes: 0 additions & 4 deletions Src/LiquidProjections/LiquidProjections.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,6 @@
<TreatSpecificWarningsAsErrors />
</PropertyGroup>

<ItemGroup>
<Compile Include="..\..\SharedAssemblyInfo.cs" Link="SharedAssemblyInfo.cs" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.3.0" />
<PackageReference Include="System.Dynamic.Runtime" Version="4.3.0" />
Expand Down
8 changes: 4 additions & 4 deletions Tests/LiquidProjections.Specs/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.4.2.0")]
[assembly: AssemblyVersion("1.4.2.0")]
[assembly: AssemblyFileVersion("1.4.2.0")]
// [assembly: AssemblyVersion("2.0.0.0")]
[assembly: AssemblyVersion("2.0.0.0")]
[assembly: AssemblyFileVersion("2.0.0.0")]

[assembly: AssemblyInformationalVersion("1.4.2+3.Branch.master.Sha.1e694c5542bd72d5185b031114d8e7927a91e97a")]
[assembly: AssemblyInformationalVersion("2.0.0+Branch.master.Sha.6e68f840c3303bac97b10c567815a3bfef3184d7")]

0 comments on commit f61c3a8

Please sign in to comment.