Browse Source

Re-worked recording of PCAP file

An exception was being raised due to using FileMode.Append and it not
being implemented within the SharpPcap library.
bmallred 12 years ago
parent
commit
77655ee135

+ 29 - 14
WhiteNoise.Listen/DeviceWorker.cs

@ -40,11 +40,16 @@ namespace WhiteNoise.Listen
40 40
	/// </summary>
41 41
	public class DeviceWorker : BackgroundWorker
42 42
	{
43
		/// <summary>
44
		/// The file to dump information.
45
		/// </summary>
46
		private static FileInfo _file;
47
		
43
        /// <summary>
44
        /// The capture file writer.
45
        /// </summary>
46
        private static CaptureFileWriterDevice _captureFileWriter = null;
47
48
        /// <summary>
49
        /// The file to dump information.
50
        /// </summary>
51
        private static FileInfo _file;
52
48 53
		/// <summary>
49 54
		/// The devices used for capturing packets.
50 55
		/// </summary>
@ -114,8 +119,9 @@ namespace WhiteNoise.Listen
114 119
		/// </param>
115 120
		public DeviceWorker(bool lazyLoad = false)
116 121
		{
122
            _captureFileWriter = null;
117 123
			_file = new FileInfo("results.pcap");
118
			
124
119 125
			this.Devices = new List<string>();
120 126
			this.Filter = "ip and tcp";
121 127
			this.Timeout = 1000;
@ -173,6 +179,9 @@ namespace WhiteNoise.Listen
173 179
			
174 180
			// Apply the filter *only* after the device is open.
175 181
			device.Filter = this.Filter;
182
183
            // Create the capture file writer.
184
            _captureFileWriter = new CaptureFileWriterDevice((LibPcapLiveDevice)device, _file.FullName);
176 185
			
177 186
			// Start capturing.
178 187
			device.StartCapture();
@ -183,6 +192,7 @@ namespace WhiteNoise.Listen
183 192
		/// </summary>
184 193
		public void Stop()
185 194
		{
195
            // Stop capturing on all devices.
186 196
			foreach (ICaptureDevice device in this._devices)
187 197
			{
188 198
				if (device.Started)
@ -190,6 +200,12 @@ namespace WhiteNoise.Listen
190 200
					device.StopCapture();
191 201
				}
192 202
			}
203
204
            // Close the capture writer.
205
            if (_captureFileWriter != null)
206
            {
207
                _captureFileWriter.Close();
208
            }
193 209
		}
194 210
		
195 211
		/// <summary>
@ -235,14 +251,13 @@ namespace WhiteNoise.Listen
235 251
		/// </param>
236 252
		private static void Device_OnPacketArrival(object sender, CaptureEventArgs e)
237 253
		{
238
			CaptureFileWriterDevice writer = null;
239 254
			Debug.WriteLine("Received {0} bytes.", e.Packet.Data.Length);
240 255
			
241 256
			try
242 257
			{
243 258
				// Dump to the file.
244
				writer = new CaptureFileWriterDevice(_file.FullName, FileMode.Append);
245
				writer.Write(e.Packet);
259
				//writer = new CaptureFileWriterDevice(_file.FullName, FileMode.OpenOrCreate);
260
                _captureFileWriter.Write(e.Packet);
246 261
			}
247 262
			catch (Exception ex)
248 263
			{
@ -251,11 +266,11 @@ namespace WhiteNoise.Listen
251 266
			}
252 267
			finally
253 268
			{
254
				// Clean up.
255
				if (writer != null)
256
				{
257
					writer.Close();
258
				}
269
                //// Clean up.
270
                //if (writer != null)
271
                //{
272
                //    writer.Close();
273
                //}
259 274
			}
260 275
		}
261 276
	}

+ 4 - 2
WhiteNoise.Listen/WhiteNoise.Listen.csproj

@ -1,4 +1,4 @@
1
<?xml version="1.0" encoding="utf-8"?>
1
<?xml version="1.0" encoding="utf-8"?>
2 2
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3 3
  <PropertyGroup>
