Skip to content
This repository was archived by the owner on Jan 10, 2025. It is now read-only.

Commit 4f45e0f

Browse files
committed
Added default license headers.
Added release notes.
1 parent 2a1f9b7 commit 4f45e0f

14 files changed

+153
-71
lines changed

Hermes.sln

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1717
src\Hermes.props = src\Hermes.props
1818
src\Hermes.targets = src\Hermes.targets
1919
src\NuGet.proj = src\NuGet.proj
20+
README.md = README.md
21+
ReleaseNotes.md = ReleaseNotes.md
2022
EndProjectSection
2123
EndProject
2224
Global

ReleaseNotes.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
v0.1
2+
3+
*

src/Broker/Broker.csproj

+6
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@
2323
</Compile>
2424
<Compile Include="Properties\AssemblyInfo.cs" />
2525
</ItemGroup>
26+
<ItemGroup>
27+
<None Include="..\Hermes.licenseheader">
28+
<Link>Hermes.licenseheader</Link>
29+
</None>
30+
<None Include="Broker.nuspec" />
31+
</ItemGroup>
2632
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
2733
<Import Project="..\Hermes.targets" />
2834
</Project>

src/Broker/Properties/AssemblyInfo.cs

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
1-
using System.Reflection;
1+
/*
2+
Copyright 2014 Clarius Consulting
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
*/
10+
using System.Reflection;
211
using System.Runtime.CompilerServices;
312
using System.Runtime.InteropServices;
413

src/Client/Client.csproj

+6
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,12 @@
2020
</Compile>
2121
<Compile Include="Properties\AssemblyInfo.cs" />
2222
</ItemGroup>
23+
<ItemGroup>
24+
<None Include="..\Hermes.licenseheader">
25+
<Link>Hermes.licenseheader</Link>
26+
</None>
27+
<None Include="Client.nuspec" />
28+
</ItemGroup>
2329
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
2430
<Import Project="..\Hermes.targets" />
2531
</Project>

src/Client/Properties/AssemblyInfo.cs

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
1-
using System.Reflection;
1+
/*
2+
Copyright 2012 Clarius Consulting
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
*/
10+
using System.Reflection;
211
using System.Runtime.CompilerServices;
312
using System.Runtime.InteropServices;
413

src/GlobalAssemblyInfo.cs

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
1-
using System.Reflection;
1+
/*
2+
Copyright 2012 Clarius Consulting
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
*/
10+
using System.Reflection;
211
using System.Runtime.CompilerServices;
312

413
[assembly: AssemblyCompany("")]

src/Hermes.licenseheader

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
extensions: designer.cs generated.cs g.cs
2+
extensions: .cs .cpp .h
3+
/*
4+
Copyright 2012 Clarius Consulting
5+
6+
Licensed under the Apache License, Version 2.0 (the "License");
7+
you may not use this file except in compliance with the License.
8+
You may obtain a copy of the License at
9+
10+
http://www.apache.org/licenses/LICENSE-2.0
11+
*/
12+
13+
extensions: .xml .config .xsd .resx .html
14+
<!--
15+
Copyright 2012 Clarius Consulting
16+
17+
Licensed under the Apache License, Version 2.0 (the "License");
18+
you may not use this file except in compliance with the License.
19+
You may obtain a copy of the License at
20+
21+
http://www.apache.org/licenses/LICENSE-2.0
22+
-->
File renamed without changes.

src/Portable/Portable.csproj

+6
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,12 @@
2020
</Compile>
2121
<Compile Include="Properties\AssemblyInfo.cs" />
2222
</ItemGroup>
23+
<ItemGroup>
24+
<None Include="..\Hermes.licenseheader">
25+
<Link>Hermes.licenseheader</Link>
26+
</None>
27+
<None Include="Portable.nuspec" />
28+
</ItemGroup>
2329
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
2430
<Import Project="..\Hermes.targets" />
2531
</Project>

src/Portable/Properties/AssemblyInfo.cs

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
1-
using System.Reflection;
1+
/*
2+
Copyright 2012 Clarius Consulting
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
*/
10+
using System.Reflection;
211
using System.Runtime.CompilerServices;
312
using System.Runtime.InteropServices;
413

src/Tests/Properties/AssemblyInfo.cs

+10-22
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
1-
using System.Reflection;
1+
/*
2+
Copyright 2012 Clarius Consulting
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
*/
10+
using System.Reflection;
211
using System.Runtime.CompilerServices;
312
using System.Runtime.InteropServices;
413

5-
// General Information about an assembly is controlled through the following
6-
// set of attributes. Change these attribute values to modify the information
7-
// associated with an assembly.
814
[assembly: AssemblyTitle("Tests")]
915
[assembly: AssemblyDescription("")]
1016
[assembly: AssemblyConfiguration("")]
@@ -14,23 +20,5 @@
1420
[assembly: AssemblyTrademark("")]
1521
[assembly: AssemblyCulture("")]
1622

17-
// Setting ComVisible to false makes the types in this assembly not visible
18-
// to COM components. If you need to access a type in this assembly from
19-
// COM, set the ComVisible attribute to true on that type.
20-
[assembly: ComVisible(false)]
21-
22-
// The following GUID is for the ID of the typelib if this project is exposed to COM
23-
[assembly: Guid("b89da32f-550d-443e-80e3-da92104a211d")]
24-
25-
// Version information for an assembly consists of the following four values:
26-
//
27-
// Major Version
28-
// Minor Version
29-
// Build Number
30-
// Revision
31-
//
32-
// You can specify all the values or you can default the Build and Revision Numbers
33-
// by using the '*' as shown below:
34-
// [assembly: AssemblyVersion("1.0.*")]
3523
[assembly: AssemblyVersion("1.0.0.0")]
3624
[assembly: AssemblyFileVersion("1.0.0.0")]

