Skip to content

Commit 427f8a4

Browse files
authored
Merge pull request #5 from XerProjects/dev
Release 1.0.0
2 parents 18746ae + c15e1a4 commit 427f8a4

14 files changed

+699
-3
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -262,3 +262,7 @@ __pycache__/
262262

263263
# VS Code
264264
.vscode/
265+
266+
[Tt]ools/**
267+
![Tt]ools/packages.config
268+
BuildArtifacts/**

GitVersion.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
mode: ContinuousDelivery
2+
next-version: 1.0.0
3+
branches: {}
4+
ignore:
5+
sha: []

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,11 @@
11
# Xer.Messaginator.Extensions.MessageSources.Http
22
Http MessageSource extension for Xer.Messaginator
3+
4+
# Build
5+
| Branch | Status |
6+
|--------|--------|
7+
| Master | [![Build status](https://ci.appveyor.com/api/projects/status/hb97dsyq10vwh2nn?svg=true)](https://ci.appveyor.com/project/XerProjects25246/xer-messaginator-extensions-messagesources-http) |
8+
| Dev | [![Build status](https://ci.appveyor.com/api/projects/status/hb97dsyq10vwh2nn/branch/dev?svg=true)](https://ci.appveyor.com/project/XerProjects25246/xer-messaginator-extensions-messagesources-http/branch/dev) |
9+
10+
# Nuget
11+
[![NuGet](https://img.shields.io/nuget/vpre/xer.messaginator.extensions.messagesources.attributes.svg)](https://www.nuget.org/packages/Xer.Cqrs.EventStack.Extensions.Attributes/)

Samples/ConsoleApp/ConsoleApp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</ItemGroup>
66

77
<ItemGroup>
8-
<ProjectReference Include="..\..\Src\Xer.Messaginator.Extensions.MessageSources.Http\Xer.Messaginator.Extensions.MessageSources.Http.csproj" />
8+
<ProjectReference Include="..\..\Src\Xer.Messaginator.MessageSources.Http\Xer.Messaginator.MessageSources.Http.csproj" />
99
</ItemGroup>
1010

1111
<PropertyGroup>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
5+
<Authors>jeyjeyemem;xerprojects-contributors;</Authors>
6+
<Description>HTTP MessageSource implementation for Xer.Messaginator.</Description>
7+
<Copyright>Copyright (c) XerProjects contributors</Copyright>
8+
<PackageLicenseUrl>https://github.com/XerProjects/Xer.Messaginator.MessageSources.Http/blob/master/LICENSE</PackageLicenseUrl>
9+
<PackageProjectUrl>https://github.com/XerProjects/Xer.Messaginator.MessageSources.Http</PackageProjectUrl>
10+
<PackageTags>http;messaging;message-source;</PackageTags>
511
</PropertyGroup>
612

713
<ItemGroup>
@@ -10,7 +16,7 @@
1016
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="2.0.1" />
1117
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="2.0.0" />
1218
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="2.0.0" />
13-
<PackageReference Include="Xer.Messaginator" Version="0.2.0" />
19+
<PackageReference Include="Xer.Messaginator" Version="1.0.0" />
1420
</ItemGroup>
1521

1622
</Project>

Tools/packages.config

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<packages>
3+
<package id="Cake" version="0.26.1" />
4+
</packages>

0 commit comments

Comments
 (0)