This file contains 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
<!-- This is from a Nant File with the following properties defined | |
msbuild.target = Debug | Release | |
scratch.path = Path\for\some\temporary\folder\for\build\to\go\to | |
publish.path = Path\where\you\want\the\resulting\zip\or\package\to\end\up | |
Be sure the OutDir ends with a slash (escaped in this case) otherwise msbuild complains. | |
OutputPath must NOT have a trailing slash. | |
WebUI = This is just what I have in the sample, change it to whatever you want for the web ui stuff to go to. This is where your configs and Views will get put, then the bins under that. |
This file contains 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
[Test] | |
public void Session_should_store_object_after_querying_same_type_object_that_has_never_been_stored_before() | |
{ | |
// Arrange | |
// RavenDB from NUget package: RavenDB.Embedded 2.0.2230 | |
// Raven.Clien.Embedded.dll Product Version: 2.0.0 / 08aa244 | |
var ravenStore = new EmbeddableDocumentStore() { RunInMemory = true }; | |
ravenStore.Initialize(); | |
// Act |
This file contains 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
[TestCase(0, "Date1", DateTimeFeature.Day)] | |
[TestCase(1, "Date2", DateTimeFeature.Day | DateTimeFeature.Year)] | |
public void Test_Good_Date_Descriptor(int featureIndex, string name, DateTimeFeature feature) | |
{ | |
var desc = Descriptor.Create<FakeDate>(); | |
Assert.AreEqual(name, desc.Features[featureIndex].Name); | |
Assert.AreEqual(new DateTimeProperty(feature).Features == ((DateTimeProperty)desc.Features[featureIndex]).Features); | |
} |
This file contains 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
'InputQueue' entry in 'MsmqTransportConfig' section is obsolete. | |
By default the queue name is taken from the class namespace where | |
the configuration is declared. To override it, use .DefineEndpointName() | |
with either a string parameter as queue name or Func<string> parameter | |
that returns queue name. In this instance, 'Sample.UI' is defined as queue name. |
NewerOlder