Stories recently tagged with 'Configuration'

Replacing Web.config settings with Transformations(www.leniel.net)

submitted by lenielleniel(489) 7 months, 28 days ago

Let’s say you want to point to a different connection string when you deploy your ASP.NET Web Project to your hosting provider. Until recently you’d have to modify your Web.config file manually. This is an easy procedure but you might end screwing up the file in some way. Visual Studio 2010 comes with a great new feature called Web.config Transformation that allows you to perform transformations in whatever section of your Web.config file. read more...

add a comment |category: |Views: 9

tags: another

Targeting multiple environments and machines – part 2/2(blog.tchami.com)

submitted by TchamiTchami(40) 8 months, 19 days ago

How do you as a developer work seamlessly across multiple environments machines? In this article I describe one possible solution. read more...

add a comment |category: |Views: 2

tags: another

IIS 7 – Managed pipeline mode – Global.asax redirect not working(praveenbattula.blogspot.com)

submitted by praveenbattulapraveenbattula(629) 2 years, 1 month ago

I implemented the exception handling and after logged the exception wrote line for redirecting the page to the error page. So that user will see the custom error page instead of the original exception screen. But, when I deploy the code on WS 2003 or earlier it's working without issues. But, When I deploy the code on IIS 7, it stopped working. So, This is the post for fixing that problem. Hope it will help you to understand it well. read more...

add a comment |category: |Views: 83

tags: another

How to add custom build step to a TFS Server Build ?(blog.decayingcode.com)

submitted by arch4ngelarch4ngel(585) 2 years, 11 months ago

Most of the time when you are creating a build script (TFSBuild.proj), you need to do some steps after the build. Wether it's creating an MSI for easier deployment, creating a VSI for a Visual Studio Add-in, or whatever if may be... you normally do a post build. A post build event looks like the following inside the TFSBuild.proj read more...

add a comment |category: |Views: 105

tags: another

Unit testing Internals member of a solution from another project(blog.decayingcode.com)

submitted by arch4ngelarch4ngel(585) 2 years, 11 months ago

Here is a little bit of knowledge that lots of people are not aware of. There is an Attribute that is InternalsVisibleToAttribute that allows access to a specific external project (the unit test project). read more...

add a comment |category: |Views: 11

tags: another

Problem deploying a solution package on a SharePoint 2007 farm?(blog.decayingcode.com)

submitted by arch4ngelarch4ngel(585) 2 years, 11 months ago

You have a WSP and you are trying to deploy it inside the farm and it doesn't work. You hate it. You try to look in the Event Viewer, SharePoint logs, etc. Before you event start looking around everywhere, be sure to know that when you are adding/deploying a solution package you need some specify right. read more...

add a comment |category: |Views: 5

tags: another

NHibernate Query Analyzer + ActiveRecord(leniel.net)

submitted by lenielleniel(489) 3 years ago

NHibernate Query Analyzer (NHQA) helps a lot while working in a .NET project with a relational database that makes use of NHibernate as the persistence manager. I was having a problem getting NHQA to work with a business data layer constructed with the help of ActiveRecord - I searched the Internet for a path that would led me in the right direction and after solving small errors I got NHQA working with a proper configuration file. In this post you'll find the content of the file so that you can get a sense of what must be done with the initial configuration of NHQA. read more...

add a comment |category: |Views: 47

tags: another

How to disable web.config Inheritance for Child Applications?(aspdotnetfaq.com)

submitted by spavkovspavkov(1708) 3 years, 9 months ago

Each ASP.NET Web Application has its own configuration file called web.config file. In fact every directory in ASP.NET application can have one. Settings in each web.config file apply to the directory where its placed, and all the subdirectories of that directory. This is called Configuration Inheritance and it can cause serious headaches if you are not fully aware of how it works... read more...

1 comment |category: |Views: 122

tags: another

IISAdmin - Free tool for creating multiple websites on IIS5(firstserved.net)

submitted by spavkovspavkov(1708) 3 years, 10 months ago

IISAdmin - Tool for creating multiple asp.net websites on IIS5 and winxp read more...

add a comment |category: |Views: 22

tags: another

Securing Configurations(mnour.blogspot.com)

submitted by mnourmnour(320) 3 years, 11 months ago

Have you ever wanted to provide a level of protection to your values in the configuration files? Using aspnet_regiis will help you in encrypting the configuration section(s) in the config files. The executable resides in: "<windows_root>\Microsoft.NET\Framework\<framework_version>" and It was common to be used in installing ASP.NET on IIS. However, you can use it as well in encrypting/decrypting the configuration files. read more...

add a comment |category: |Views: 0

tags: another

configuration management,sharepoint server,patching,lesson learned,sha(drewmace.blogspot.com)

submitted by drewmacedrewmace(255) 4 years ago

Lessons learned: Patching SharePoint servers and configuration management. read more...

add a comment |category: |Views: 21

tags: another

Using SingleTagSectionHandler Instead Of appSettings(vaultofthoughts.net)

submitted by mikeonmikeon(5200) 4 years, 5 months ago

As an alternative to appSettings you can use SingleTagSectionHandler to store settings in a web.config file. Learn how. read more...

4 comments |category: |Views: 419

tags: another

.NET 2.0 Tip: Strongly Typing Configuration Settings(blah.winsmarts.com)

submitted by salimsalim(780) 4 years, 10 months ago

Funny – this approach is so darned simple, I am surprised why I hardly find anyone who actually uses it. read more...

2 comments |category: |Views: 10

tags: another

Windows Forms Application Start-Up Parameters(blackwasp.co.uk)

submitted by BlackWaspBlackWasp(4024) 5 years, 4 months ago

Often it is useful to pass parameters to a Windows Forms application on start-up from a command line or shortcut. These parameters can be used to indicate a document to load or the initial configuration of the application. read more...

add a comment |category: |Views: 27

tags: another