-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathbuild.config
20 lines (19 loc) · 1.2 KB
/
build.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<PropertyGroup>
<NuGet>.nuget\nuget.exe</NuGet>
<OutputDirectory>output</OutputDirectory>
<XUnitPath>packages\xunit.runner.msbuild.2.4.1\build\net452</XUnitPath>
<ProjectToBuild>Sitecore.FakeDb.sln</ProjectToBuild>
<FakeDbDir>src\Sitecore.FakeDb</FakeDbDir>
<FakeDbTestsDir>test\Sitecore.FakeDb.Tests</FakeDbTestsDir>
<AutoFixtureTestsDir>test\Sitecore.FakeDb.AutoFixture.Tests</AutoFixtureTestsDir>
<NSubstituteTestsDir>test\Sitecore.FakeDb.NSubstitute.Tests</NSubstituteTestsDir>
<SerializationTestsDir>test\Sitecore.FakeDb.Serialization.Tests</SerializationTestsDir>
<FakeDbTestsOutDir>$(FakeDbTestsDir)\bin\Release</FakeDbTestsOutDir>
<AutoFixtureTestsOutDir>$(AutoFixtureTestsDir)\bin\Release</AutoFixtureTestsOutDir>
<NSubstituteTestsOutDir>$(NSubstituteTestsDir)\bin\Release</NSubstituteTestsOutDir>
<SerializationTestsOutDir>$(SerializationTestsDir)\bin\Release</SerializationTestsOutDir>
<NuGetXslt>Sitecore.FakeDb.nuget.xslt</NuGetXslt>
</PropertyGroup>
</Project>