Category: nuget
-
Browser history 4–NuGet again
This is the part 4 of 5 of my implementing of a MVC Browser history MVC browser history – idea Browser history –2 – implementing,small bugs Browser history 3–trying to Nuget – modifications in order to can be transformed from an application to a component Browser history 4–NuGet again – finally Nuget deployment Browser history–part…
-
Clearer as Nuget package
It was not so difficult to make Clearer as NuGet package. Just analyzing MVC Sitemap package done the trick. So the package looks like: You can install from http://nuget.org/packages/Clearer or download a sample application http://clearer.codeplex.com ( What he does ? In every application there are some variables that are set by the ASP.NET application(…
-
Hydrating
My first Nuget project: Hydrating. Also a Codeplex project : http://hydrating.codeplex.com/ It can re-make an object by adding items of “property/value” It comes in 2 flavors: .NET 2.0 ( reflection ) and .NET 4 ( expression). Sample Usage: Sample usage: var Model = new HydrateGeneric<MyModel>(); Model.AddNewProperty("OneProp","bb"); Model.AddNewProperty("newData.StartDate",DateTime.Now.AddDays(1).ToString()); Model.AddNewProperty("newData.SecondProp","AB"); Model.AddNewProperty("newData.aOne.ThirdProp","XXX"); var data = Model.NewObject(); Console.WriteLine(data.newData.SecondProp); Console.WriteLine(data.newData.StartDate);…