-
Notifications
You must be signed in to change notification settings - Fork 0
/
hio-dotnet.Demos.SimpleConsoleApp.csproj
30 lines (25 loc) · 1.25 KB
/
hio-dotnet.Demos.SimpleConsoleApp.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>hio_dotnet.Demos.SimpleConsoleApp</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Platforms>AnyCPU</Platforms>
</PropertyGroup>
<PropertyGroup Condition="'$(OS)' == 'Windows_NT'">
<DefineConstants>WINDOWS</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(OS)' != 'Windows_NT'">
<DefineConstants>LINUX;OSX</DefineConstants>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\hio-dotnet.APIs.Chirpstack\hio-dotnet.APIs.Chirpstack.csproj" />
<ProjectReference Include="..\hio-dotnet.APIs.HioCloudv2\hio-dotnet.APIs.HioCloud.csproj" />
<ProjectReference Include="..\hio-dotnet.APIs.ThingsBoard\hio-dotnet.APIs.ThingsBoard.csproj" />
<ProjectReference Include="..\hio-dotnet.APIs.Wmbusmeters\hio-dotnet.APIs.Wmbusmeters.csproj" />
<ProjectReference Include="..\hio-dotnet.Common\hio-dotnet.Common.csproj" />
<ProjectReference Include="..\hio-dotnet.HWDrivers\hio-dotnet.HWDrivers.csproj" />
<ProjectReference Include="..\hio-dotnet.Tests.Common\hio-dotnet.Tests.Common.csproj" />
</ItemGroup>
</Project>