4 4
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@ -39,7 +39,9 @@
39 39
  </ItemGroup>
40 40
  <ItemGroup>
41 41
    <Compile Include="AssemblyInfo.cs" />
42
    <Compile Include="DeviceWorker.cs" />
42
    <Compile Include="DeviceWorker.cs">
43
      <SubType>Component</SubType>
44
    </Compile>
43 45
  </ItemGroup>
44 46
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
45 47
</Project>

+ 4 - 2
WhiteNoise.Storage/WhiteNoise.Storage.csproj

@ -1,4 +1,4 @@
1
<?xml version="1.0" encoding="utf-8"?>
1
<?xml version="1.0" encoding="utf-8"?>
2 2
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3 3
  <PropertyGroup>
4 4
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@ -39,7 +39,9 @@
39 39
  </ItemGroup>
40 40
  <ItemGroup>
41 41
    <Compile Include="AssemblyInfo.cs" />
42
    <Compile Include="DatabaseWorker.cs" />
42
    <Compile Include="DatabaseWorker.cs">
43
      <SubType>Component</SubType>
44
    </Compile>
43 45
  </ItemGroup>
44 46
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
45 47
  <ItemGroup>

+ 1 - 1
WhiteNoise.Test/Listen/DeviceWorkerTests.cs

@ -64,7 +64,7 @@ namespace WhiteNoise.Test.Listen
64 64
		}
65 65
		
66 66
		/// <summary>
67
		/// Checks for the dependecies to be installed.
67
		/// Checks for the dependencies to be installed.
68 68
		/// </summary>
69 69
		[Test]
70 70
		public void AreDependeciesInstalled()

+ 118 - 92
WhiteNoise.sln

@ -1,92 +1,118 @@
1

2
Microsoft Visual Studio Solution File, Format Version 11.00
3
# Visual Studio 2010
4
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WhiteNoise", "WhiteNoise\WhiteNoise.csproj", "{EBCA3317-A6C3-4265-851B-02173598CF81}"
5
EndProject
6
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WhiteNoise.Listen", "WhiteNoise.Listen\WhiteNoise.Listen.csproj", "{F310496B-BA21-4326-9B48-156ED21B1FC2}"
7
EndProject
8
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Resources", "Resources", "{DE564CA5-B56D-4164-8124-499700031529}"
9
	ProjectSection(SolutionItems) = preProject
10
		Resources\Iesi.Collections.dll = Resources\Iesi.Collections.dll
11
		Resources\NHibernate.dll = Resources\NHibernate.eCode.Castle.dll
12
		Resources\PacketDotNet.dll = Resources\PacketDotNet.dll
13
		Resources\SharpPcap.dll = Resources\SharpPcap.dll
14
		Resources\Npgsql.dll = Resources\Npgsql.dll
15
		Resources\Npgsql.dll.mdb = Resources\Npgsql.dll.mdb
16
		Resources\Npgsql.xml = Resources\Npgsql.xml
17
		Resources\policy.2.0.Npgsql.dll = Resources\policy.2.0.Npgsql.dll
18
		Resources\NHibernate.ByteCode.Castle.dll = Resources\NHibernate.ByteCode.Castle.dll
19
	EndProjectSection
20
EndProject
21
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WhiteNoise.Test", "WhiteNoise.Test\WhiteNoise.Test.csproj", "{AEA071CB-7205-4054-A60F-8D5FD82BE80D}"
22
EndProject
23
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WhiteNoise.Storage", "WhiteNoise.Storage\WhiteNoise.Storage.csproj", "{38860173-5301-424A-BE5F-F71B0F94D294}"
24
EndProject
25
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WhiteNoise.Domain", "WhiteNoise.Domain\WhiteNoise.Domain.csproj", "{0686B6EA-7782-45FE-A990-A06EAD8A57C6}"
26
EndProject
27
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{B808F57E-8352-4CFD-B6F5-C75439147755}"
28
	ProjectSection(SolutionItems) = preProject
