Skip to content

Commit 5a0c960

Browse files
author
daniel
committed
Added targets for .NET 3.5 Client Profile, and .NET 2.0
1 parent 7826564 commit 5a0c960

File tree

22 files changed

+799
-33
lines changed

22 files changed

+799
-33
lines changed

bin/net20/Hammock.dll

167 KB
Binary file not shown.

bin/net20/LinqBridge.dll

59.5 KB
Binary file not shown.

lib/LinqBridge.dll

59.5 KB
Binary file not shown.

src/Hammock.sln

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,10 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ICSharpCode.SharpZipLib.Win
5555
EndProject
5656
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Hammock.ClientProfile", "net35\Hammock.ClientProfile\Hammock.ClientProfile.csproj", "{73015806-7BE4-4BAB-AA07-ACC719EFE85A}"
5757
EndProject
58+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".NET 2.0", ".NET 2.0", "{6052AEDE-F8B1-4E24-B791-DBB7FF9621D3}"
59+
EndProject
60+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Hammock", "net20\Hammock\Hammock.csproj", "{80647B8C-E162-4E34-A758-590280F11B97}"
61+
EndProject
5862
Global
5963
GlobalSection(SolutionConfigurationPlatforms) = preSolution
6064
ClientProfiles|Any CPU = ClientProfiles|Any CPU
@@ -191,6 +195,14 @@ Global
191195
{73015806-7BE4-4BAB-AA07-ACC719EFE85A}.Mono|Any CPU.Build.0 = Release|Any CPU
192196
{73015806-7BE4-4BAB-AA07-ACC719EFE85A}.Release|Any CPU.ActiveCfg = Release|Any CPU
193197
{73015806-7BE4-4BAB-AA07-ACC719EFE85A}.Release|Any CPU.Build.0 = Release|Any CPU
198+
{80647B8C-E162-4E34-A758-590280F11B97}.ClientProfiles|Any CPU.ActiveCfg = Release|Any CPU
199+
{80647B8C-E162-4E34-A758-590280F11B97}.ClientProfiles|Any CPU.Build.0 = Release|Any CPU
200+
{80647B8C-E162-4E34-A758-590280F11B97}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
201+
{80647B8C-E162-4E34-A758-590280F11B97}.Debug|Any CPU.Build.0 = Debug|Any CPU
202+
{80647B8C-E162-4E34-A758-590280F11B97}.Mono|Any CPU.ActiveCfg = Release|Any CPU
203+
{80647B8C-E162-4E34-A758-590280F11B97}.Mono|Any CPU.Build.0 = Release|Any CPU
204+
{80647B8C-E162-4E34-A758-590280F11B97}.Release|Any CPU.ActiveCfg = Release|Any CPU
205+
{80647B8C-E162-4E34-A758-590280F11B97}.Release|Any CPU.Build.0 = Release|Any CPU
194206
EndGlobalSection
195207
GlobalSection(SolutionProperties) = preSolution
196208
HideSolutionNode = FALSE
@@ -216,5 +228,6 @@ Global
216228
{BF04A546-D681-4F5A-AC41-CFC67CAEC66E} = {7090D3D7-90C3-4EB1-BB62-716046673F29}
217229
{960E427F-67E0-42A5-86ED-FC6A342CDCB2} = {265F976E-7BAE-408A-82EE-1E692F5662DF}
218230
{F9695086-8EF6-43E3-AC5F-275FE918FA3A} = {DBEBA14C-000D-464E-8CC8-CF44CAE866F4}
231+
{80647B8C-E162-4E34-A758-590280F11B97} = {6052AEDE-F8B1-4E24-B791-DBB7FF9621D3}
219232
EndGlobalSection
220233
EndGlobal

src/net20/Hammock/Hammock.csproj

Lines changed: 387 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
using System.Reflection;
2+
using System.Runtime.InteropServices;
3+
using System.Security;
4+
5+
// General Information about an assembly is controlled through the following
6+
// set of attributes. Change these attribute values to modify the information
7+
// associated with an assembly.
8+
[assembly: AssemblyTitle("Hammock")]
9+
[assembly: AssemblyDescription("")]
10+
[assembly: AssemblyConfiguration("")]
11+
[assembly: AssemblyCompany("Apitize")]
12+
[assembly: AssemblyProduct("Hammock")]
13+
[assembly: AssemblyCopyright("Copyright © 2010 Daniel Crenna and Jason Diller")]
14+
[assembly: AssemblyTrademark("")]
15+
[assembly: AssemblyCulture("")]
16+
[assembly: AllowPartiallyTrustedCallers]
17+
18+
// Setting ComVisible to false makes the types in this assembly not visible
19+
// to COM components. If you need to access a type in this assembly from
20+
// COM, set the ComVisible attribute to true on that type.
21+
[assembly: ComVisible(false)]
22+
23+
// The following GUID is for the ID of the typelib if this project is exposed to COM
24+
[assembly: Guid("b86616db-abb6-4989-9464-67b1e948fdd1")]
25+
26+
// Version information for an assembly consists of the following four values:
27+
//
28+
// Major Version
29+
// Minor Version
30+
// Build Number
31+
// Revision
32+
//
33+
// You can specify all the values or you can default the Build and Revision Numbers
34+
// by using the '*' as shown below:
35+
// [assembly: AssemblyVersion("1.0.*")]
36+
[assembly: AssemblyVersion("1.0.0.0")]
37+
[assembly: AssemblyFileVersion("1.0.0.0")]

src/net20/Hammock/key.snk

596 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)