This repository has been archived by the owner on Jan 10, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added shared targets and props and empty build script.
Removed unused sln Added extra icon.
- Loading branch information
Showing
18 changed files
with
210 additions
and
260 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
%WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild %~dp0\src\NuGet.proj /verbosity:normal /nr:false /p:PackageVersion=%PackageVersion% |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0"?> | ||
<package> | ||
<metadata> | ||
<id>Hermes.Broker</id> | ||
<version>1.0.0</version> | ||
<title>Hermes Broker: a lightweight C# MQTT messenger</title> | ||
<authors>Daniel Cazzulino</authors> | ||
<owners>Daniel Cazzulino</owners> | ||
<licenseUrl>http://clarius.io/hermes/license</licenseUrl> | ||
<projectUrl>http://clarius.io/hermes/home</projectUrl> | ||
<iconUrl>http://clarius.io/hermes/48.png</iconUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>A lightweight and high-performance MQTT broker written entirely in C#.</description> | ||
<releaseNotes /> | ||
<copyright>Copyright 2012</copyright> | ||
<tags>m2m iot sockets mqtt</tags> | ||
</metadata> | ||
</package> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0"?> | ||
<package> | ||
<metadata> | ||
<id>Hermes.Client</id> | ||
<version>1.0.0</version> | ||
<title>Hermes Client: a lightweight C# MQTT messenger</title> | ||
<authors>Daniel Cazzulino</authors> | ||
<owners>Daniel Cazzulino</owners> | ||
<licenseUrl>http://clarius.io/hermes/license</licenseUrl> | ||
<projectUrl>http://clarius.io/hermes/home</projectUrl> | ||
<iconUrl>http://clarius.io/hermes/48.png</iconUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>A lightweight and high-performance MQTT client written entirely in C#.</description> | ||
<releaseNotes /> | ||
<copyright>Copyright 2012</copyright> | ||
<tags>m2m iot sockets mqtt</tags> | ||
</metadata> | ||
</package> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,6 @@ | ||
using System.Resources; | ||
using System.Reflection; | ||
using System.Reflection; | ||
using System.Runtime.CompilerServices; | ||
using System.Runtime.InteropServices; | ||
|
||
// General Information about an assembly is controlled through the following | ||
// set of attributes. Change these attribute values to modify the information | ||
// associated with an assembly. | ||
[assembly: AssemblyTitle("Hermes.Client")] | ||
[assembly: AssemblyDescription("")] | ||
[assembly: AssemblyConfiguration("")] | ||
[assembly: AssemblyCompany("")] | ||
[assembly: AssemblyProduct("Hermes.Client")] | ||
[assembly: AssemblyCopyright("Copyright © 2014")] | ||
[assembly: AssemblyTrademark("")] | ||
[assembly: AssemblyCulture("")] | ||
[assembly: NeutralResourcesLanguage("en")] | ||
|
||
// Version information for an assembly consists of the following four values: | ||
// | ||
// Major Version | ||
// Minor Version | ||
// Build Number | ||
// Revision | ||
// | ||
// 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: AssemblyDescription("Client component of the Hermes project")] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
using System.Reflection; | ||
using System.Runtime.CompilerServices; | ||
|
||
[assembly: AssemblyCompany("")] | ||
[assembly: AssemblyCopyright("Copyright © 2014")] | ||
[assembly: AssemblyTrademark("")] | ||
[assembly: AssemblyCulture("")] | ||
|
||
[assembly: AssemblyVersion("1.0.0.0")] | ||
[assembly: AssemblyFileVersion("1.0.0.0")] | ||
|
||
#if DEBUG | ||
[assembly: AssemblyConfiguration("DEBUG")] | ||
#endif | ||
#if RELEASE | ||
[assembly: AssemblyConfiguration("RELEASE")] | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
|
||
<!-- Our own new custom properties --> | ||
<PropertyGroup> | ||
<Configuration Condition="'$(Configuration)' == ''">Release</Configuration> | ||
<BuildRoot>$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), .gitignore))</BuildRoot> | ||
<BuildRoot Condition="!HasTrailingSlash('$(BuildRoot)')">$(BuildRoot)\</BuildRoot> | ||
<DropDirectory>$(BuildRoot)drops\</DropDirectory> | ||
</PropertyGroup> | ||
|
||
<!-- Enable opening the solution in VS2012 and 2013 --> | ||
<!-- This is the property that causes VS 2012+ to insist on one-way update of the project --> | ||
<PropertyGroup Condition="'$(VisualStudioVersion)' >= '11.0'"> | ||
<MinimumVisualStudioVersion>$(VisualStudioVersion)</MinimumVisualStudioVersion> | ||
</PropertyGroup> | ||
<!-- This is the property that causes VS 2013 to insist on one-way update of the project --> | ||
<PropertyGroup Condition="'$(VisualStudioVersion)' >= '12.0'"> | ||
<OldToolsVersion>4.0</OldToolsVersion> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(VisualStudioVersion)' == ''"> | ||
<VisualStudioVersion>10.0</VisualStudioVersion> | ||
</PropertyGroup> | ||
|
||
<!-- Common CSharp properties --> | ||
<PropertyGroup> | ||
<OutputPath>bin\$(Configuration)\</OutputPath> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>full</DebugType> | ||
<Optimize>false</Optimize> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> | ||
<DefineConstants>$(DefineConstants);DEBUG;TRACE</DefineConstants> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
<DefineConstants>$(DefineConstants);TRACE</DefineConstants> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<!-- If we don't make these invisible, they show up in VS as missing files :S --> | ||
<AvailableItemName Include="NuSpec"> | ||
<Visible>False</Visible> | ||
</AvailableItemName> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
|
||
<!-- TODO: build nuget packages for everything --> | ||
|
||
</Project> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.