CodePaste Logo
New Snippet New Snippet Recent Snippets Recent Snippets My Snippets My Snippets Web Code Search Snippets Search
Sign inor Register
Format:
Recent snippets matching tags of VS
XML
 <!-- find Microsoft.Common.targets under C:\Windows\Microsoft.NET\Framework\ -->
<Project DefaultTargets="Build" InitialTargets="_CheckForInvalidConfigurationAndPlatform"
         xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 
    <PropertyGroup>
        <UseVSHostingProcess>false</UseVSHostingProcess>
    </PropertyGroup>
 
    <!-- ... -->
</Project>
by bnaya   October 19, 2011 @ 1:10am
Tags: IDE, VS2010, VSHost
49 Views
no comments
 
XML
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
  <CodeSnippet Format="1.0.0">
    <Header>
      <Title>Nunit Test Class</Title>
      <Shortcut>ntestc</Shortcut>
      <Description>Code snippet for a nunit test class</Description>
      <Author>Jason Rowe</Author>
      <SnippetTypes>
        <SnippetType>Expansion</SnippetType>
by Jason Rowe   December 17, 2010 @ 3:41pm
202 Views
no comments
 
XML
<?xml version="1.0" encoding="utf-8"?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
  <CodeSnippet Format="1.0.0">
    <Header>
      <SnippetTypes>
        <SnippetType>Expansion</SnippetType>
      </SnippetTypes>
      <Title>Test Method</Title>
      <Shortcut>ntestm</Shortcut>
      <Description>Code snippet for a test method</Description>
by Jason Rowe   December 17, 2010 @ 3:39pm
198 Views
no comments
 
XML
<?xml version="1.0" encoding="utf-8" ?>
<CodeSnippets  xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
  <CodeSnippet Format="1.0.0">
    <Header>
      <Title>If null throw ArgumentNullException</Title>
      <Shortcut>tan</Shortcut>
      <Description>Code snippet for method parameter null-checking</Description>
      <Author>Marc Jacobi</Author>
      <SnippetTypes>
        <SnippetType>Expansion</SnippetType>
by obiwanjacobi   November 29, 2010 @ 10:34am
201 Views
no comments
 
syntax: glob
Obj
obj
Bin
bin
*.user
*.suo
*.Cache
*.cache
*.bak
by Andy Sherwood   January 26, 2010 @ 8:48pm
1054 Views
no comments
 
Imports System
Imports EnvDTE
Imports EnvDTE80
Imports System.Diagnostics
 
Public Module Environment
 
 
#Region " CollapseAll Support "
by Mark Wise   December 28, 2009 @ 2:25pm
490 Views
no comments
 
Sub RemoveExclusiveAttributes()
    Dim originalSyntax = DTE.Find.PatternSyntax
    Dim originalWhat = DTE.Find.FindWhat
    Dim originalTarget = DTE.Find.Target
    Dim originalAction = DTE.Find.Action
 
    DTE.Find.PatternSyntax = vsFindPatternSyntax.vsFindPatternSyntaxLiteral
    DTE.Find.FindWhat = "[Exclusive]"
    DTE.Find.Target = vsFindTarget.vsFindTargetCurrentProject
    DTE.Find.Action = vsFindAction.vsFindActionFind
by Jeff Handley   October 22, 2009 @ 10:49pm
279 Views
no comments
 
brought to you by:
West Wind Techologies



If you find this site useful and use it frequently please consider making a donation to support this free service.
Donate