From f21ff68f3c1447bf058e98d07a596a16e89c44aa Mon Sep 17 00:00:00 2001 From: Marek Safar Date: Thu, 24 Jan 2019 17:58:55 +0100 Subject: Add two sets of tests --- .gitignore | 10 +- monotouch/Assets.sln | 23 +++ monotouch/Newtonsoft.Json.Test/AppDelegate.cs | 56 ++++++ .../AppIcon.appiconset/Contents.json | 202 +++++++++++++++++++++ .../Assets.xcassets/Contents.json | 6 + monotouch/Newtonsoft.Json.Test/EmptyClass.cs | 9 + monotouch/Newtonsoft.Json.Test/Entitlements.plist | 6 + monotouch/Newtonsoft.Json.Test/Info.plist | 40 ++++ .../Newtonsoft.Json.Test/LaunchScreen.storyboard | 27 +++ monotouch/Newtonsoft.Json.Test/Main.cs | 16 ++ monotouch/Newtonsoft.Json.Test/Main.storyboard | 26 +++ .../Newtonsoft.Json.Test.csproj | 119 ++++++++++++ monotouch/Newtonsoft.Json.Test/ViewController.cs | 24 +++ .../ViewController.designer.cs | 15 ++ .../Release/Newtonsoft.Json.Test.exe | Bin 0 -> 5632 bytes .../iPhoneSimulator/Release/Newtonsoft.Json.dll | Bin 0 -> 669096 bytes .../bin/iPhoneSimulator/Release/Xamarin.iOS.dll | Bin 0 -> 15261696 bytes monotouch/Newtonsoft.Json.Test/packages.config | 4 + net_4_x/Assets.sln | 17 ++ .../Newtonsoft.Json.Test.csproj | 45 +++++ net_4_x/Newtonsoft.Json.Test/Program.cs | 10 + .../Properties/AssemblyInfo.cs | 26 +++ .../bin/Release/Newtonsoft.Json.Test.exe | Bin 0 -> 5120 bytes .../bin/Release/Newtonsoft.Json.dll | Bin 0 -> 675240 bytes net_4_x/Newtonsoft.Json.Test/packages.config | 4 + 25 files changed, 682 insertions(+), 3 deletions(-) create mode 100644 monotouch/Assets.sln create mode 100644 monotouch/Newtonsoft.Json.Test/AppDelegate.cs create mode 100644 monotouch/Newtonsoft.Json.Test/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 monotouch/Newtonsoft.Json.Test/Assets.xcassets/Contents.json create mode 100644 monotouch/Newtonsoft.Json.Test/EmptyClass.cs create mode 100644 monotouch/Newtonsoft.Json.Test/Entitlements.plist create mode 100644 monotouch/Newtonsoft.Json.Test/Info.plist create mode 100644 monotouch/Newtonsoft.Json.Test/LaunchScreen.storyboard create mode 100644 monotouch/Newtonsoft.Json.Test/Main.cs create mode 100644 monotouch/Newtonsoft.Json.Test/Main.storyboard create mode 100644 monotouch/Newtonsoft.Json.Test/Newtonsoft.Json.Test.csproj create mode 100644 monotouch/Newtonsoft.Json.Test/ViewController.cs create mode 100644 monotouch/Newtonsoft.Json.Test/ViewController.designer.cs create mode 100644 monotouch/Newtonsoft.Json.Test/bin/iPhoneSimulator/Release/Newtonsoft.Json.Test.exe create mode 100755 monotouch/Newtonsoft.Json.Test/bin/iPhoneSimulator/Release/Newtonsoft.Json.dll create mode 100755 monotouch/Newtonsoft.Json.Test/bin/iPhoneSimulator/Release/Xamarin.iOS.dll create mode 100644 monotouch/Newtonsoft.Json.Test/packages.config create mode 100644 net_4_x/Assets.sln create mode 100644 net_4_x/Newtonsoft.Json.Test/Newtonsoft.Json.Test.csproj create mode 100644 net_4_x/Newtonsoft.Json.Test/Program.cs create mode 100644 net_4_x/Newtonsoft.Json.Test/Properties/AssemblyInfo.cs create mode 100644 net_4_x/Newtonsoft.Json.Test/bin/Release/Newtonsoft.Json.Test.exe create mode 100755 net_4_x/Newtonsoft.Json.Test/bin/Release/Newtonsoft.Json.dll create mode 100644 net_4_x/Newtonsoft.Json.Test/packages.config diff --git a/.gitignore b/.gitignore index 3e759b7..6481438 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,8 @@ ## ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore +.DS_Store + # User-specific files *.suo *.user @@ -15,14 +17,16 @@ # Build results [Dd]ebug/ [Dd]ebugPublic/ -[Rr]elease/ -[Rr]eleases/ +#[Rr]elease/ +#[Rr]eleases/ x64/ x86/ bld/ -[Bb]in/ +#[Bb]in/ [Oo]bj/ [Ll]og/ +**/[Bb]in/**/[Rr]elease/*.app +**/[Bb]in/**/[Rr]elease/*.xml # Visual Studio 2015/2017 cache/options directory .vs/ diff --git a/monotouch/Assets.sln b/monotouch/Assets.sln new file mode 100644 index 0000000..68e0355 --- /dev/null +++ b/monotouch/Assets.sln @@ -0,0 +1,23 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Newtonsoft.Json.Test", "Newtonsoft.Json.Test\Newtonsoft.Json.Test.csproj", "{60AB6877-D50D-4633-8453-564182E479D2}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|iPhoneSimulator = Debug|iPhoneSimulator + Release|iPhone = Release|iPhone + Release|iPhoneSimulator = Release|iPhoneSimulator + Debug|iPhone = Debug|iPhone + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {60AB6877-D50D-4633-8453-564182E479D2}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator + {60AB6877-D50D-4633-8453-564182E479D2}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator + {60AB6877-D50D-4633-8453-564182E479D2}.Release|iPhone.ActiveCfg = Release|iPhone + {60AB6877-D50D-4633-8453-564182E479D2}.Release|iPhone.Build.0 = Release|iPhone + {60AB6877-D50D-4633-8453-564182E479D2}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator + {60AB6877-D50D-4633-8453-564182E479D2}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator + {60AB6877-D50D-4633-8453-564182E479D2}.Debug|iPhone.ActiveCfg = Debug|iPhone + {60AB6877-D50D-4633-8453-564182E479D2}.Debug|iPhone.Build.0 = Debug|iPhone + EndGlobalSection +EndGlobal diff --git a/monotouch/Newtonsoft.Json.Test/AppDelegate.cs b/monotouch/Newtonsoft.Json.Test/AppDelegate.cs new file mode 100644 index 0000000..076b3cc --- /dev/null +++ b/monotouch/Newtonsoft.Json.Test/AppDelegate.cs @@ -0,0 +1,56 @@ +using Foundation; +using UIKit; + +namespace Newtonsoft.Json.Test { + // The UIApplicationDelegate for the application. This class is responsible for launching the + // User Interface of the application, as well as listening (and optionally responding) to application events from iOS. + [Register ("AppDelegate")] + public class AppDelegate : UIApplicationDelegate { + // class-level declarations + + public override UIWindow Window { + get; + set; + } + + public override bool FinishedLaunching (UIApplication application, NSDictionary launchOptions) + { + // Override point for customization after application launch. + // If not required for your application you can safely delete this method + + return true; + } + + public override void OnResignActivation (UIApplication application) + { + // Invoked when the application is about to move from active to inactive state. + // This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) + // or when the user quits the application and it begins the transition to the background state. + // Games should use this method to pause the game. + } + + public override void DidEnterBackground (UIApplication application) + { + // Use this method to release shared resources, save user data, invalidate timers and store the application state. + // If your application supports background exection this method is called instead of WillTerminate when the user quits. + } + + public override void WillEnterForeground (UIApplication application) + { + // Called as part of the transiton from background to active state. + // Here you can undo many of the changes made on entering the background. + } + + public override void OnActivated (UIApplication application) + { + // Restart any tasks that were paused (or not yet started) while the application was inactive. + // If the application was previously in the background, optionally refresh the user interface. + } + + public override void WillTerminate (UIApplication application) + { + // Called when the application is about to terminate. Save data, if needed. See also DidEnterBackground. + } + } +} + diff --git a/monotouch/Newtonsoft.Json.Test/Assets.xcassets/AppIcon.appiconset/Contents.json b/monotouch/Newtonsoft.Json.Test/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..64d0e3d --- /dev/null +++ b/monotouch/Newtonsoft.Json.Test/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,202 @@ +{ + "images" : [ + { + "idiom" : "iphone", + "size" : "20x20", + "scale" : "2x" + }, + { + "idiom" : "iphone", + "size" : "20x20", + "scale" : "3x" + }, + { + "idiom" : "iphone", + "size" : "29x29", + "scale" : "2x" + }, + { + "idiom" : "iphone", + "size" : "29x29", + "scale" : "3x" + }, + { + "idiom" : "iphone", + "size" : "40x40", + "scale" : "2x" + }, + { + "idiom" : "iphone", + "size" : "40x40", + "scale" : "3x" + }, + { + "idiom" : "iphone", + "size" : "60x60", + "scale" : "2x" + }, + { + "idiom" : "iphone", + "size" : "60x60", + "scale" : "3x" + }, + { + "idiom" : "ipad", + "size" : "20x20", + "scale" : "1x" + }, + { + "idiom" : "ipad", + "size" : "20x20", + "scale" : "2x" + }, + { + "idiom" : "ipad", + "size" : "29x29", + "scale" : "1x" + }, + { + "idiom" : "ipad", + "size" : "29x29", + "scale" : "2x" + }, + { + "idiom" : "ipad", + "size" : "40x40", + "scale" : "1x" + }, + { + "idiom" : "ipad", + "size" : "40x40", + "scale" : "2x" + }, + { + "idiom" : "ipad", + "size" : "76x76", + "scale" : "1x" + }, + { + "idiom" : "ipad", + "size" : "76x76", + "scale" : "2x" + }, + { + "idiom" : "ipad", + "size" : "83.5x83.5", + "scale" : "2x" + }, + { + "idiom" : "ios-marketing", + "size" : "1024x1024", + "scale" : "1x" + }, + { + "size" : "24x24", + "idiom" : "watch", + "scale" : "2x", + "role" : "notificationCenter", + "subtype" : "38mm" + }, + { + "size" : "27.5x27.5", + "idiom" : "watch", + "scale" : "2x", + "role" : "notificationCenter", + "subtype" : "42mm" + }, + { + "size" : "29x29", + "idiom" : "watch", + "role" : "companionSettings", + "scale" : "2x" + }, + { + "size" : "29x29", + "idiom" : "watch", + "role" : "companionSettings", + "scale" : "3x" + }, + { + "size" : "40x40", + "idiom" : "watch", + "scale" : "2x", + "role" : "appLauncher", + "subtype" : "38mm" + }, + { + "size" : "44x44", + "idiom" : "watch", + "scale" : "2x", + "role" : "longLook", + "subtype" : "42mm" + }, + { + "size" : "86x86", + "idiom" : "watch", + "scale" : "2x", + "role" : "quickLook", + "subtype" : "38mm" + }, + { + "size" : "98x98", + "idiom" : "watch", + "scale" : "2x", + "role" : "quickLook", + "subtype" : "42mm" + }, + { + "idiom" : "mac", + "size" : "16x16", + "scale" : "1x" + }, + { + "idiom" : "mac", + "size" : "16x16", + "scale" : "2x" + }, + { + "idiom" : "mac", + "size" : "32x32", + "scale" : "1x" + }, + { + "idiom" : "mac", + "size" : "32x32", + "scale" : "2x" + }, + { + "idiom" : "mac", + "size" : "128x128", + "scale" : "1x" + }, + { + "idiom" : "mac", + "size" : "128x128", + "scale" : "2x" + }, + { + "idiom" : "mac", + "size" : "256x256", + "scale" : "1x" + }, + { + "idiom" : "mac", + "size" : "256x256", + "scale" : "2x" + }, + { + "idiom" : "mac", + "size" : "512x512", + "scale" : "1x" + }, + { + "idiom" : "mac", + "size" : "512x512", + "scale" : "2x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} diff --git a/monotouch/Newtonsoft.Json.Test/Assets.xcassets/Contents.json b/monotouch/Newtonsoft.Json.Test/Assets.xcassets/Contents.json new file mode 100644 index 0000000..4caf392 --- /dev/null +++ b/monotouch/Newtonsoft.Json.Test/Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + } +} \ No newline at end of file diff --git a/monotouch/Newtonsoft.Json.Test/EmptyClass.cs b/monotouch/Newtonsoft.Json.Test/EmptyClass.cs new file mode 100644 index 0000000..114363c --- /dev/null +++ b/monotouch/Newtonsoft.Json.Test/EmptyClass.cs @@ -0,0 +1,9 @@ +namespace Newtonsoft.Json.Test +{ + public class EmptyClass + { + public EmptyClass () + { + } + } +} diff --git a/monotouch/Newtonsoft.Json.Test/Entitlements.plist b/monotouch/Newtonsoft.Json.Test/Entitlements.plist new file mode 100644 index 0000000..9ae5993 --- /dev/null +++ b/monotouch/Newtonsoft.Json.Test/Entitlements.plist @@ -0,0 +1,6 @@ + + + + + + diff --git a/monotouch/Newtonsoft.Json.Test/Info.plist b/monotouch/Newtonsoft.Json.Test/Info.plist new file mode 100644 index 0000000..9750a73 --- /dev/null +++ b/monotouch/Newtonsoft.Json.Test/Info.plist @@ -0,0 +1,40 @@ + + + + + CFBundleName + Newtonsoft.Json.Test + CFBundleIdentifier + com.companyname.Newtonsoft-Json-Test + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1.0 + LSRequiresIPhoneOS + + MinimumOSVersion + 12.1 + UIDeviceFamily + + 1 + 2 + + UILaunchStoryboardName + LaunchScreen + UIMainStoryboardFile + Main + UIRequiredDeviceCapabilities + + armv7 + + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + XSAppIconAssets + Assets.xcassets/AppIcon.appiconset + + diff --git a/monotouch/Newtonsoft.Json.Test/LaunchScreen.storyboard b/monotouch/Newtonsoft.Json.Test/LaunchScreen.storyboard new file mode 100644 index 0000000..7981a14 --- /dev/null +++ b/monotouch/Newtonsoft.Json.Test/LaunchScreen.storyboard @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/monotouch/Newtonsoft.Json.Test/Main.cs b/monotouch/Newtonsoft.Json.Test/Main.cs new file mode 100644 index 0000000..8ca004f --- /dev/null +++ b/monotouch/Newtonsoft.Json.Test/Main.cs @@ -0,0 +1,16 @@ +using UIKit; + +namespace Newtonsoft.Json.Test { + public class Application { + // This is the main entry point of the application. + static void Main (string [] args) + { + new EmptyClass (); + JsonConvert.DeserializeObject ("{}"); + + // if you want to use a different Application Delegate class from "AppDelegate" + // you can specify it here. + UIApplication.Main (args, null, "AppDelegate"); + } + } +} diff --git a/monotouch/Newtonsoft.Json.Test/Main.storyboard b/monotouch/Newtonsoft.Json.Test/Main.storyboard new file mode 100644 index 0000000..34c4bcf --- /dev/null +++ b/monotouch/Newtonsoft.Json.Test/Main.storyboard @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/monotouch/Newtonsoft.Json.Test/Newtonsoft.Json.Test.csproj b/monotouch/Newtonsoft.Json.Test/Newtonsoft.Json.Test.csproj new file mode 100644 index 0000000..2142dc5 --- /dev/null +++ b/monotouch/Newtonsoft.Json.Test/Newtonsoft.Json.Test.csproj @@ -0,0 +1,119 @@ + + + + Debug + iPhoneSimulator + {60AB6877-D50D-4633-8453-564182E479D2} + {FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + Exe + Newtonsoft.Json.Test + Newtonsoft.Json.Test + Resources + + + true + full + false + bin\iPhoneSimulator\Debug + DEBUG;ENABLE_TEST_CLOUD; + prompt + 4 + iPhone Developer + true + true + true + true + 25637 + None + x86_64 + NSUrlSessionHandler + x86 + + + pdbonly + true + bin\iPhone\Release + prompt + 4 + iPhone Developer + true + true + Entitlements.plist + SdkOnly + ARM64 + NSUrlSessionHandler + x86 + + + pdbonly + true + bin\iPhoneSimulator\Release + prompt + 4 + iPhone Developer + true + None + x86_64 + NSUrlSessionHandler + x86 + + + true + full + false + bin\iPhone\Debug + DEBUG;ENABLE_TEST_CLOUD; + prompt + 4 + iPhone Developer + true + true + true + true + true + true + Entitlements.plist + 12911 + SdkOnly + ARM64 + NSUrlSessionHandler + x86 + + + + + + + True + + + packages\Newtonsoft.Json.12.0.1\lib\netstandard2.0\Newtonsoft.Json.dll + + + + + + + + + + + + + + + + + + + + + + + + ViewController.cs + + + + + \ No newline at end of file diff --git a/monotouch/Newtonsoft.Json.Test/ViewController.cs b/monotouch/Newtonsoft.Json.Test/ViewController.cs new file mode 100644 index 0000000..7e4b7e2 --- /dev/null +++ b/monotouch/Newtonsoft.Json.Test/ViewController.cs @@ -0,0 +1,24 @@ +using System; + +using UIKit; + +namespace Newtonsoft.Json.Test { + public partial class ViewController : UIViewController { + protected ViewController (IntPtr handle) : base (handle) + { + // Note: this .ctor should not contain any initialization logic. + } + + public override void ViewDidLoad () + { + base.ViewDidLoad (); + // Perform any additional setup after loading the view, typically from a nib. + } + + public override void DidReceiveMemoryWarning () + { + base.DidReceiveMemoryWarning (); + // Release any cached data, images, etc that aren't in use. + } + } +} diff --git a/monotouch/Newtonsoft.Json.Test/ViewController.designer.cs b/monotouch/Newtonsoft.Json.Test/ViewController.designer.cs new file mode 100644 index 0000000..1b83ec3 --- /dev/null +++ b/monotouch/Newtonsoft.Json.Test/ViewController.designer.cs @@ -0,0 +1,15 @@ +// +// This file has been generated automatically by MonoDevelop to store outlets and +// actions made in the Xcode designer. If it is removed, they will be lost. +// Manual changes to this file may not be handled correctly. +// +using Foundation; + +namespace Newtonsoft.Json.Test { + [Register ("ViewController")] + partial class ViewController { + void ReleaseDesignerOutlets () + { + } + } +} diff --git a/monotouch/Newtonsoft.Json.Test/bin/iPhoneSimulator/Release/Newtonsoft.Json.Test.exe b/monotouch/Newtonsoft.Json.Test/bin/iPhoneSimulator/Release/Newtonsoft.Json.Test.exe new file mode 100644 index 0000000..1c23fa3 Binary files /dev/null and b/monotouch/Newtonsoft.Json.Test/bin/iPhoneSimulator/Release/Newtonsoft.Json.Test.exe differ diff --git a/monotouch/Newtonsoft.Json.Test/bin/iPhoneSimulator/Release/Newtonsoft.Json.dll b/monotouch/Newtonsoft.Json.Test/bin/iPhoneSimulator/Release/Newtonsoft.Json.dll new file mode 100755 index 0000000..5d693ba Binary files /dev/null and b/monotouch/Newtonsoft.Json.Test/bin/iPhoneSimulator/Release/Newtonsoft.Json.dll differ diff --git a/monotouch/Newtonsoft.Json.Test/bin/iPhoneSimulator/Release/Xamarin.iOS.dll b/monotouch/Newtonsoft.Json.Test/bin/iPhoneSimulator/Release/Xamarin.iOS.dll new file mode 100755 index 0000000..35a2a5a Binary files /dev/null and b/monotouch/Newtonsoft.Json.Test/bin/iPhoneSimulator/Release/Xamarin.iOS.dll differ diff --git a/monotouch/Newtonsoft.Json.Test/packages.config b/monotouch/Newtonsoft.Json.Test/packages.config new file mode 100644 index 0000000..dabb475 --- /dev/null +++ b/monotouch/Newtonsoft.Json.Test/packages.config @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/net_4_x/Assets.sln b/net_4_x/Assets.sln new file mode 100644 index 0000000..fc3ad3b --- /dev/null +++ b/net_4_x/Assets.sln @@ -0,0 +1,17 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Newtonsoft.Json.Test", "Newtonsoft.Json.Test\Newtonsoft.Json.Test.csproj", "{D010E94A-7678-461E-990C-F1758C795225}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x86 = Debug|x86 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {D010E94A-7678-461E-990C-F1758C795225}.Debug|x86.ActiveCfg = Debug|x86 + {D010E94A-7678-461E-990C-F1758C795225}.Debug|x86.Build.0 = Debug|x86 + {D010E94A-7678-461E-990C-F1758C795225}.Release|x86.ActiveCfg = Release|x86 + {D010E94A-7678-461E-990C-F1758C795225}.Release|x86.Build.0 = Release|x86 + EndGlobalSection +EndGlobal diff --git a/net_4_x/Newtonsoft.Json.Test/Newtonsoft.Json.Test.csproj b/net_4_x/Newtonsoft.Json.Test/Newtonsoft.Json.Test.csproj new file mode 100644 index 0000000..9a99e83 --- /dev/null +++ b/net_4_x/Newtonsoft.Json.Test/Newtonsoft.Json.Test.csproj @@ -0,0 +1,45 @@ + + + + Debug + x86 + {D010E94A-7678-461E-990C-F1758C795225} + Exe + Newtonsoft.Json.Test + Newtonsoft.Json.Test + v4.7 + + + true + full + false + bin\Debug + DEBUG; + prompt + 4 + true + x86 + + + true + bin\Release + prompt + 4 + true + x86 + + + + + packages\Newtonsoft.Json.12.0.1\lib\net45\Newtonsoft.Json.dll + + + + + + + + + + + \ No newline at end of file diff --git a/net_4_x/Newtonsoft.Json.Test/Program.cs b/net_4_x/Newtonsoft.Json.Test/Program.cs new file mode 100644 index 0000000..a3a5d81 --- /dev/null +++ b/net_4_x/Newtonsoft.Json.Test/Program.cs @@ -0,0 +1,10 @@ +using Newtonsoft.Json; + +class MainClass +{ + public static void Main (string [] args) + { + new MainClass (); + JsonConvert.DeserializeObject ("{}"); + } +} diff --git a/net_4_x/Newtonsoft.Json.Test/Properties/AssemblyInfo.cs b/net_4_x/Newtonsoft.Json.Test/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..970c29b --- /dev/null +++ b/net_4_x/Newtonsoft.Json.Test/Properties/AssemblyInfo.cs @@ -0,0 +1,26 @@ +using System.Reflection; +using System.Runtime.CompilerServices; + +// Information about this assembly is defined by the following attributes. +// Change them to the values specific to your project. + +[assembly: AssemblyTitle ("Newtonsoft.Json.Test")] +[assembly: AssemblyDescription ("")] +[assembly: AssemblyConfiguration ("")] +[assembly: AssemblyCompany ("")] +[assembly: AssemblyProduct ("")] +[assembly: AssemblyCopyright ("${AuthorCopyright}")] +[assembly: AssemblyTrademark ("")] +[assembly: AssemblyCulture ("")] + +// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}". +// The form "{Major}.{Minor}.*" will automatically update the build and revision, +// and "{Major}.{Minor}.{Build}.*" will update just the revision. + +[assembly: AssemblyVersion ("1.0.*")] + +// The following attributes are used to specify the signing key for the assembly, +// if desired. See the Mono documentation for more information about signing. + +//[assembly: AssemblyDelaySign(false)] +//[assembly: AssemblyKeyFile("")] diff --git a/net_4_x/Newtonsoft.Json.Test/bin/Release/Newtonsoft.Json.Test.exe b/net_4_x/Newtonsoft.Json.Test/bin/Release/Newtonsoft.Json.Test.exe new file mode 100644 index 0000000..cfd78c3 Binary files /dev/null and b/net_4_x/Newtonsoft.Json.Test/bin/Release/Newtonsoft.Json.Test.exe differ diff --git a/net_4_x/Newtonsoft.Json.Test/bin/Release/Newtonsoft.Json.dll b/net_4_x/Newtonsoft.Json.Test/bin/Release/Newtonsoft.Json.dll new file mode 100755 index 0000000..d0aaed9 Binary files /dev/null and b/net_4_x/Newtonsoft.Json.Test/bin/Release/Newtonsoft.Json.dll differ diff --git a/net_4_x/Newtonsoft.Json.Test/packages.config b/net_4_x/Newtonsoft.Json.Test/packages.config new file mode 100644 index 0000000..8ebaf08 --- /dev/null +++ b/net_4_x/Newtonsoft.Json.Test/packages.config @@ -0,0 +1,4 @@ + + + + \ No newline at end of file -- cgit v1.2.3