mirror of
https://github.com/ckaczor/WeatherService.git
synced 2026-01-13 17:23:11 -05:00
Switch to git submodule, add license and initial readme
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -153,3 +153,5 @@ $RECYCLE.BIN/
|
||||
|
||||
# Mac desktop service store files
|
||||
.DS_Store
|
||||
|
||||
.vs/
|
||||
|
||||
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
[submodule "OneWireAPI"]
|
||||
path = OneWireAPI
|
||||
url = https://github.com/ckaczor/OneWireAPI.git
|
||||
21
LICENSE.md
Normal file
21
LICENSE.md
Normal file
@@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2018 Chris Kaczor
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
1
OneWireAPI
Submodule
1
OneWireAPI
Submodule
Submodule OneWireAPI added at 43213639e4
13
README.md
Normal file
13
README.md
Normal file
@@ -0,0 +1,13 @@
|
||||
# WeatherService
|
||||
|
||||
Service for taking weather readings from an AAG Electronica 1-Wire weather station.
|
||||
|
||||
Unfortunately AAG appears to be out of business so the hardware is no longer available.
|
||||
|
||||
## Authors
|
||||
|
||||
* **Chris Kaczor** - *Initial work* - https://github.com/ckaczor - https://chriskaczor.com
|
||||
|
||||
## License
|
||||
|
||||
This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details.
|
||||
@@ -103,7 +103,6 @@
|
||||
<Reference Include="System.Configuration.Install" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Data.Linq" />
|
||||
<Reference Include="System.Data.SqlServerCe, Version=3.5.1.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91, processorArchitecture=MSIL" />
|
||||
<Reference Include="System.Runtime.Serialization" />
|
||||
<Reference Include="System.Security" />
|
||||
<Reference Include="System.ServiceModel" />
|
||||
@@ -183,16 +182,6 @@
|
||||
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Common\Common.csproj">
|
||||
<Project>{17864d82-457d-4a0a-bc10-1d07f2b3a5d6}</Project>
|
||||
<Name>Common</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\OneWireAPI\OneWireAPI.csproj">
|
||||
<Project>{e89d1170-9261-4523-bb6e-a4d08ef80a36}</Project>
|
||||
<Name>OneWireAPI</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<BootstrapperPackage Include=".NETFramework,Version=v4.5">
|
||||
<Visible>False</Visible>
|
||||
@@ -213,7 +202,16 @@
|
||||
<ItemGroup>
|
||||
<Service Include="{508349B6-6B84-4DF5-91F0-309BEEBAD82D}" />
|
||||
</ItemGroup>
|
||||
<ItemGroup />
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="OneWireAPI\Common\Common.csproj">
|
||||
<Project>{17864d82-457d-4a0a-bc10-1d07f2b3a5d6}</Project>
|
||||
<Name>Common</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="OneWireAPI\OneWireAPI.csproj">
|
||||
<Project>{e89d1170-9261-4523-bb6e-a4d08ef80a36}</Project>
|
||||
<Name>OneWireAPI</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
|
||||
@@ -1,13 +1,20 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 2013
|
||||
VisualStudioVersion = 12.0.30324.0
|
||||
# Visual Studio 15
|
||||
VisualStudioVersion = 15.0.27130.2027
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WeatherService", "WeatherService.csproj", "{F46968D8-AD1D-4F8D-9DDE-499CC4FB1D32}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Common", "..\Common\Common.csproj", "{17864D82-457D-4A0A-BC10-1D07F2B3A5D6}"
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution", "Solution", "{0F30D9F3-04A4-4DF2-948E-E797514E7FE0}"
|
||||
ProjectSection(SolutionItems) = preProject
|
||||
.gitignore = .gitignore
|
||||
LICENSE.md = LICENSE.md
|
||||
README.md = README.md
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OneWireAPI", "..\OneWireAPI\OneWireAPI.csproj", "{E89D1170-9261-4523-BB6E-A4D08EF80A36}"
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Common", "OneWireAPI\Common\Common.csproj", "{17864D82-457D-4A0A-BC10-1D07F2B3A5D6}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OneWireAPI", "OneWireAPI\OneWireAPI.csproj", "{E89D1170-9261-4523-BB6E-A4D08EF80A36}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
@@ -42,13 +49,20 @@ Global
|
||||
{E89D1170-9261-4523-BB6E-A4D08EF80A36}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{E89D1170-9261-4523-BB6E-A4D08EF80A36}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{E89D1170-9261-4523-BB6E-A4D08EF80A36}.Debug|x64.ActiveCfg = Debug|Any CPU
|
||||
{E89D1170-9261-4523-BB6E-A4D08EF80A36}.Debug|x64.Build.0 = Debug|Any CPU
|
||||
{E89D1170-9261-4523-BB6E-A4D08EF80A36}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{E89D1170-9261-4523-BB6E-A4D08EF80A36}.Debug|x86.Build.0 = Debug|Any CPU
|
||||
{E89D1170-9261-4523-BB6E-A4D08EF80A36}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{E89D1170-9261-4523-BB6E-A4D08EF80A36}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{E89D1170-9261-4523-BB6E-A4D08EF80A36}.Release|x64.ActiveCfg = Release|Any CPU
|
||||
{E89D1170-9261-4523-BB6E-A4D08EF80A36}.Release|x64.Build.0 = Release|Any CPU
|
||||
{E89D1170-9261-4523-BB6E-A4D08EF80A36}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{E89D1170-9261-4523-BB6E-A4D08EF80A36}.Release|x86.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {D26B2C74-6841-489E-8667-1745175F4D13}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
|
||||
Reference in New Issue
Block a user