Skip to content

Instantly share code, notes, and snippets.

View MiYanni's full-sized avatar

Michael Yanni MiYanni

  • Microsoft
  • Seattle, WA
View GitHub Profile
@rbwestmoreland
rbwestmoreland / NuGet Package Automation Post-Build Event
Created December 11, 2011 17:00
NuGet package automation using a Visual Studio post-build event
if $(ConfigurationName) == Release "$(SolutionDir)packages\NuGet.CommandLine.1.5.21005.9019\tools\NuGet.exe" pack "$(ProjectPath)" -Properties Configuration=Release -Verbose
@JasonCozens
JasonCozens / MsBuildFilter.xml
Created January 27, 2011 13:56
This MSBuild script shows how to filter Items into two separate item lists. This could be used for filtering files for different installers etc .
<?xml version="1.0" encoding="utf-8"?>
<Project
xmlns="http://schemas.microsoft.com/developer/msbuild/2003"
ToolsVersion="4.0"
>
<ItemGroup>
<Binary Include="SrcDir/assembly01.txt" >
<Server>.</Server>
</Binary>