# HG changeset patch # User stevenh7776 # Date 1338144803 -3600 # Node ID fa4ba894304817caf0a0ee4577d911613fa666bf # Parent 9eadccc3b46c5adbc8dbcd6e2ce1c1fc99aec6a9 final version diff -r 9eadccc3b46c -r fa4ba8943048 SilverlightAsyncRestWcf/.nuget/NuGet.Config --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/SilverlightAsyncRestWcf/.nuget/NuGet.Config Sun May 27 19:53:23 2012 +0100 @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff -r 9eadccc3b46c -r fa4ba8943048 SilverlightAsyncRestWcf/.nuget/NuGet.exe Binary file SilverlightAsyncRestWcf/.nuget/NuGet.exe has changed diff -r 9eadccc3b46c -r fa4ba8943048 SilverlightAsyncRestWcf/.nuget/NuGet.targets --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/SilverlightAsyncRestWcf/.nuget/NuGet.targets Sun May 27 19:53:23 2012 +0100 @@ -0,0 +1,71 @@ + + + + $(MSBuildProjectDirectory)\..\ + + + $([System.IO.Path]::Combine($(SolutionDir), ".nuget")) + $([System.IO.Path]::Combine($(ProjectDir), "packages.config")) + $([System.IO.Path]::Combine($(SolutionDir), "packages")) + + + $(SolutionDir).nuget + packages.config + $(SolutionDir)packages + + + $(NuGetToolsPath)\nuget.exe + "$(NuGetExePath)" + mono --runtime=v4.0.30319 $(NuGetExePath) + + $(TargetDir.Trim('\\')) + + + "" + + + false + + + false + + + $(NuGetCommand) install "$(PackagesConfig)" -source $(PackageSources) -o "$(PackagesDir)" + $(NuGetCommand) pack "$(ProjectPath)" -p Configuration=$(Configuration) -o "$(PackageOutputDir)" -symbols + + + + RestorePackages; + $(BuildDependsOn); + + + + + $(BuildDependsOn); + BuildPackage; + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff -r 9eadccc3b46c -r fa4ba8943048 SilverlightAsyncRestWcf/SilverlightAsyncRestWcf.Common/Car.cs --- a/SilverlightAsyncRestWcf/SilverlightAsyncRestWcf.Common/Car.cs Sun May 27 15:06:35 2012 +0100 +++ b/SilverlightAsyncRestWcf/SilverlightAsyncRestWcf.Common/Car.cs Sun May 27 19:53:23 2012 +0100 @@ -1,10 +1,17 @@ -namespace SilverlightAsyncRestWcf.Common +using System.Runtime.Serialization; + +namespace SilverlightAsyncRestWcf.Common { + [DataContract] public class Car { + [DataMember] public int Id { get; set; } + [DataMember] public string Make { get; set; } + [DataMember] public string Model { get; set; } + [DataMember] public int Year { get; set; } } } diff -r 9eadccc3b46c -r fa4ba8943048 SilverlightAsyncRestWcf/SilverlightAsyncRestWcf.Common/SilverlightAsyncRestWcf.Common.csproj --- a/SilverlightAsyncRestWcf/SilverlightAsyncRestWcf.Common/SilverlightAsyncRestWcf.Common.csproj Sun May 27 15:06:35 2012 +0100 +++ b/SilverlightAsyncRestWcf/SilverlightAsyncRestWcf.Common/SilverlightAsyncRestWcf.Common.csproj Sun May 27 19:53:23 2012 +0100 @@ -14,6 +14,8 @@ Profile3 512 {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + ..\ + true true @@ -36,10 +38,8 @@ - - - +