This commit is contained in:
Sergey Baranchenkov 2016-10-07 20:57:25 -07:00
Родитель aea529e0fe
Коммит 67a5fef25e
3 изменённых файлов: 9 добавлений и 4 удалений

Просмотреть файл

@ -5,5 +5,5 @@ using System.Reflection;
[assembly: AssemblyCompany("Microsoft")]
[assembly: AssemblyProduct("Tx (LINQ to Logs and Traces)")]
[assembly: AssemblyCopyright("Copyright © Microsoft. All Rights Reserved")]
[assembly: AssemblyVersion("1.0.60925.0")]
[assembly: AssemblyFileVersion("1.0.60925.0")]
[assembly: AssemblyVersion("1.0.61007.0")]
[assembly: AssemblyFileVersion("1.0.61007.0")]

Просмотреть файл

@ -117,7 +117,7 @@
<Compile Include="Syslog.cs" />
<Compile Include="NetworkTransformExtensions.cs" />
<Compile Include="UdpDatagram.cs" />
<Compile Include="UDPReceiver.cs" />
<Compile Include="UdpReceiver.cs" />
</ItemGroup>
<ItemGroup>
<None Include="..\key.snk">

Просмотреть файл

@ -175,7 +175,12 @@
public void Dispose()
{
if (!disposeCalled)
Dispose(true);
}
protected void Dispose(bool disposing)
{
if (disposing && !disposeCalled)
{
disposeCalled = true;