-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathGraphIoT.Viessmann.csproj
36 lines (31 loc) · 1.32 KB
/
GraphIoT.Viessmann.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>PhilipDaubmeier.GraphIoT.Viessmann</AssemblyName>
<RootNamespace>PhilipDaubmeier.GraphIoT.Viessmann</RootNamespace>
<Authors>PhilipDaubmeier</Authors>
<Company>PhilipDaubmeier</Company>
<Version>1.0.0</Version>
<TargetFramework>net9.0</TargetFramework>
<LangVersion>9.0</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Ben.Demystifier" Version="0.4.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.0" />
<PackageReference Include="Microsoft.Extensions.Http.Polly" Version="9.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CompactTimeSeries\CompactTimeSeries.csproj" />
<ProjectReference Include="..\GraphIoT.Core\GraphIoT.Core.csproj" />
<ProjectReference Include="..\TokenStore\TokenStore.csproj" />
<ProjectReference Include="..\ViessmannClient\ViessmannClient.csproj" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Locale\ViewModel.ViessmannSolarViewModel.de-DE.resx">
<SubType>Designer</SubType>
</EmbeddedResource>
<EmbeddedResource Update="Locale\ViewModel.ViessmannHeatingViewModel.de-DE.resx">
<SubType>Designer</SubType>
</EmbeddedResource>
</ItemGroup>
</Project>