29
		MIT.txt = MIT.txt
30
	EndProjectSection
31
EndProject
32
Global
33
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
34
		Debug|x86 = Debug|x86
35
		Release|x86 = Release|x86
36
		Default|Any CPU = Default|Any CPU
37
	EndGlobalSection
38
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
39
		{0686B6EA-7782-45FE-A990-A06EAD8A57C6}.Debug|x86.ActiveCfg = Debug|Any CPU
40
		{0686B6EA-7782-45FE-A990-A06EAD8A57C6}.Debug|x86.Build.0 = Debug|Any CPU
41
		{0686B6EA-7782-45FE-A990-A06EAD8A57C6}.Default|Any CPU.ActiveCfg = Debug|Any CPU
42
		{0686B6EA-7782-45FE-A990-A06EAD8A57C6}.Default|Any CPU.Build.0 = Debug|Any CPU
43
		{0686B6EA-7782-45FE-A990-A06EAD8A57C6}.Release|x86.ActiveCfg = Release|Any CPU
44
		{0686B6EA-7782-45FE-A990-A06EAD8A57C6}.Release|x86.Build.0 = Release|Any CPU
45
		{38860173-5301-424A-BE5F-F71B0F94D294}.Debug|x86.ActiveCfg = Debug|Any CPU
46
		{38860173-5301-424A-BE5F-F71B0F94D294}.Debug|x86.Build.0 = Debug|Any CPU
47
		{38860173-5301-424A-BE5F-F71B0F94D294}.Default|Any CPU.ActiveCfg = Debug|Any CPU
48
		{38860173-5301-424A-BE5F-F71B0F94D294}.Default|Any CPU.Build.0 = Debug|Any CPU
49
		{38860173-5301-424A-BE5F-F71B0F94D294}.Release|x86.ActiveCfg = Release|Any CPU
50
		{38860173-5301-424A-BE5F-F71B0F94D294}.Release|x86.Build.0 = Release|Any CPU
51
		{AEA071CB-7205-4054-A60F-8D5FD82BE80D}.Debug|x86.ActiveCfg = Debug|Any CPU
52
		{AEA071CB-7205-4054-A60F-8D5FD82BE80D}.Debug|x86.Build.0 = Debug|Any CPU
53
		{AEA071CB-7205-4054-A60F-8D5FD82BE80D}.Default|Any CPU.ActiveCfg = Debug|Any CPU
54
		{AEA071CB-7205-4054-A60F-8D5FD82BE80D}.Default|Any CPU.Build.0 = Debug|Any CPU
55
		{AEA071CB-7205-4054-A60F-8D5FD82BE80D}.Release|x86.ActiveCfg = Release|Any CPU
56
		{AEA071CB-7205-4054-A60F-8D5FD82BE80D}.Release|x86.Build.0 = Release|Any CPU
57
		{EBCA3317-A6C3-4265-851B-02173598CF81}.Debug|x86.ActiveCfg = Debug|x86
58
		{EBCA3317-A6C3-4265-851B-02173598CF81}.Debug|x86.Build.0 = Debug|x86
59
		{EBCA3317-A6C3-4265-851B-02173598CF81}.Release|x86.ActiveCfg = Release|x86
60
		{EBCA3317-A6C3-4265-851B-02173598CF81}.Release|x86.Build.0 = Release|x86
61
		{F310496B-BA21-4326-9B48-156ED21B1FC2}.Debug|x86.ActiveCfg = Debug|Any CPU
62
		{F310496B-BA21-4326-9B48-156ED21B1FC2}.Debug|x86.Build.0 = Debug|Any CPU
63
		{F310496B-BA21-4326-9B48-156ED21B1FC2}.Release|x86.ActiveCfg = Release|Any CPU
64
		{F310496B-BA21-4326-9B48-156ED21B1FC2}.Release|x86.Build.0 = Release|Any CPU
65
	EndGlobalSection
66
	GlobalSection(NestedProjects) = preSolution
