powerrush

Stories kicked by friends of powerrush

How to protect a .NET assembly against disassembly(www.red-gate.com)

submitted by javeryjavery(5523) 1 year, 1 month ago

On April 20th, SmartAssembly Technical Support Engineer Chris Allen will demonstrate why you need to protect your .NET application, and how you can use SmartAssembly to obfuscate your code. read more...

add a comment |category: |Views: 380

tags: another

Afterthought: a post-compilation code injection framework(blogs.app.vc3.com)

submitted by kr4sterkr4ster(34) 1 year, 1 month ago

Afterthought allows developers to post-process .NET assemblies to add code that either cannot be added to the original source or is not convenient/efficient to do so. Examples include: Tweaking a compiled assembly for which you do not have the source code be must support/modify Adding instrumentation logic to an assembly for test purposes, which will not always be part of the release version So, what does Afterthought do? Quite simply, it allows you to: Create type amendments by subclassing Amendment<,> to describe what changes you want to make Add attributes to your types indicating which types to amend and what amendments to apply Amend properties by either adding new properties or modifying the logic of existing properties Amend methods by either adding new methods or modifying the logic of existing methods Amend constructors by either adding new constructors or modifying the logic of existing constructors Implement interfaces directly on a type leveraging existing properties/methods, adding new properties/methods, and allowing Afterthought to automatically implement everything else Configure your project to call Afterthought as a post-build step to apply the changes read more...

add a comment |category: |Views: 461

tags: another

Afterthought: a post-compilation code injection framework(blogs.app.vc3.com)

submitted by kr4sterkr4ster(34) 1 year, 1 month ago

Afterthought allows developers to post-process .NET assemblies to add code that either cannot be added to the original source or is not convenient/efficient to do so. Examples include: Tweaking a compiled assembly for which you do not have the source code be must support/modify Adding instrumentation logic to an assembly for test purposes, which will not always be part of the release version So, what does Afterthought do? Quite simply, it allows you to: Create type amendments by subclassing Amendment<,> to describe what changes you want to make Add attributes to your types indicating which types to amend and what amendments to apply Amend properties by either adding new properties or modifying the logic of existing properties Amend methods by either adding new methods or modifying the logic of existing methods Amend constructors by either adding new constructors or modifying the logic of existing constructors Implement interfaces directly on a type leveraging existing properties/methods, adding new properties/methods, and allowing Afterthought to automatically implement everything else Configure your project to call Afterthought as a post-build step to apply the changes read more...

add a comment |category: |Views: 461

tags: another

How to append options to CascadingDropDown after initially populated v(jamesewelch.com)

submitted by jamesewelchjamesewelch(2275) 1 year, 1 month ago

I needed to add additional dropdown options to a DropDownList web control in use by the Ajax Control Toolkit CascadingDropDown ASP.NET AJAX extender. The CascadingDropDown provided a means to get an automatic population of a set of options called by the web service. needed a way to append an “All” option to the drop down list, but I didn’t want to automatically include “All” as valid option in my Web Service. I wanted to append it on a specific form rather than as part of the data feed. read more...

add a comment |category: |Views: 8

tags: another

View PDF Documents in Silverlight and WPF(helpcentral.componentone.com)

submitted by javeryjavery(5523) 1 year, 1 month ago

Learn how you can create dynamic PDFs from your C# or VB.NET code read more...

add a comment |category: |Views: 262

tags: another

WPF Single Instance Application – Update - Arik Poznanski's Blog(blogs.microsoft.co.il)

submitted by arikparikp(1204) 1 year, 1 month ago

Back in this post I’ve presented some code that make sure you only have one instance of your application. read more...

add a comment |category: |Views: 25

tags: another

5 of the best online code editors for fans of the cloud(blog.webdistortion.com)

submitted by squiggssquiggs(585) 1 year, 1 month ago

This collection of cloud based code editors has been created with developers in mind, and perfectly showcases just how far software has come. Checkout CodeRun for .NET developers who need to run code in the browser. read more...

add a comment |category: |Views: 70

tags: another

Using GIT on top of TFS(dotnetsurfers.com)

submitted by latishlatish(470) 1 year, 1 month ago

How to use the git-tfs bridge to work with GIT on top of TFS. read more...

add a comment |category: |Views: 58

tags: another

Common Table Expressions (CTE) – Underappreciated Features of Microsof(beyondrelational.com)

submitted by jacobsebastianjacobsebastian(3639) 1 year, 1 month ago

This is part of the series of posts that I am running under the title " Under Appreciated Features of SQL Server ". The series has been inspired by Andy Warren's editorial on SQLServerCentral.com. Did you ever wonder if you could create a temporary result set and use that within a single... read more...

add a comment |category: |Views: 40

tags: another

Our proposed IE9 feature shortlist for DNK(blogs.dotnetkicks.com)

submitted by javeryjavery(5523) 1 year, 1 month ago

Now that IE9 is out and in full swing with millions of downloads worldwide, we’ve zoned in on a few of the features we discussed last time that we’d like to implement on the site in the coming weeks. read more...

add a comment |category: |Views: 168

tags: another

Dot Net Techniques(saloweblife.blogspot.com)

submitted by sal_lbsal_lb(251) 1 year, 2 months ago

Increase your dot net software development skills Active Directory Membership Provider,Software Skills, The MVP Pattern , Custom Paging GridView (Inheriting from the Base GridView Control) , LINQ to Services (LINQ to Amazon, google, bing, JSON, LDAP (Active Directory), Streams, DryadLINQ …) , Dot Net 4.0 Parallel Computing , Visual Inh......eritance In Windows Applications , Design Patterns Applicability, WCF, JSON read more...

1 comment |category: |Views: 118

tags: another

Why one .NET vendor relies on another for finding critical performance(www.red-gate.com)

submitted by javeryjavery(5523) 1 year, 2 months ago

It's not often you see one .NET product vendor recommend another's tools. Especially when it's a company such as Syncfusion, which has made the SD Times 100 list for five straight years and describes its QA process as "almost brutal." read more...

add a comment |category: |Views: 273

tags: another

Webinar: Amplify JavaScript Library with jQuery UI Dev Scott González(www.elijahmanor.com)

submitted by elijahmanorelijahmanor(1448) 1 year, 2 months ago

appendTo has recently launched a new JavaScript library called Amplify. The intend of the library is to help you solve common front-end problems and it is meant to "amplify" your current JavaScript library of choice (jQuery, dojo, mootools, etc). read more...

add a comment |category: |Views: 6

tags: another

A sscanf() Replacement for .NET(www.blackbeltcoder.com)

submitted by scwebgroupscwebgroup(332) 1 year, 2 months ago

C programmers have used the sscanf() function for many years to easily parse well-structured text. Here's source code for a .NET replacement for sscanf(). read more...

add a comment |category: |Views: 62

tags: another

JSConsole Remote Debugging and JSBin Live Preview(www.elijahmanor.com)

submitted by elijahmanorelijahmanor(1448) 1 year, 2 months ago

Remy Sharp ( @rem ) recently implemented some really awesome new features to jsconsole.com and jsbin.com that I wanted to share with you. read more...

add a comment |category: |Views: 4

tags: another

How To Debug WPF and Silverlight Binding Errors In Visual Studio(www.falconerdevelopment.com)

submitted by karl_falconerkarl_falconer(70) 1 year, 2 months ago

Learn about the Visual Studio settings that will reduce the amount of time spent debugging WPF and Silverlight binding errors. read more...

add a comment |category: |Views: 192

tags: another