-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathMqttPublisher.csproj
39 lines (32 loc) · 1.52 KB
/
MqttPublisher.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
37
38
39
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<AssemblyName>MqttPublisher</AssemblyName>
<RootNamespace>OpcUaPubSub</RootNamespace>
<StartupObject>OpcUaPubSub.Program</StartupObject>
<PackageId>MqttPublisher</PackageId>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<DockerfileContext>.</DockerfileContext>
</PropertyGroup>
<ItemGroup>
<None Remove="Mqtt.Publisher.Config.xml" />
</ItemGroup>
<ItemGroup>
<Content Include="Mqtt.Publisher.Config.xml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.18.1" />
<PackageReference Include="MQTTnet" Version="4.2.0.706" />
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua" Version="1.4.371.86" />
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.Client.ComplexTypes" Version="1.4.371.86" />
</ItemGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netcoreapp2.0|AnyCPU'">
<OutputPath>$(SolutionDir)\build\bin\NetCore\$(Configuration)\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netcoreapp2.0|AnyCPU'">
<OutputPath>$(SolutionDir)\build\bin\NetCore\$(Configuration)\</OutputPath>
</PropertyGroup>
</Project>