67
	EndGlobalSection
68
	GlobalSection(MonoDevelopProperties) = preSolution
69
		StartupItem = WhiteNoise\WhiteNoise.csproj
70
		Policies = $0
71
		$0.DotNetNamingPolicy = $1
72
		$1.DirectoryNamespaceAssociation = PrefixedHierarchical
73
		$1.ResourceNamePolicy = FileName
74
		$0.TextStylePolicy = $2
75
		$2.inheritsSet = null
76
		$2.scope = text/x-csharp
77
		$0.CSharpFormattingPolicy = $3
78
		$3.IndentSwitchBody = True
79
		$3.inheritsSet = Mono
80
		$3.inheritsScope = text/x-csharp
81
		$3.scope = text/x-csharp
82
		$0.TextStylePolicy = $4
83
		$4.FileWidth = 120
84
		$4.TabWidth = 4
85
		$4.inheritsSet = Mono
86
		$4.inheritsScope = text/plain
87
		$4.scope = text/plain
88
		$0.StandardHeader = $5
89
		$5.Text = @\n${FileName}\n \nAuthor:\n      ${AuthorName} <${AuthorEmail}>\n\nCopyright (c) ${Year} ${CopyrightHolder}\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the "Software"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.
90
		$5.IncludeInNewFiles = True
91
	EndGlobalSection
92
EndGlobal
1

2
Microsoft Visual Studio Solution File, Format Version 11.00
3
# Visual Studio 2010
4
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WhiteNoise", "WhiteNoise\WhiteNoise.csproj", "{EBCA3317-A6C3-4265-851B-02173598CF81}"
5
EndProject
6
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WhiteNoise.Listen", "WhiteNoise.Listen\WhiteNoise.Listen.csproj", "{F310496B-BA21-4326-9B48-156ED21B1FC2}"
7
EndProject
8
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Resources", "Resources", "{DE564CA5-B56D-4164-8124-499700031529}"
9
	ProjectSection(SolutionItems) = preProject
10
		Resources\Iesi.Collections.dll = Resources\Iesi.Collections.dll
11
		Resources\NHibernate.ByteCode.Castle.dll = Resources\NHibernate.ByteCode.Castle.eCode.Castle.dll
12
		Resources\NHibernate.dll = Resources\NHibernate.dll
13
		Resources\Npgsql.dll = Resources\Npgsql.dll
14
		Resources\Npgsql.dll.mdb = Resources\Npgsql.dll.mdb
15
		Resources\Npgsql.xml = Resources\Npgsql.xml
16
		Resources\PacketDotNet.dll = Resources\PacketDotNet.dll
17
		Resources\policy.2.0.Npgsql.dll = Resources\policy.2.0.Npgsql.dll
18
		Resources\SharpPcap.dll = Resources\SharpPcap.dll
19
	EndProjectSection
20
EndProject
21
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WhiteNoise.Test", "WhiteNoise.Test\WhiteNoise.Test.csproj", "{AEA071CB-7205-4054-A60F-8D5FD82BE80D}"
22
EndProject
23
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WhiteNoise.Storage", "WhiteNoise.Storage\WhiteNoise.Storage.csproj", "{38860173-5301-424A-BE5F-F71B0F94D294}"
24
EndProject
25
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WhiteNoise.Domain", "WhiteNoise.Domain\WhiteNoise.Domain.csproj", "{0686B6EA-7782-45FE-A990-A06EAD8A57C6}"
26
EndProject
27
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{B808F57E-8352-4CFD-B6F5-C75439147755}"
28
	ProjectSection(SolutionItems) = preProject
29
		MIT.txt = MIT.txt
30
	EndProjectSection
31
EndProject
32
Global
33
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
34
		Debug|Any CPU = Debug|Any CPU
35
		Debug|x86 = Debug|x86
36
		Default|Any CPU = Default|Any CPU
37
		Default|x86 = Default|x86
38
		Release|Any CPU = Release|Any CPU
39
		Release|x86 = Release|x86
