No time for comments.
authorGustavo Martin <gu.martinm@gmail.com>
Sun, 9 Mar 2014 19:20:06 +0000 (20:20 +0100)
committerGustavo Martin <gu.martinm@gmail.com>
Sun, 9 Mar 2014 19:20:06 +0000 (20:20 +0100)
WindowsPhone/RemoteAgents/RemoteAgents.sln
WindowsPhone/RemoteAgents/RemoteAgents/RemoteAgents.csproj
WindowsPhone/RemoteAgents/RemoteAgents/View/View.cs
WindowsPhone/RemoteAgents/RemoteAgents/ViewModel/ViewModel.cs

index 087e84b..1d0a861 100644 (file)
@@ -5,8 +5,6 @@ VisualStudioVersion = 12.0.30110.0
 MinimumVisualStudioVersion = 10.0.40219.1
 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RemoteAgents", "RemoteAgents\RemoteAgents.csproj", "{C11B661C-3470-4542-83A7-939674DB2BD2}"
 EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "jsonrpc4net.WindowsPhone8", "..\..\jsonrpc4net\jsonrpc4net\jsonrpc4net.WindowsPhone8.csproj", "{9FC57CC3-23D0-486B-A3E4-92C547561949}"
-EndProject
 Global
        GlobalSection(SolutionConfigurationPlatforms) = preSolution
                Debug|Any CPU = Debug|Any CPU
@@ -35,18 +33,6 @@ Global
                {C11B661C-3470-4542-83A7-939674DB2BD2}.Release|x86.ActiveCfg = Release|x86
                {C11B661C-3470-4542-83A7-939674DB2BD2}.Release|x86.Build.0 = Release|x86
                {C11B661C-3470-4542-83A7-939674DB2BD2}.Release|x86.Deploy.0 = Release|x86
-               {9FC57CC3-23D0-486B-A3E4-92C547561949}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
-               {9FC57CC3-23D0-486B-A3E4-92C547561949}.Debug|Any CPU.Build.0 = Debug|Any CPU
-               {9FC57CC3-23D0-486B-A3E4-92C547561949}.Debug|ARM.ActiveCfg = Debug|ARM
-               {9FC57CC3-23D0-486B-A3E4-92C547561949}.Debug|ARM.Build.0 = Debug|ARM
-               {9FC57CC3-23D0-486B-A3E4-92C547561949}.Debug|x86.ActiveCfg = Debug|x86
-               {9FC57CC3-23D0-486B-A3E4-92C547561949}.Debug|x86.Build.0 = Debug|x86
-               {9FC57CC3-23D0-486B-A3E4-92C547561949}.Release|Any CPU.ActiveCfg = Release|Any CPU
-               {9FC57CC3-23D0-486B-A3E4-92C547561949}.Release|Any CPU.Build.0 = Release|Any CPU
-               {9FC57CC3-23D0-486B-A3E4-92C547561949}.Release|ARM.ActiveCfg = Release|ARM
-               {9FC57CC3-23D0-486B-A3E4-92C547561949}.Release|ARM.Build.0 = Release|ARM
-               {9FC57CC3-23D0-486B-A3E4-92C547561949}.Release|x86.ActiveCfg = Release|x86
-               {9FC57CC3-23D0-486B-A3E4-92C547561949}.Release|x86.Build.0 = Release|x86
        EndGlobalSection
        GlobalSection(SolutionProperties) = preSolution
                HideSolutionNode = FALSE
index 80f6acc..c81bd3b 100644 (file)
     </EmbeddedResource>
   </ItemGroup>
   <ItemGroup>
+    <Reference Include="jsonrpc4net, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\..\..\jsonrpc4net\jsonrpc4net\Bin\Debug\jsonrpc4net.dll</HintPath>
+    </Reference>
     <Reference Include="NLog">
       <HintPath>..\packages\NLog.2.1.0\lib\sl4-windowsphone71\NLog.dll</HintPath>
     </Reference>
   <ItemGroup>
     <Folder Include="Model\" />
   </ItemGroup>
-  <ItemGroup>
-    <ProjectReference Include="..\..\..\jsonrpc4net\jsonrpc4net\jsonrpc4net.WindowsPhone8.csproj">
-      <Project>{9FC57CC3-23D0-486B-A3E4-92C547561949}</Project>
-      <Name>jsonrpc4net.WindowsPhone8</Name>
-    </ProjectReference>
-  </ItemGroup>
   <Import Project="$(MSBuildExtensionsPath)\Microsoft\$(TargetFrameworkIdentifier)\$(TargetFrameworkVersion)\Microsoft.$(TargetFrameworkIdentifier).$(TargetFrameworkVersion).Overrides.targets" />
   <Import Project="$(MSBuildExtensionsPath)\Microsoft\$(TargetFrameworkIdentifier)\$(TargetFrameworkVersion)\Microsoft.$(TargetFrameworkIdentifier).CSharp.targets" />
   <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
index 72093b5..29f225c 100644 (file)
@@ -12,9 +12,9 @@ namespace RemoteAgents.WindowsPhone.View
             return await _vm.GetCurrentDateAsync();
         }
 
-        async public Task SetWriteTextAsync(params object[] parameters)
+        async public Task SetWriteTextAsync(string text, int number)
         {
-            await _vm.SetWriteTextAsync(parameters);
+            await _vm.SetWriteTextAsync(text, number);
         }
     }
 }
index 6b49ab3..3320499 100644 (file)
@@ -14,9 +14,9 @@ namespace RemoteAgents.WindowsPhone.ViewModel
             return await _remoteClient.PostRemoteServiceAsync<string>(uri, "getCurrentDate");
         }
 
-        async public Task SetWriteTextAsync(params object[] parameters)
+        async public Task SetWriteTextAsync(string text, int number)
         {
-            await _remoteClient.PostRemoteServiceAsync(uriSetWriteText, "setWriteText", parameters);
+            await _remoteClient.PostRemoteServiceAsync(uriSetWriteText, "setWriteText", text, number);
         }
 
     }