Skip to content

Commit bbdb048

Browse files
committed
Remove stray curly braces
1 parent 128ac92 commit bbdb048

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

IntegrationEngine.Client.Tests/IntegrationEngine.Client.Tests.csproj

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@@ -64,4 +64,7 @@
6464
<Name>IntegrationEngine.Model</Name>
6565
</ProjectReference>
6666
</ItemGroup>
67+
<ItemGroup>
68+
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
69+
</ItemGroup>
6770
</Project>

IntegrationEngine.Core/IntegrationEngine.Core.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,6 @@
105105
<Compile Include="Storage\IDatabaseRepository.cs" />
106106
<Compile Include="Storage\DatabaseRepository.cs" />
107107
<Compile Include="Mail\ITcpClient.cs" />
108-
<Compile Include="Mail\TcpClientAdapter.cs" />
109108
<Compile Include="Mail\SmtpClientAdapter.cs" />
110109
<Compile Include="Mail\ISmtpClient.cs" />
111110
</ItemGroup>

IntegrationEngine/MessageQueue/RabbitMQListener.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ void _listen()
8484
}
8585
catch (Exception exception)
8686
{
87-
Log.Error(x => x("Integration job did not run successfully ({0})}", message.JobTypeName), exception);
87+
Log.Error(x => x("Integration job did not run successfully ({0})", message.JobTypeName), exception);
8888
}
8989
}
9090
}

0 commit comments

Comments
 (0)