Skip to content

Commit

Permalink
Fix Nuget build (#1445)
Browse files Browse the repository at this point in the history
Client proj lacks definition of SIGNASSEMBLY, bump nuget dependencies
  • Loading branch information
mregen committed Jul 7, 2021
1 parent 0236d08 commit b9ad021
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<PackageReference Include="Mono.Options" Version="6.6.0.161" />
<PackageReference Include="Serilog" Version="2.10.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="3.1.1" />
<PackageReference Include="Serilog.Sinks.File" Version="4.1.0" />
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" />
<PackageReference Include="Serilog.Sinks.Debug" Version="2.0.0" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion Applications/ReferenceServer/Reference Server.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@
<Version>2.0.0</Version>
</PackageReference>
<PackageReference Include="Serilog.Sinks.File">
<Version>4.1.0</Version>
<Version>5.0.0</Version>
</PackageReference>
</ItemGroup>
<PropertyGroup>
Expand Down
4 changes: 4 additions & 0 deletions Libraries/Opc.Ua.Client/Opc.Ua.Client.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
<IsPackable>true</IsPackable>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>

<PropertyGroup Condition="'$(SignAssembly)' == 'true'">
<DefineConstants>$(DefineConstants);SIGNASSEMBLY</DefineConstants>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<PackageId>$(PackageId).Debug</PackageId>
Expand Down
2 changes: 1 addition & 1 deletion Libraries/Opc.Ua.PubSub/Opc.Ua.PubSub.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="MQTTnet" Version="3.0.15" />
<PackageReference Include="MQTTnet" Version="3.0.16" />
<PackageReference Include="System.Net.NetworkInformation" Version="4.3.0" />
</ItemGroup>

Expand Down

0 comments on commit b9ad021

Please sign in to comment.