Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 1201 → Rev 1202

/TCPproxy/trunk/Properties/Settings.Designer.cs
File deleted
/TCPproxy/trunk/Properties/Resources.resx
File deleted
\ No newline at end of file
/TCPproxy/trunk/Properties/Resources.Designer.cs
File deleted
/TCPproxy/trunk/Properties/Settings.settings
File deleted
/TCPproxy/trunk/Properties/AssemblyInfo.cs
File deleted
/TCPproxy/trunk/tcpproxy.build
9,10 → 9,13
 
<target name="build">
<mkdir dir="${build.dir}"/>
<csc target="winexe" output="bin/tcpproxy.exe" debug="${debug}">
<csc target="winexe" output="${build.dir}/tcpproxy.exe" debug="${debug}">
<sources>
<include name="*.cs" />
</sources>
<resources>
<include name="*.resx" />
</resources>
</csc>
</target>
 
/TCPproxy/trunk/TCPproxy.csproj
48,7 → 48,7
<SubType>Form</SubType>
</Compile>
<Compile Include="Network.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="AssemblyInfo.cs" />
<EmbeddedResource Include="AboutForm.resx">
<SubType>Designer</SubType>
<DependentUpon>AboutForm.cs</DependentUpon>
61,30 → 61,12
<SubType>Designer</SubType>
<DependentUpon>MainForm.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
<SubType>Designer</SubType>
</EmbeddedResource>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
<Compile Include="ViewControl.cs">
<SubType>Component</SubType>
</Compile>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
/TCPproxy/trunk/Network.cs
1369,6 → 1369,7
newTcp = (TcpMessage)messagesEnum.Current;
}
while(tcp != null && tcp.Direction != newTcp.Direction);
// FIXME correct? no hang?
 
if(!tcpEnd)
{
/TCPproxy/trunk/AssemblyInfo.cs
0,0 → 1,33
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
 
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("TCPproxy")]
[assembly: AssemblyDescription("A proxy for any TCP connections which saves and shows all catched information, special processing for HTTP protocol and XML data in it.")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Anatoli Klassen")]
[assembly: AssemblyProduct("TCPproxy")]
[assembly: AssemblyCopyright("Copyleft 2005-2006 Anatoli Klassen. Public domain. No warranty.")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
 
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
 
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("e1b78820-40c9-41df-b27c-6edbd61b9131")]
 
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
[assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyFileVersion("1.0.0.0")]