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
| <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
| <PropertyGroup> | |
| <RootNamespace>AutoUpdater</RootNamespace> | |
| <AssemblyName>AutoUpdater</AssemblyName> | |
| <!-- begin include --> | |
| <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir> | |
| <IsWebBootstrapper>true</IsWebBootstrapper> | |
| <Install>true</Install> | |
| <InstallFrom>Web</InstallFrom> |
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.Web.Http.Controllers; | |
| using System.Web.Http.Filters; | |
| using Raven.Client; | |
| namespace MyWebApi.Attributes | |
| { | |
| public class AggressivelyCacheAttribute : ActionFilterAttribute | |
| { | |
| public IDocumentStore DocumentStore { get; set; } |
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
| public abstract class GivenA<T> where T : class | |
| { | |
| private MoqAutoMocker<T> _autoMocker = new MoqAutoMocker<T>(); | |
| protected T Target { get; private set; } | |
| [SetUp] | |
| public void Setup() | |
| { | |
| Given(); |
NewerOlder