This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Run"> | |
| <PropertyGroup> | |
| <MyMessage>MSBuild Rocks!</MyMessage> | |
| <MyMessage2>MSBuild Rocks 222222!</MyMessage2> | |
| </PropertyGroup> | |
| <ItemGroup> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| call "%VS100COMNTOOLS%vsvars32.bat" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.Drawing; | |
| using System.Windows.Forms; | |
| namespace MyTrayApp | |
| { | |
| public class SysTrayApp : Form | |
| { | |
| [STAThread] | |
| public static void Main() | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.Reflection; | |
| using FluentNHibernate; | |
| using FluentNHibernate.Cfg.Db; | |
| using NHibernate; | |
| using NHibernate.Cfg; | |
| using NHibernate.Tool.hbm2ddl; | |
| namespace NHibernateExperiments.Fluent | |
| { | |
| public class InMemoryDatabaseFluent |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Linq; | |
| using Castle.MicroKernel.Registration; | |
| using Castle.Windsor; | |
| namespace ConsoleApplication6 | |
| { | |
| class Program | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using Castle.MicroKernel.Registration; | |
| using Castle.Windsor; | |
| namespace CollectionResolverForGenericInterface | |
| { | |
| internal class Program | |
| { | |
| private static void Main(string[] args) | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.Collections.Generic; | |
| using System.IO; | |
| using OfficeOpenXml; // (EPPLus - http://epplus.codeplex.com/) | |
| namespace OfficeReports | |
| { | |
| public static class DumpToExcel | |
| { | |
| public static void Dump<T>(IEnumerable<T> data, string outputFilename) | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT * FROM sys.sysprocesses WHERE dbid = DB_ID('YourDBName') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def makebold(fn): | |
| def wrapped(s): | |
| return "<b>" + fn(s) + "</b>" | |
| return wrapped | |
| def makeitalic(fn): | |
| def wrapped(s): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0"?> | |
| <configuration> | |
| <system.net> | |
| <defaultProxy enabled="true" useDefaultCredentials="true"></defaultProxy> | |
| </system.net> | |
| </configuration> |