src/Tests/Tests.csproj

+48-45
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,51 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4-
<Import Project="..\Hermes.props" />
5-
<PropertyGroup>
6-
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7-
<ProjectGuid>{CC70B0BB-EC87-45D0-A4AE-2462F99D7573}</ProjectGuid>
8-
<OutputType>Library</OutputType>
9-
<AppDesignerFolder>Properties</AppDesignerFolder>
10-
<RootNamespace>Tests</RootNamespace>
11-
<AssemblyName>Tests</AssemblyName>
12-
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13-
<FileAlignment>512</FileAlignment>
14-
</PropertyGroup>
15-
<ItemGroup>
16-
<Reference Include="Moq">
17-
<HintPath>..\..\packages\Moq.4.2.1402.2112\lib\net40\Moq.dll</HintPath>
18-
</Reference>
19-
<Reference Include="System" />
20-
<Reference Include="System.Core" />
21-
<Reference Include="Microsoft.CSharp" />
22-
<Reference Include="xunit">
23-
<HintPath>..\..\packages\xunit.1.9.2\lib\net20\xunit.dll</HintPath>
24-
</Reference>
25-
</ItemGroup>
26-
<ItemGroup>
27-
<Compile Include="Properties\AssemblyInfo.cs" />
28-
</ItemGroup>
29-
<ItemGroup>
30-
<ProjectReference Include="..\Broker\Broker.csproj">
31-
<Project>{1397ec83-6d03-4d81-95d5-5d11c766c43a}</Project>
32-
<Name>Broker</Name>
33-
</ProjectReference>
34-
<ProjectReference Include="..\Client\Client.csproj">
35-
<Project>{d3eb8c4f-6cf4-4eb4-94e3-bca31767ae53}</Project>
36-
<Name>Client</Name>
37-
</ProjectReference>
38-
<ProjectReference Include="..\Portable\Portable.csproj">
39-
<Project>{6481b999-0479-4162-ac53-5936ce5fd8bf}</Project>
40-
<Name>Portable</Name>
41-
</ProjectReference>
42-
</ItemGroup>
43-
<ItemGroup>
44-
<None Include="packages.config" />
45-
</ItemGroup>
46-
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
47-
<Import Project="..\Hermes.targets" />
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<Import Project="..\Hermes.props" />
5+
<PropertyGroup>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>{CC70B0BB-EC87-45D0-A4AE-2462F99D7573}</ProjectGuid>
8+
<OutputType>Library</OutputType>
9+
<AppDesignerFolder>Properties</AppDesignerFolder>
10+
<RootNamespace>Tests</RootNamespace>
11+
<AssemblyName>Tests</AssemblyName>
12+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13+
<FileAlignment>512</FileAlignment>
14+
</PropertyGroup>
15+
<ItemGroup>
16+
<Reference Include="Moq">
17+
<HintPath>..\..\packages\Moq.4.2.1402.2112\lib\net40\Moq.dll</HintPath>
18+
</Reference>
19+
<Reference Include="System" />
20+
<Reference Include="System.Core" />
21+
<Reference Include="Microsoft.CSharp" />
22+
<Reference Include="xunit">
23+
<HintPath>..\..\packages\xunit.1.9.2\lib\net20\xunit.dll</HintPath>
24+
</Reference>
25+
</ItemGroup>
26+
<ItemGroup>
27+
<Compile Include="Properties\AssemblyInfo.cs" />
28+
</ItemGroup>
29+
<ItemGroup>
30+
<ProjectReference Include="..\Broker\Broker.csproj">
31+
<Project>{1397ec83-6d03-4d81-95d5-5d11c766c43a}</Project>
32+
<Name>Broker</Name>
33+
</ProjectReference>
34+
<ProjectReference Include="..\Client\Client.csproj">
35+
<Project>{d3eb8c4f-6cf4-4eb4-94e3-bca31767ae53}</Project>
36+
<Name>Client</Name>
37+
</ProjectReference>
38+
<ProjectReference Include="..\Portable\Portable.csproj">
39+
<Project>{6481b999-0479-4162-ac53-5936ce5fd8bf}</Project>
40+
<Name>Portable</Name>
41+
</ProjectReference>
42+
</ItemGroup>
43+
<ItemGroup>
44+
<None Include="..\Hermes.licenseheader">
45+
<Link>Hermes.licenseheader</Link>
46+
</None>
47+
<None Include="packages.config" />
48+
</ItemGroup>
49+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
50+
<Import Project="..\Hermes.targets" />
4851
</Project>

src/Tests/packages.config

+10
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11
<?xml version="1.0" encoding="utf-8"?>
2+
3+
<!--
4+
Copyright 2012 Clarius Consulting
5+
6+
Licensed under the Apache License, Version 2.0 (the "License");
7+
you may not use this file except in compliance with the License.
8+
You may obtain a copy of the License at
9+
10+
http://www.apache.org/licenses/LICENSE-2.0
11+
-->
212
<packages>
313
<package id="Moq" version="4.2.1402.2112" targetFramework="net45" />
414
<package id="xunit" version="1.9.2" targetFramework="net45" />

0 commit comments

Comments
 (0)