Skip to content
This repository has been archived by the owner on Jul 9, 2020. It is now read-only.

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rogeralsing committed Oct 18, 2015
1 parent e78ec80 commit c8d55d8
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 12 deletions.
4 changes: 2 additions & 2 deletions Microphone.Core/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@
// 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("0.1.0.0")]
[assembly: AssemblyFileVersion("0.1.0.0")]
[assembly: AssemblyVersion("0.1.2.0")]
[assembly: AssemblyFileVersion("0.1.2.0")]
3 changes: 2 additions & 1 deletion Microphone.Core/build.bat
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
del *.nupkg
nuget pack Microphone.Core.csproj -IncludeReferencedProjects -Prop Configuration=Release
nuget push Microphone.Core.0.1.0.0.nupkg
nuget push Microphone.Core.0.1.2.0.nupkg
6 changes: 3 additions & 3 deletions Microphone.Nancy/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Microphone.Nancy")]
[assembly: AssemblyDescription("Microservice framework using NancyFx and Consul")]
[assembly: AssemblyDescription("Microservice framework with powerful service discovery using Consul")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Roger Johansson")]
[assembly: AssemblyProduct("Microphone.Nancy")]
Expand All @@ -32,5 +32,5 @@
// 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("0.1.1.0")]
[assembly: AssemblyFileVersion("0.1.1.0")]
[assembly: AssemblyVersion("0.1.2.0")]
[assembly: AssemblyFileVersion("0.1.2.0")]
2 changes: 1 addition & 1 deletion Microphone.Nancy/build.bat
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
del *.nupkg
nuget pack Microphone.Nancy.csproj -IncludeReferencedProjects -Prop Configuration=Release
nuget push Microphone.Nancy.0.1.1.0.nupkg
nuget push Microphone.Nancy.0.1.2.0.nupkg
6 changes: 3 additions & 3 deletions Microphone.WebApi/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Microphone.WebApi")]
[assembly: AssemblyDescription("Microservice framework using WebApi and Consul")]
[assembly: AssemblyDescription("Microservice framework with powerful service discovery using Consul")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Roger Johansson")]
[assembly: AssemblyProduct("Microphone.WebApi")]
Expand All @@ -32,5 +32,5 @@
// 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("0.1.1.0")]
[assembly: AssemblyFileVersion("0.1.1.0")]
[assembly: AssemblyVersion("0.1.2.0")]
[assembly: AssemblyFileVersion("0.1.2.0")]
2 changes: 1 addition & 1 deletion Microphone.WebApi/build.bat
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
del *.nupkg
nuget pack Microphone.WebApi.csproj -IncludeReferencedProjects -Prop Configuration=Release
nuget push Microphone.WebApi.0.1.1.0.nupkg
nuget push Microphone.WebApi.0.1.2.0.nupkg
3 changes: 2 additions & 1 deletion Service1/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ public class MyService : NancyModule
public MyService()
{
Get["/"] = _ =>
{
{
var res = Cluster.FindService("Service2");
return "Hello";
};
}
Expand Down

0 comments on commit c8d55d8

Please sign in to comment.