Skip to content

Commit

Permalink
Combine versioning of serialization, and transport plugins
Browse files Browse the repository at this point in the history
Signed-off-by: Tomasz Maruszak <maruszaktomasz@gmail.com>
  • Loading branch information
zarusz committed Oct 26, 2023
1 parent 848c744 commit 365537f
Show file tree
Hide file tree
Showing 24 changed files with 37 additions and 25 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Import Project="Common.NuGet.Properties.xml" />

<PropertyGroup>
<Version>2.1.10</Version>
<Version>2.2.0-rc1</Version>
</PropertyGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

<Import Project="Common.NuGet.Properties.xml" />
<Import Project="Host.Plugin.Properties.xml" />

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Version>2.0.2</Version>
</PropertyGroup>
</Project>
6 changes: 6 additions & 0 deletions src/Host.Plugin.Transport.Properties.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

<Import Project="Host.Plugin.Properties.xml" />

</Project>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="../Host.Transport.Properties.xml" />
<Import Project="../Host.Plugin.Transport.Properties.xml" />

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="../Host.Transport.Properties.xml" />
<Import Project="../Host.Plugin.Properties.xml" />

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="../Host.Transport.Properties.xml" />
<Import Project="../Host.Plugin.Transport.Properties.xml" />

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="../Host.Transport.Properties.xml" />
<Import Project="../Host.Plugin.Transport.Properties.xml" />

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Version>2.0.4</Version>
<Description>Core configuration interfaces of SlimMessageBus</Description>
<PackageTags>SlimMessageBus</PackageTags>
<RootNamespace>SlimMessageBus.Host</RootNamespace>
<Version>2.0.5-rc1</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="../Host.Transport.Properties.xml" />
<Import Project="../Host.Plugin.Properties.xml" />

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="../Host.Transport.Properties.xml" />
<Import Project="../Host.Plugin.Transport.Properties.xml" />

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="../Host.Transport.Properties.xml" />
<Import Project="../Host.Plugin.Transport.Properties.xml" />

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="../Host.Transport.Properties.xml" />
<Import Project="../Host.Plugin.Transport.Properties.xml" />

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="../Host.Transport.Properties.xml" />
<Import Project="../Host.Plugin.Properties.xml" />

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="../Host.Transport.Properties.xml" />
<Import Project="../Host.Plugin.Properties.xml" />

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="../Host.Transport.Properties.xml" />
<Import Project="../Host.Plugin.Properties.xml" />

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="../Host.Transport.Properties.xml" />
<Import Project="../Host.Plugin.Transport.Properties.xml" />

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="../Host.Transport.Properties.xml" />
<Import Project="../Host.Plugin.Transport.Properties.xml" />

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="../Host.Serialization.Properties.xml" />
<Import Project="../Host.Plugin.Serialization.Properties.xml" />

<PropertyGroup>
<Authors>zarusz, beto580, fgparamio</Authors>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="../Host.Serialization.Properties.xml" />
<Import Project="../Host.Plugin.Serialization.Properties.xml" />

<PropertyGroup>
<Authors>zarusz, achehre</Authors>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="../Host.Serialization.Properties.xml" />
<Import Project="../Host.Plugin.Serialization.Properties.xml" />

<PropertyGroup>
<Description>Extension to SlimMessageBus that delegates serialization to the respective serialization plugin based on message type.</Description>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="../Host.Serialization.Properties.xml" />
<Import Project="../Host.Plugin.Serialization.Properties.xml" />

<PropertyGroup>
<Description>Plugin for SlimMessageBus that provides JSON serialization based on the Json.NET library</Description>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="../Host.Serialization.Properties.xml" />
<Import Project="../Host.Plugin.Serialization.Properties.xml" />

<PropertyGroup>
<Description>Plugin for SlimMessageBus that provides JSON serialization based on the native System.Text.Json library</Description>
Expand Down
2 changes: 1 addition & 1 deletion src/SlimMessageBus.Host/SlimMessageBus.Host.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="../Host.Transport.Properties.xml" />
<Import Project="../Host.Plugin.Transport.Properties.xml" />

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
Expand Down
11 changes: 9 additions & 2 deletions src/SlimMessageBus.sln
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,13 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Content", "Content", "{8835
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Plugins", "Plugins", "{75BDDBB5-8DB8-4893-BD89-8FFC6C42244D}"
ProjectSection(SolutionItems) = preProject
Host.Plugin.Properties.xml = Host.Plugin.Properties.xml
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Transport", "Transport", "{9291D340-B4FA-44A3-8060-C14743FB1712}"
ProjectSection(SolutionItems) = preProject
Host.Transport.Properties.xml = Host.Transport.Properties.xml
Host.Plugin.Transport.Properties.xml = Host.Plugin.Transport.Properties.xml
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SlimMessageBus", "SlimMessageBus\SlimMessageBus.csproj", "{C47CFB84-E5AC-4539-822D-6612D671CA6C}"
Expand Down Expand Up @@ -127,6 +130,9 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
..\build\do_package.ps1 = ..\build\do_package.ps1
..\build\do_test.ps1 = ..\build\do_test.ps1
..\build\do_test_ci.ps1 = ..\build\do_test_ci.ps1
Host.Plugin.Properties.xml = Host.Plugin.Properties.xml
Host.Plugin.Serialization.Properties.xml = Host.Plugin.Serialization.Properties.xml
Host.Plugin.Transport.Properties.xml = Host.Plugin.Transport.Properties.xml
..\README.md = ..\README.md
..\build\tasks.ps1 = ..\build\tasks.ps1
EndProjectSection
Expand Down Expand Up @@ -159,7 +165,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SlimMessageBus.Host.Redis",
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Serialization", "Serialization", "{D7DCD96A-C3B8-4D22-8216-0E8ADD30C03F}"
ProjectSection(SolutionItems) = preProject
Host.Serialization.Properties.xml = Host.Serialization.Properties.xml
Host.Plugin.Serialization.Properties.xml = Host.Plugin.Serialization.Properties.xml
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Infrastructure", "Infrastructure", "{59F88FB5-6D19-4520-87E8-227B3539BBB3}"
Expand Down Expand Up @@ -718,6 +724,7 @@ Global
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{8835721D-ECA4-42CB-BA8B-F8C1A06340EC} = {A5B15524-93B8-4CCE-AC6D-A22984498BA0}
{9291D340-B4FA-44A3-8060-C14743FB1712} = {75BDDBB5-8DB8-4893-BD89-8FFC6C42244D}
{C47CFB84-E5AC-4539-822D-6612D671CA6C} = {BC358EE4-734D-4CE3-A053-0A2490A2E39A}
{CA4F7162-B1FA-4236-92A7-FE26150F848B} = {9291D340-B4FA-44A3-8060-C14743FB1712}
{4522DD48-C123-453D-8982-B50F334FB710} = {D7DCD96A-C3B8-4D22-8216-0E8ADD30C03F}
Expand Down

0 comments on commit 365537f

Please sign in to comment.