From a84c894c89f23e3eb6416ff8943d4d8a2fe84a49 Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Fri, 29 Mar 2013 12:46:52 +0400 Subject: undo PCL project because it is not supported by WP7.1 SDK --- Juick.sln | 8 +----- Juick/Api/Message.cs | 16 ++++++++++++ Juick/Api/Photo.cs | 9 +++++++ Juick/Api/User.cs | 9 +++++++ Juick/Juick.csproj | 9 +++---- JuickApi/JuickApi.csproj | 52 ------------------------------------- JuickApi/Message.cs | 16 ------------ JuickApi/Photo.cs | 9 ------- JuickApi/Properties/AssemblyInfo.cs | 30 --------------------- JuickApi/User.cs | 9 ------- 10 files changed, 38 insertions(+), 129 deletions(-) create mode 100644 Juick/Api/Message.cs create mode 100644 Juick/Api/Photo.cs create mode 100644 Juick/Api/User.cs delete mode 100644 JuickApi/JuickApi.csproj delete mode 100644 JuickApi/Message.cs delete mode 100644 JuickApi/Photo.cs delete mode 100644 JuickApi/Properties/AssemblyInfo.cs delete mode 100644 JuickApi/User.cs diff --git a/Juick.sln b/Juick.sln index 25fa975..83cc7a9 100644 --- a/Juick.sln +++ b/Juick.sln @@ -1,10 +1,8 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2012 +# Visual Studio 2010 Express for Windows Phone Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Juick", "Juick\Juick.csproj", "{324D7F67-600D-4239-90D9-07C9CA17A4F3}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "JuickApi", "JuickApi\JuickApi.csproj", "{51F516BC-4EF9-4C81-B4A5-3E97809B70CE}" -EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -17,10 +15,6 @@ Global {324D7F67-600D-4239-90D9-07C9CA17A4F3}.Release|Any CPU.ActiveCfg = Release|Any CPU {324D7F67-600D-4239-90D9-07C9CA17A4F3}.Release|Any CPU.Build.0 = Release|Any CPU {324D7F67-600D-4239-90D9-07C9CA17A4F3}.Release|Any CPU.Deploy.0 = Release|Any CPU - {51F516BC-4EF9-4C81-B4A5-3E97809B70CE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {51F516BC-4EF9-4C81-B4A5-3E97809B70CE}.Debug|Any CPU.Build.0 = Debug|Any CPU - {51F516BC-4EF9-4C81-B4A5-3E97809B70CE}.Release|Any CPU.ActiveCfg = Release|Any CPU - {51F516BC-4EF9-4C81-B4A5-3E97809B70CE}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/Juick/Api/Message.cs b/Juick/Api/Message.cs new file mode 100644 index 0000000..9bd3230 --- /dev/null +++ b/Juick/Api/Message.cs @@ -0,0 +1,16 @@ +using System.Collections.Generic; + +namespace JuickApi +{ + public class Message + { + public int Mid { get; set; } + public int Rid { get; set; } + public string Body { get; set; } + public User User { get; set; } + public string Timestamp { get; set; } + public int Replies { get; set; } + public List Tags { get; set; } + public Photo Photo { get; set; } + } +} diff --git a/Juick/Api/Photo.cs b/Juick/Api/Photo.cs new file mode 100644 index 0000000..e6cce2b --- /dev/null +++ b/Juick/Api/Photo.cs @@ -0,0 +1,9 @@ +namespace JuickApi +{ + public class Photo + { + public string Thumbnail { get; set; } + public string Small { get; set; } + public string Medium { get; set; } + } +} diff --git a/Juick/Api/User.cs b/Juick/Api/User.cs new file mode 100644 index 0000000..dd8bae2 --- /dev/null +++ b/Juick/Api/User.cs @@ -0,0 +1,9 @@ +namespace JuickApi +{ + public class User + { + public int Uid { get; set; } + public string UName { get; set; } + public string Fullname { get; set; } + } +} diff --git a/Juick/Juick.csproj b/Juick/Juick.csproj index c330761..4ab974d 100644 --- a/Juick/Juick.csproj +++ b/Juick/Juick.csproj @@ -66,6 +66,9 @@ + + + App.xaml @@ -166,12 +169,6 @@ - - - {51F516BC-4EF9-4C81-B4A5-3E97809B70CE} - JuickApi - - - - - - - - - - - - \ No newline at end of file diff --git a/JuickApi/Message.cs b/JuickApi/Message.cs deleted file mode 100644 index 9bd3230..0000000 --- a/JuickApi/Message.cs +++ /dev/null @@ -1,16 +0,0 @@ -using System.Collections.Generic; - -namespace JuickApi -{ - public class Message - { - public int Mid { get; set; } - public int Rid { get; set; } - public string Body { get; set; } - public User User { get; set; } - public string Timestamp { get; set; } - public int Replies { get; set; } - public List Tags { get; set; } - public Photo Photo { get; set; } - } -} diff --git a/JuickApi/Photo.cs b/JuickApi/Photo.cs deleted file mode 100644 index e6cce2b..0000000 --- a/JuickApi/Photo.cs +++ /dev/null @@ -1,9 +0,0 @@ -namespace JuickApi -{ - public class Photo - { - public string Thumbnail { get; set; } - public string Small { get; set; } - public string Medium { get; set; } - } -} diff --git a/JuickApi/Properties/AssemblyInfo.cs b/JuickApi/Properties/AssemblyInfo.cs deleted file mode 100644 index 58faa6d..0000000 --- a/JuickApi/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System.Resources; -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("JuickApi")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("JuickApi")] -[assembly: AssemblyCopyright("Copyright © 2013")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] -[assembly: NeutralResourcesLanguage("en")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/JuickApi/User.cs b/JuickApi/User.cs deleted file mode 100644 index dd8bae2..0000000 --- a/JuickApi/User.cs +++ /dev/null @@ -1,9 +0,0 @@ -namespace JuickApi -{ - public class User - { - public int Uid { get; set; } - public string UName { get; set; } - public string Fullname { get; set; } - } -} -- cgit v1.2.3