Skip to content

Commit a19ea07

Browse files
committed
adding Humidity. Will refactor soon
1 parent 1dc9e7d commit a19ea07

6 files changed

+1052
-0
lines changed

.vs/config/applicationhost.config

Lines changed: 1038 additions & 0 deletions
Large diffs are not rendered by default.

TemperatureCheck/Models/Humidity.cs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Web;
5+
6+
namespace TemperatureCheck.Models
7+
{
8+
public class Humidity
9+
{
10+
public float HumidityReading { get; set; }
11+
}
12+
}

TemperatureCheck/TemperatureCheck.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
<IISExpressAnonymousAuthentication />
2121
<IISExpressWindowsAuthentication />
2222
<IISExpressUseClassicPipelineMode />
23+
<UseGlobalApplicationHostFile />
2324
</PropertyGroup>
2425
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2526
<DebugSymbols>true</DebugSymbols>
@@ -154,6 +155,7 @@
154155
<DependentUpon>Global.asax</DependentUpon>
155156
</Compile>
156157
<Compile Include="Interfaces\IDataMapper.cs" />
158+
<Compile Include="Models\Humidity.cs" />
157159
<Compile Include="Models\SingleTempResult.cs" />
158160
<Compile Include="Models\TempReading.cs" />
159161
<Compile Include="Properties\AssemblyInfo.cs" />

TemperatureCheck/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs

Whitespace-only changes.

TemperatureCheck/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs

Whitespace-only changes.

TemperatureCheck/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs

Whitespace-only changes.

0 commit comments

Comments
 (0)