40
	EndGlobalSection
41
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
42
		{EBCA3317-A6C3-4265-851B-02173598CF81}.Debug|Any CPU.ActiveCfg = Debug|x86
43
		{EBCA3317-A6C3-4265-851B-02173598CF81}.Debug|Any CPU.Build.0 = Debug|x86
44
		{EBCA3317-A6C3-4265-851B-02173598CF81}.Debug|x86.ActiveCfg = Debug|x86
45
		{EBCA3317-A6C3-4265-851B-02173598CF81}.Debug|x86.Build.0 = Debug|x86
46
		{EBCA3317-A6C3-4265-851B-02173598CF81}.Default|Any CPU.ActiveCfg = Debug|x86
47
		{EBCA3317-A6C3-4265-851B-02173598CF81}.Default|x86.ActiveCfg = Debug|x86
48
		{EBCA3317-A6C3-4265-851B-02173598CF81}.Release|Any CPU.ActiveCfg = Release|x86
49
		{EBCA3317-A6C3-4265-851B-02173598CF81}.Release|x86.ActiveCfg = Release|x86
50
		{EBCA3317-A6C3-4265-851B-02173598CF81}.Release|x86.Build.0 = Release|x86
51
		{F310496B-BA21-4326-9B48-156ED21B1FC2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
52
		{F310496B-BA21-4326-9B48-156ED21B1FC2}.Debug|Any CPU.Build.0 = Debug|Any CPU
53
		{F310496B-BA21-4326-9B48-156ED21B1FC2}.Debug|x86.ActiveCfg = Debug|Any CPU
54
		{F310496B-BA21-4326-9B48-156ED21B1FC2}.Debug|x86.Build.0 = Debug|Any CPU
55
		{F310496B-BA21-4326-9B48-156ED21B1FC2}.Default|Any CPU.ActiveCfg = Debug|Any CPU
56
		{F310496B-BA21-4326-9B48-156ED21B1FC2}.Default|x86.ActiveCfg = Debug|Any CPU
57
		{F310496B-BA21-4326-9B48-156ED21B1FC2}.Release|Any CPU.ActiveCfg = Release|Any CPU
58
		{F310496B-BA21-4326-9B48-156ED21B1FC2}.Release|x86.ActiveCfg = Release|Any CPU
59
		{F310496B-BA21-4326-9B48-156ED21B1FC2}.Release|x86.Build.0 = Release|Any CPU
60
		{AEA071CB-7205-4054-A60F-8D5FD82BE80D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
61
		{AEA071CB-7205-4054-A60F-8D5FD82BE80D}.Debug|Any CPU.Build.0 = Debug|Any CPU
62
		{AEA071CB-7205-4054-A60F-8D5FD82BE80D}.Debug|x86.ActiveCfg = Debug|Any CPU
63
		{AEA071CB-7205-4054-A60F-8D5FD82BE80D}.Debug|x86.Build.0 = Debug|Any CPU
64
		{AEA071CB-7205-4054-A60F-8D5FD82BE80D}.Default|Any CPU.ActiveCfg = Debug|Any CPU
65
		{AEA071CB-7205-4054-A60F-8D5FD82BE80D}.Default|Any CPU.Build.0 = Debug|Any CPU
66
		{AEA071CB-7205-4054-A60F-8D5FD82BE80D}.Default|x86.ActiveCfg = Debug|Any CPU
67
		{AEA071CB-7205-4054-A60F-8D5FD82BE80D}.Release|Any CPU.ActiveCfg = Release|Any CPU
68
		{AEA071CB-7205-4054-A60F-8D5FD82BE80D}.Release|x86.ActiveCfg = Release|Any CPU
69
		{AEA071CB-7205-4054-A60F-8D5FD82BE80D}.Release|x86.Build.0 = Release|Any CPU
70
		{38860173-5301-424A-BE5F-F71B0F94D294}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
71
		{38860173-5301-424A-BE5F-F71B0F94D294}.Debug|Any CPU.Build.0 = Debug|Any CPU
72
		{38860173-5301-424A-BE5F-F71B0F94D294}.Debug|x86.ActiveCfg = Debug|Any CPU
73
		{38860173-5301-424A-BE5F-F71B0F94D294}.Debug|x86.Build.0 = Debug|Any CPU
74
		{38860173-5301-424A-BE5F-F71B0F94D294}.Default|Any CPU.ActiveCfg = Debug|Any CPU
75
		{38860173-5301-424A-BE5F-F71B0F94D294}.Default|Any CPU.Build.0 = Debug|Any CPU
76
		{38860173-5301-424A-BE5F-F71B0F94D294}.Default|x86.ActiveCfg = Debug|Any CPU
77
		{38860173-5301-424A-BE5F-F71B0F94D294}.Release|Any CPU.ActiveCfg = Release|Any CPU
78
		{38860173-5301-424A-BE5F-F71B0F94D294}.Release|x86.ActiveCfg = Release|Any CPU
79
		{38860173-5301-424A-BE5F-F71B0F94D294}.Release|x86.Build.0 = Release|Any CPU
80
		{0686B6EA-7782-45FE-A990-A06EAD8A57C6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
81
		{0686B6EA-7782-45FE-A990-A06EAD8A57C6}.Debug|Any CPU.Build.0 = Debug|Any CPU
82
		{0686B6EA-7782-45FE-A990-A06EAD8A57C6}.Debug|x86.ActiveCfg = Debug|Any CPU
83
		{0686B6EA-7782-45FE-A990-A06EAD8A57C6}.Debug|x86.Build.0 = Debug|Any CPU
84
		{0686B6EA-7782-45FE-A990-A06EAD8A57C6}.Default|Any CPU.ActiveCfg = Debug|Any CPU
85
		{0686B6EA-7782-45FE-A990-A06EAD8A57C6}.Default|Any CPU.Build.0 = Debug|Any CPU
86
		{0686B6EA-7782-45FE-A990-A06EAD8A57C6}.Default|x86.ActiveCfg = Debug|Any CPU
87
		{0686B6EA-7782-45FE-A990-A06EAD8A57C6}.Release|Any CPU.ActiveCfg = Release|Any CPU
88
		{0686B6EA-7782-45FE-A990-A06EAD8A57C6}.Release|x86.ActiveCfg = Release|Any CPU
89
		{0686B6EA-7782-45FE-A990-A06EAD8A57C6}.Release|x86.Build.0 = Release|Any CPU
90
	EndGlobalSection
91
	GlobalSection(SolutionProperties) = preSolution
92
		HideSolutionNode = FALSE
93
	EndGlobalSection
94
	GlobalSection(MonoDevelopProperties) = preSolution
95
		StartupItem = WhiteNoise\WhiteNoise.csproj
96
		Policies = $0
97
		$0.DotNetNamingPolicy = $1
98
		$1.DirectoryNamespaceAssociation = PrefixedHierarchical
99
		$1.ResourceNamePolicy = FileName
100
		$0.TextStylePolicy = $2
101
		$2.inheritsSet = null
102
		$2.scope = text/x-csharp
103
		$0.CSharpFormattingPolicy = $3
104
		$3.IndentSwitchBody = True
105
		$3.inheritsSet = Mono
106
		$3.inheritsScope = text/x-csharp
107
		$3.scope = text/x-csharp
108
		$0.TextStylePolicy = $4
109
		$4.FileWidth = 120
110
		$4.TabWidth = 4
111
		$4.inheritsSet = Mono
112
		$4.inheritsScope = text/plain
113
		$4.scope = text/plain
114
		$0.StandardHeader = $5
115
		$5.Text = @\n${FileName}\n \nAuthor:\n      ${AuthorName} <${AuthorEmail}>\n\nCopyright (c) ${Year} ${CopyrightHolder}\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the "Software"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.
116
		$5.IncludeInNewFiles = True
117
	EndGlobalSection
118
EndGlobal