forked from scriptcs/scriptcs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScriptCs.Tests.csproj
More file actions
75 lines (75 loc) · 3.38 KB
/
ScriptCs.Tests.csproj
File metadata and controls
75 lines (75 loc) · 3.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\build\ScriptCs.Common.props" />
<PropertyGroup>
<ProjectGuid>{4D6A2A55-BB17-40CB-9567-EAFF80BEFDCE}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>ScriptCs.Tests</RootNamespace>
<AssemblyName>ScriptCs.Tests</AssemblyName>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
</PropertyGroup>
<ItemGroup>
<Reference Include="Common.Logging, Version=2.1.2.0, Culture=neutral, PublicKeyToken=af08829b84f0328e, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\packages\Common.Logging.2.1.2\lib\net40\Common.Logging.dll</HintPath>
</Reference>
<Reference Include="Moq">
<HintPath>..\..\packages\Moq.4.0.10827\lib\NET40\Moq.dll</HintPath>
</Reference>
<Reference Include="Should">
<HintPath>..\..\packages\Should.1.1.12.0\lib\Should.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.ComponentModel.Composition" />
<Reference Include="System.ComponentModel.Composition.Registration" />
<Reference Include="System.Core" />
<Reference Include="System.Reflection.Context" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
<Reference Include="xunit">
<HintPath>..\..\packages\xunit.1.9.1\lib\net20\xunit.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\common\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\..\common\CommonVersionInfo.cs">
<Link>Properties\CommonVersionInfo.cs</Link>
</Compile>
<Compile Include="CleanCommandTests.cs" />
<Compile Include="CommandFactoryTests.cs" />
<Compile Include="ReplTests.cs" />
<Compile Include="VersionCommandTests.cs" />
<Compile Include="InstallCommandTests.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="RestoreCommandTests.cs" />
<Compile Include="ExecuteScriptCommandTests.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\ScriptCs.Contracts\ScriptCs.Contracts.csproj">
<Project>{6049E205-8B5F-4080-B023-70600E51FD64}</Project>
<Name>ScriptCs.Contracts</Name>
</ProjectReference>
<ProjectReference Include="..\..\src\ScriptCs.Core\ScriptCs.Core.csproj">
<Project>{E590E710-E159-48E6-A3E6-1A83D3FE732C}</Project>
<Name>ScriptCs.Core</Name>
</ProjectReference>
<ProjectReference Include="..\..\src\ScriptCs.Engine.Roslyn\ScriptCs.Engine.Roslyn.csproj">
<Project>{E79EC231-E27D-4057-91C9-2D001A3A8C3B}</Project>
<Name>ScriptCs.Engine.Roslyn</Name>
</ProjectReference>
<ProjectReference Include="..\..\src\ScriptCs\ScriptCs.csproj">
<Project>{25080671-1a80-4041-b9c7-260578ff4849}</Project>
<Name>ScriptCs</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$(SolutionDir)\.nuget\nuget.targets" />
</Project>